| 805 | } |
| 806 | |
| 807 | mluOpStatus_t MLUOP_WIN_API mluOpGetTensorDescriptorPointerMode( |
| 808 | mluOpTensorDescriptor_t desc, mluOpPointerMode_t *pointer_mode) { |
| 809 | PARAM_CHECK("[mluOpGetTensorDescriptorPointerMode]", desc != NULL); |
| 810 | PARAM_CHECK("[mluOpGetTensorDescriptorPointerMode]", pointer_mode != NULL); |
| 811 | |
| 812 | SET_PARAM_FOR_POINTER(pointer_mode, desc->getPointerMode()); |
| 813 | return MLUOP_STATUS_SUCCESS; |
| 814 | } |
| 815 | |
| 816 | mluOpStatus_t MLUOP_WIN_API |
| 817 | mluOpDestroyTensorDescriptor(mluOpTensorDescriptor_t desc) { |
nothing calls this directly
no test coverage detected