Skip to content

Commit edcbdb6

Browse files
authored
update README.md file (#76)
* update README.md file * update changelog
1 parent 8da45d8 commit edcbdb6

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,43 @@
11
# changelog
22
All notable changes to this project will be documented in this file.
33

4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [2.5.0] (05/DD/2025)
88

99
### Added
1010
* Added support for python 3.13 [gh-72](github.com/IntelPython/mkl-service/pull/72)
11+
* Added support in virtual environment out of the box [gh-79](github.com/IntelPython/mkl-service/pull/79)
1112

1213
### Changed
1314
* Migrated from `setup.py` to `pyproject.toml` [gh-66](github.com/IntelPython/mkl-service/pull/66)
1415

16+
## [2.4.2] (10/12/2024)
17+
18+
Tests checking library version moved to the end of the test suite, as after it is run, the state of the library is finalized, and tests that modify that state may fail.
19+
20+
Updated installation instructions.
21+
22+
## [2.4.1]
23+
24+
Transition from `nose` to `unittest` and then to `pytest` to enable support for Python 3.12.
25+
26+
Added Github Actions CI.
27+
28+
Removed `six` as a dependency.
29+
30+
## [2.4.0.post1]
31+
32+
Update description for PyPI package installation
33+
34+
## [2.4.0]
35+
36+
Fixed issue [#14](https://github.com/IntelPython/mkl-service/issues/14).
37+
38+
Added [`mkl.set_num_stripes`](https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/threading-control/mkl-set-num-stripes.html) and [`mkl.get_num_stripes`](https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/threading-control/mkl-get-num-stripes.html)
39+
40+
Also expanded support `isa` keyword argument values in `mkl.enable_instructions(isa=isa)` function per recent [Intel(R) oneMKL](https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/miscellaneous/mkl-enable-instructions.html) support.
1541

1642
## [2.3.0]
1743

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ Intel® OneMKL support functions are subdivided into the following groups accord
2323
A short example, illustrating its use:
2424

2525
```python
26-
import tomopy
27-
import mkl
28-
mkl.domain_set_num_threads(1, domain='fft') # Intel(R) MKL FFT functions to run sequentially
26+
>>> import mkl
27+
>>> mkl.domain_set_num_threads(1, domain="fft") # OneMKL FFT functions to run sequentially
28+
# 'success'
2929
```
30+
31+
For more information about the usage of support functions see [Developer Reference for Intel® oneAPI Math Kernel Library for C](https://www.intel.com/content/www/us/en/docs/onemkl/developer-reference-c/2025-1/support-functions.html).

0 commit comments

Comments
 (0)