docs: add quixzoom-auth-core product to AAMOS
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
import { ConversionUtils } from './tensor-conversion.js';
|
||||
import { Tensor, TypedTensor } from './tensor.js';
|
||||
interface Properties {
|
||||
/**
|
||||
* Get the number of elements in the tensor.
|
||||
*/
|
||||
readonly size: number;
|
||||
}
|
||||
export interface TypedShapeUtils<T extends Tensor.Type> {
|
||||
/**
|
||||
* Create a new tensor with the same data buffer and specified dims.
|
||||
*
|
||||
* @param dims - New dimensions. Size should match the old one.
|
||||
*/
|
||||
reshape(dims: readonly number[]): TypedTensor<T>;
|
||||
}
|
||||
/**
|
||||
* interface `TensorUtils` includes all utility members that does not use the type parameter from their signature.
|
||||
*/
|
||||
export interface TensorUtils extends Properties, ConversionUtils {
|
||||
}
|
||||
/**
|
||||
* interface `TypedShapeUtils` includes all utility members that uses the type parameter from their signature.
|
||||
*/
|
||||
export interface TypedTensorUtils<T extends Tensor.Type> extends TensorUtils, TypedShapeUtils<T> {
|
||||
}
|
||||
export {};
|
||||
//# sourceMappingURL=tensor-utils.d.ts.map
|
||||
Reference in New Issue
Block a user