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
All notable changes to this project will be documented in this file.
3
3
4
-
[dev] (MM/DD/YY)
5
-
================
4
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
Migrated from `setup.py` to `pyproject.toml`
7
+
## [dev] (MM/DD/YY)
8
8
9
-
Added support for python 3.13
9
+
### Added
10
+
* Added support for python 3.13 [gh-72](github.com/IntelPython/mkl-service/pull/72)
10
11
11
-
2.3.0
12
-
=====
12
+
### Changed
13
+
* Migrated from `setup.py` to `pyproject.toml`[gh-66](github.com/IntelPython/mkl-service/pull/66)
14
+
15
+
16
+
## [2.3.0]
13
17
14
18
Fixed CI to actually execute tests. Populated CBWR constants to match MKL headers.
15
19
16
20
Added tests checking that `cbwr_set` and `cbwr_get` round-trip.
17
21
18
-
2.2.0
19
-
=====
22
+
## [2.2.0]
20
23
21
24
Closed issues #8, #7 and #5.
22
25
23
26
Extended `mkl.cbwr_set` to recognize `'avx512_e1'`, `'avx512_mic_e1'`, as as strict conditional numerical reproducibility, supported via `'avx2,strict'`, `'avx512,strict'` (see [issue/8](http://github.com/IntelPython/mkl-service/issues/8)).
24
27
25
28
Extended `mkl.cbwrt_get()` to mean `mkl.cbwr('all')`.
26
29
27
-
2.1.0
28
-
=====
30
+
## [2.1.0]
29
31
30
32
Change in setup script to not use `numpy.distutils` thus removing numpy as build-time dependency.
31
33
32
34
Change in conda-recipe to allow conda build to build the recipe, but ignoring run export on mkl-service coming from mkl-devel metadata.
33
35
34
-
2.0.2
35
-
=====
36
+
## [2.0.2]
36
37
37
38
Correction to `setup.py` to not require Cython at the installation time.
38
39
39
-
2.0.1
40
-
=====
40
+
## [2.0.1]
41
41
42
42
Re-release, with some changes necessary for public CI builds to work.
43
43
44
-
2.0.0
45
-
=====
44
+
## [2.0.0]
46
45
47
46
Work-around for VS 9.0 not having `inline` keyword, allowing the package to build on Windows for Python 2.7
48
47
49
-
2.0.0
50
-
=====
48
+
## [2.0.0]
51
49
52
50
Rerelease of `mkl-service` package with version bumped to 2.0.0 to avoid version clash with `mkl-service` package from Anaconda.
53
51
@@ -57,7 +55,6 @@ Loading the package with `import mkl` initializes Intel(R) MKL library to use LP
57
55
58
56
The choice of threading layer can be controlled with environment variable `MKL_THREADING_LAYER`. However the unset variable is interpreted differently that in Intel(R) MKL itself. If `mkl-service` detects that Gnu OpenMP has been loaded in Python space, the threading layer of Intle(R) MKL will be set to Gnu OpenMP, instead of Intel(R) OpenMP.
0 commit comments