| 29 | }; |
| 30 | |
| 31 | inline Tensor Empty(const Shape& shape, DLDataType dtype, DLDevice device) { |
| 32 | return Tensor::FromNDAlloc(CPUNDAlloc(), shape, dtype, device); |
| 33 | } |
| 34 | |
| 35 | inline Tensor EmptyStrided(const Shape& shape, const Shape& strides, DLDataType dtype, |
| 36 | DLDevice device) { |
no test coverage detected