| 701 | } |
| 702 | |
| 703 | mluOpStatus_t MLUOP_WIN_API |
| 704 | mluOpSetTensorDescriptorPosition(mluOpTensorDescriptor_t desc, int position) { |
| 705 | PARAM_CHECK("[mluOpSetTensorDescriptorPosition]", desc != NULL); |
| 706 | |
| 707 | desc->position = position; |
| 708 | return MLUOP_STATUS_SUCCESS; |
| 709 | } |
| 710 | |
| 711 | mluOpStatus_t MLUOP_WIN_API mluOpSetTensorDescriptorPositionAndScale( |
| 712 | mluOpTensorDescriptor_t desc, int position, float scale) { |
nothing calls this directly
no outgoing calls
no test coverage detected