| 728 | } |
| 729 | |
| 730 | mluOpStatus_t MLUOP_WIN_API mluOpSetTensorDescriptorPointerMode( |
| 731 | mluOpTensorDescriptor_t desc, mluOpPointerMode_t pointer_mode) { |
| 732 | PARAM_CHECK("[mluOpSetTensorDescriptorPointerMode]", desc != NULL); |
| 733 | return desc->setTensorDescriptorPointerMode(pointer_mode); |
| 734 | } |
| 735 | |
| 736 | mluOpStatus_t MLUOP_WIN_API mluOpGetTensorDescriptorEx( |
| 737 | mluOpTensorDescriptor_t desc, mluOpTensorLayout_t *layout, |
nothing calls this directly
no test coverage detected