| 360 | } |
| 361 | |
| 362 | mluOpStatus_t MLUOP_WIN_API mluOpSetQueue(mluOpHandle_t handle, |
| 363 | cnrtQueue_t queue) { |
| 364 | PARAM_CHECK("[mluOpSetQueue]", handle != NULL); |
| 365 | |
| 366 | // note, queue could be NULL |
| 367 | handle->queue = queue; |
| 368 | |
| 369 | return MLUOP_STATUS_SUCCESS; |
| 370 | } |
| 371 | |
| 372 | mluOpStatus_t MLUOP_WIN_API mluOpGetQueue(mluOpHandle_t handle, |
| 373 | cnrtQueue_t *queue) { |
nothing calls this directly
no outgoing calls
no test coverage detected