UNPKG

@hoff97/tensor-js

Version:

PyTorch like deep learning inferrence library

8 lines (7 loc) 467 B
import { DTypeGpu, GPUTensorConstructor, GPUTensorI } from '../../../tensor/gpu/interface'; import { GPUMemoryAllocator } from '../../../tensor/gpu/memory'; import { UnaryOperation } from './unaryOperation'; export declare class CeilOperation<GPUTensor extends GPUTensorI> extends UnaryOperation<GPUTensor> { constructor(tensorConstructor: GPUTensorConstructor<GPUTensor>, dtype: DTypeGpu, allocator?: GPUMemoryAllocator); operation(input: string): string; }