()
| 677 | // ------------------------------------------------------------ |
| 678 | |
| 679 | memory() { |
| 680 | // Due to automatic garbage collection, the numbers are unreliable. |
| 681 | // TODO(kreeger): Since there is finalization in C, count the true |
| 682 | // number of undisposed tensors. |
| 683 | return {unreliable: true}; |
| 684 | } |
| 685 | |
| 686 | async time(f: () => void): Promise<BackendTimingInfo> { |
| 687 | const start = process.hrtime(); |
nothing calls this directly
no outgoing calls
no test coverage detected