UNPKG

@hoff97/tensor-js

Version:

PyTorch like deep learning inferrence library

10 lines 313 B
import { BinaryOperation } from './binaryOperation'; export class PowerOperation extends BinaryOperation { constructor(tensorConstructor, dtype, allocator) { super(tensorConstructor, dtype, allocator); } getOp(a, b) { return `pow(${a}, ${b})`; } } //# sourceMappingURL=power.js.map