| 354 | PyDoc_STRVAR(SetVMLNumThreads__doc__, |
| 355 | "Suggests a maximum number of threads to be used in VML operations.\n"); |
| 356 | static PyObject* |
| 357 | PySet_vml_num_threads(PyObject *self, PyObject *args) { |
| 358 | int max_num_threads; |
| 359 | if (!PyArg_ParseTuple(args, "i", &max_num_threads)) |
| 360 | return NULL; |
| 361 | mkl_domain_set_num_threads(max_num_threads, MKL_DOMAIN_VML); |
| 362 | Py_RETURN_NONE; |
| 363 | } |
| 364 | |
| 365 | #endif |
| 366 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…