import { DTypeGpu, GPUTensorI } from '../../tensor/gpu/interface'; import { Operation } from './operation'; interface OpInfo { operation?: Op; numCalls: number; infoString: string; } export declare class Dispatcher> { private getOp; private minCallsToCompile; private opDict; constructor(getOp: (dtype: DTypeGpu) => Op, minCallsToCompile?: number); getDefault(dtype: DTypeGpu): OpInfo; calc(input: Input, dtype: DTypeGpu): GPUTensor; } export {};