| 380 | } |
| 381 | |
| 382 | mluOpStatus_t MLUOP_WIN_API mluOpGetDevice(mluOpHandle_t handle, |
| 383 | CNdev *device) { |
| 384 | PARAM_CHECK("[mluOpGetDevice]", handle != NULL); |
| 385 | PARAM_CHECK("[mluOpGetDevice]", device != NULL); |
| 386 | |
| 387 | *device = handle->device; |
| 388 | |
| 389 | return MLUOP_STATUS_SUCCESS; |
| 390 | } |
| 391 | |
| 392 | mluOpStatus_t MLUOP_WIN_API mluOpSetQuantizeRoundMode( |
| 393 | mluOpHandle_t handle, mluOpQuantizeRoundMode_t round_mode) { |
nothing calls this directly
no outgoing calls
no test coverage detected