Increase refCount of a `TensorData`.
(dataId: DataId)
| 251 | |
| 252 | /** Increase refCount of a `TensorData`. */ |
| 253 | override incRef(dataId: DataId): void { |
| 254 | const tensorData = this.tensorMap.get(dataId); |
| 255 | tensorData.refCount++; |
| 256 | } |
| 257 | |
| 258 | /** Decrease refCount of a `TensorData`. */ |
| 259 | decRef(dataId: DataId): void { |