| 332 | PyDoc_STRVAR(GetVMLVersion__doc__, |
| 333 | "Get the VML/MKL library version.\n"); |
| 334 | static PyObject* |
| 335 | PyGet_vml_version(PyObject *self, PyObject *args) { |
| 336 | int len=198; |
| 337 | char buf[198]; |
| 338 | mkl_get_version_string(buf, len); |
| 339 | return Py_BuildValue("s", buf); |
| 340 | } |
| 341 | |
| 342 | PyDoc_STRVAR(SetVMLAccuracy__doc__, |
| 343 | "Set accuracy mode for VML functions.\n"); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…