@hoff97/tensor-js
Version:
PyTorch like deep learning inferrence library
8 lines (7 loc) • 314 B
TypeScript
import { GPUTensorI } from '../../../tensor/gpu/interface';
import { PoolOperation } from './pool';
export declare class ReduceLogSumOperation<GPUTensor extends GPUTensorI> extends PoolOperation<GPUTensor> {
update(a: string, b: string): string;
post(res: string): string;
init(res: string): string;
}