(result: T)
| 241 | * @doc {heading: 'Performance', subheading: 'Memory'} |
| 242 | */ |
| 243 | export function keep<T extends Tensor>(result: T): T { |
| 244 | return ENGINE.keep(result); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Executes `f()` and returns a promise that resolves with timing |
no test coverage detected
searching dependent graphs…