| 893 | } |
| 894 | |
| 895 | mluOpStatus_t MLUOP_WIN_API mluOpGetTensorSetDescriptor( |
| 896 | mluOpTensorSetDescriptor_t tensorSet, int *tensorSetDimNb, int *dimSize) { |
| 897 | *tensorSetDimNb = tensorSet->dim_num; |
| 898 | for (int i = 0; i < tensorSet->dim_num; i++) { |
| 899 | dimSize[i] = tensorSet->dim_set[i]; |
| 900 | } |
| 901 | return MLUOP_STATUS_SUCCESS; |
| 902 | } |
| 903 | |
| 904 | mluOpStatus_t MLUOP_WIN_API |
| 905 | mluOpDestroyTensorSetDescriptor(mluOpTensorSetDescriptor_t tensorSet) { |
nothing calls this directly
no outgoing calls
no test coverage detected