Skip to content

Commit 9f23c92

Browse files
Added changes.rst, expanded README
1 parent 4f0f179 commit 9f23c92

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
=====================
2+
mkl-service changelog
3+
=====================
4+
5+
6+
1.0.0
7+
=====
8+
9+
Initial release of `mkl-service` package.

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
# mkl-service
22

33
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
15+
```

0 commit comments

Comments
 (0)