MCPcopy Create free account
hub / github.com/pydata/numexpr / PyGet_vml_version

Function PyGet_vml_version

numexpr3/module.cpp:334–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332PyDoc_STRVAR(GetVMLVersion__doc__,
333"Get the VML/MKL library version.\n");
334static PyObject*
335PyGet_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
342PyDoc_STRVAR(SetVMLAccuracy__doc__,
343"Set accuracy mode for VML functions.\n");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…