(dataId: DataId)
| 32 | export interface TensorStorage { |
| 33 | read(dataId: DataId): Promise<BackendValues>; |
| 34 | readSync(dataId: DataId): BackendValues; |
| 35 | disposeData(dataId: DataId, force?: boolean): boolean; |
| 36 | write(values: BackendValues, shape: number[], dtype: DataType): DataId; |
| 37 | move( |
nothing calls this directly
no outgoing calls
no test coverage detected