()
| 214 | } |
| 215 | |
| 216 | override memory(): WebGPUMemoryInfo { |
| 217 | return { |
| 218 | numBytesInGPU: this.bufferManager.numBytesUsed, |
| 219 | numBytesAllocatedInGPU: this.bufferManager.numBytesAllocated, |
| 220 | unreliable: false |
| 221 | } as WebGPUMemoryInfo; |
| 222 | } |
| 223 | |
| 224 | private releaseResource(dataId: DataId) { |
| 225 | const tensorData = this.tensorMap.get(dataId); |
nothing calls this directly
no outgoing calls
no test coverage detected