| 769 | } |
| 770 | |
| 771 | mluOpStatus_t MLUOP_WIN_API |
| 772 | mluOpGetTensorDescriptorPosition(mluOpTensorDescriptor_t desc, int *position) { |
| 773 | PARAM_CHECK("[mluOpGetTensorDescriptorPosition]", desc != NULL); |
| 774 | PARAM_CHECK("[mluOpGetTensorDescriptorPosition]", position != NULL); |
| 775 | |
| 776 | *position = desc->position; |
| 777 | return MLUOP_STATUS_SUCCESS; |
| 778 | } |
| 779 | |
| 780 | mluOpStatus_t MLUOP_WIN_API mluOpGetTensorDescriptorPositionAndScale( |
| 781 | mluOpTensorDescriptor_t desc, int *position, float *scale) { |
nothing calls this directly
no outgoing calls
no test coverage detected