(
dataId: DataId, values: backend_util.BackendValues, shape: number[],
dtype: DataType, refCount: number)
| 267 | } |
| 268 | |
| 269 | move( |
| 270 | dataId: DataId, values: backend_util.BackendValues, shape: number[], |
| 271 | dtype: DataType, refCount: number): void { |
| 272 | this.tensorMap.set( |
| 273 | dataId, {shape, dtype: getTFDType(dtype), values, id: -1, refCount}); |
| 274 | } |
| 275 | |
| 276 | write(values: backend_util.BackendValues, shape: number[], dtype: DataType): |
| 277 | DataId { |
no test coverage detected