| 410 | } |
| 411 | |
| 412 | mluOpStatus_t MLUOP_WIN_API mluOpGetQuantizeRoundMode( |
| 413 | mluOpHandle_t handle, mluOpQuantizeRoundMode_t *round_mode) { |
| 414 | PARAM_CHECK("[mluOpGetQuantizeRoundMode]", handle != NULL); |
| 415 | PARAM_CHECK("[mluOpGetQuantizeRoundMode]", round_mode != NULL); |
| 416 | |
| 417 | *round_mode = handle->round_mode; |
| 418 | |
| 419 | return MLUOP_STATUS_SUCCESS; |
| 420 | } |
| 421 | |
| 422 | mluOpStatus_t MLUOP_WIN_API mluOpGetReservedMemSize(uint64_t *mem_size) { |
| 423 | PARAM_CHECK("[mluOpGetReservedMemSize]", mem_size != NULL); |
nothing calls this directly
no outgoing calls
no test coverage detected