(dataId: DataId)
| 99 | */ |
| 100 | export class KernelBackend implements TensorStorage, Backend, BackendTimer { |
| 101 | refCount(dataId: DataId): number { |
| 102 | return notYetImplemented('refCount'); |
| 103 | } |
| 104 | incRef(dataId: DataId): void { |
| 105 | return notYetImplemented('incRef'); |
| 106 | } |
nothing calls this directly
no test coverage detected