You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python hooks for Intel(R) Math Kernel Library runtime control settings.
4
+
5
+
See the [blog](https://software.intel.com/en-us/blogs/2018/10/18/mkl-service-package-controlling-mkl-behavior-through-python-interfaces) announcing the release.
6
+
7
+
To install the package, use `conda install -c intel mkl-service`.
8
+
9
+
A short example, illustrating it use:
10
+
11
+
```python
12
+
import tomopy
13
+
import mkl
14
+
mkl.domain_set_num_threads(1, domain='fft') # Intel (R) MKL FFT functions to run sequentially
0 commit comments