| 23 | DataType dataType = DataType::Undefined; // element data type |
| 24 | |
| 25 | TensorDesc() = default; |
| 26 | |
| 27 | TensorDesc(TensorDims dims, TensorDims paddedDims, TensorLayout layout, DataType dataType) |
| 28 | : dims(dims), paddedDims(paddedDims), layout(layout), dataType(dataType) |
nothing calls this directly
no outgoing calls
no test coverage detected