@tensorflow/tfjs-core
Version:
Hardware-accelerated JavaScript library for machine intelligence
12 lines (11 loc) • 351 B
TypeScript
import { GPGPUProgram } from './gpgpu_math';
export declare const COMPLEX_MULTIPLY: {
REAL: string;
IMAG: string;
};
export declare class BinaryOpComplexProgram implements GPGPUProgram {
variableNames: string[];
userCode: string;
outputShape: number[];
constructor(op: string, aShape: number[], bShape: number[]);
}