(a: Tensor, backend: KernelBackend)
| 903 | // refCount on the backend for the dataId. It can potentially be replaced with |
| 904 | // Identity op indead of calling backend directly. |
| 905 | incRef(a: Tensor, backend: KernelBackend): void { |
| 906 | this.trackTensor(a, backend); |
| 907 | this.backend.incRef(a.dataId); |
| 908 | } |
| 909 | |
| 910 | removeDataId(dataId: DataId, backend: KernelBackend) { |
| 911 | if (this.state.tensorInfo.has(dataId) && |
no test coverage detected