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:
+31
@@ -0,0 +1,31 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
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> {}
|
||||
Reference in New Issue
Block a user