| 749 | } |
| 750 | |
| 751 | mluOpStatus_t MLUOP_WIN_API mluOpGetTensorDescriptor( |
| 752 | const mluOpTensorDescriptor_t desc, mluOpTensorLayout_t *layout, |
| 753 | mluOpDataType_t *dtype, int *dimNb, int *dimSize) { |
| 754 | PARAM_CHECK("[mluOpGetTensorDescriptor]", desc != NULL); |
| 755 | return desc->getTensorDescriptor(layout, dtype, dimNb, dimSize); |
| 756 | } |
| 757 | |
| 758 | mluOpStatus_t MLUOP_WIN_API mluOpGetTensorDescriptor_v2( |
| 759 | const mluOpTensorDescriptor_t desc, mluOpTensorLayout_t *layout, |
nothing calls this directly
no test coverage detected