| 34 | } |
| 35 | |
| 36 | CreateTensor::CreateTensor( |
| 37 | Kind kind, CompNode device, DType dtype, ValueShape shape, Format format) |
| 38 | : m_kind(kind), |
| 39 | m_device(device), |
| 40 | m_dtype(dtype), |
| 41 | m_shape(shape), |
| 42 | m_format(format) {} |
| 43 | |
| 44 | CreateTensor::CreateTensor(Kind kind, CompNode device, TensorLayout layout) |
| 45 | : m_kind(kind), |
nothing calls this directly
no test coverage detected