Skip to content

Commit 9e63500

Browse files
authored
Merge pull request #88 from IntelPython/backport-gh-87
Backport gh-87
2 parents ae86d8f + 1acfc6b commit 9e63500

File tree

5 files changed

+23
-19
lines changed

5 files changed

+23
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
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

7+
## [2.5.2] (07/01/2025)
8+
9+
### Fixed
10+
* Updated `meta.yaml` with proper license description to pass the validation rules [gh-87](github.com/IntelPython/mkl-service/pull/87)
11+
712
## [2.5.1] (06/27/2025)
813

914
### Fixed
@@ -42,7 +47,7 @@ Fixed issue [#14](https://github.com/IntelPython/mkl-service/issues/14).
4247

4348
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)
4449

45-
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.
50+
Also expanded support `isa` keyword argument values in `mkl.enable_instructions(isa=isa)` function per recent [Intel® oneAPI Math Kernel Library (oneMKL)](https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-linux/2025-2/instruction-set-specific-dispatch-on-intel-archs.html) support.
4651

4752
## [2.3.0]
4853

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `mkl-service` - Python package for run-time control of Intel® OneAPI Math Kernel Library (OneMKL).
1+
# `mkl-service` - Python package for run-time control of Intel® oneAPI Math Kernel Library (oneMKL).
22
[![Conda package](https://github.com/IntelPython/mkl-service/actions/workflows/conda-package.yml/badge.svg)](https://github.com/IntelPython/mkl-service/actions/workflows/conda-package.yml)
33
[![Build mkl-service with clang](https://github.com/IntelPython/mkl-service/actions/workflows/build-with-clang.yml/badge.svg)](https://github.com/IntelPython/mkl-service/actions/workflows/build-with-clang.yml)
44
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/IntelPython/mkl-service/badge)](https://securityscorecards.dev/viewer/?uri=github.com/IntelPython/mkl-service)
@@ -12,7 +12,7 @@ To install PyPI package, use `python -m pip install mkl-service`.
1212

1313
---
1414

15-
Intel® OneMKL support functions are subdivided into the following groups according to their purpose:
15+
Intel® oneAPI Math Kernel Library (oneMKL) supports functions are subdivided into the following groups according to their purpose:
1616
- Version Information
1717
- Threading Control
1818
- Timing
@@ -24,8 +24,8 @@ A short example, illustrating its use:
2424

2525
```python
2626
>>> import mkl
27-
>>> mkl.domain_set_num_threads(1, domain="fft") # OneMKL FFT functions to run sequentially
27+
>>> mkl.domain_set_num_threads(1, domain="fft") # oneMKL FFT functions to run sequentially
2828
# 'success'
2929
```
3030

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).
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-2/support-functions.html).

conda-recipe/meta.yaml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "2.5.1" %}
1+
{% set version = "2.5.2" %}
22
{% set buildnumber = 0 %}
33

44
package:
@@ -44,17 +44,16 @@ about:
4444
home: http://github.com/IntelPython/mkl-service
4545
license: BSD-3-Clause
4646
license_file: LICENSE.txt
47-
license_family: BSD
48-
description:
49-
Intel(R) OneAPI Math Kernel Library (OneMKL) support functions are
50-
subdivided into the following groups according to their purpose, such as
51-
Version Information
52-
Threading Control
53-
Timing
54-
Memory Management
55-
Conditional Numerical Reproducibility Control
56-
Miscellaneous
57-
summary: Python hooks for Intel(R) OneMKL runtime control settings.
47+
summary: Python hooks for Intel® oneAPI Math Kernel Library (oneMKL) runtime control settings
48+
description: |
49+
<strong>LEGAL NOTICE: Use of this software package is subject to the
50+
software license agreement (as set forth above, in the license section of
51+
the installed Conda package and/or the README file) and all notices,
52+
disclaimers or license terms for third party or open source software
53+
included in or with the software.</strong>
54+
<br/><br/>
55+
EULA: <a href="https://opensource.org/licenses/BSD-3-Clause" target="_blank">BSD-3-Clause</a>
56+
<br/><br/>
5857
5958
extra:
6059
recipe-maintainers:

mkl/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.5.1"
1+
__version__ = "2.5.2"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ classifiers = [
5151
"Operating System :: Unix"
5252
]
5353
dependencies = []
54-
description = "Python hooks for Intel® OneAPI Math Kernel Library (OneMKL) runtime control settings"
54+
description = "Python hooks for Intel® oneAPI Math Kernel Library (oneMKL) runtime control settings"
5555
dynamic = ["version"]
5656
keywords = ["MKL"]
5757
license = "BSD-3-Clause"

0 commit comments

Comments
 (0)