UNPKG

318 BTypeScriptView Raw
1export declare const OP_SCOPE_SUFFIX = "__op";
2/**
3 * Used for wrapping functions that perform math operations on
4 * Tensors. The function will be wrapped in a named scope that cleans all
5 * memory usage after the function is done.
6 */
7export declare function op<T extends Function>(f: {
8 [name: string]: T;
9}): T;