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
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)
44
49
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.
[](https://github.com/IntelPython/mkl-service/actions/workflows/build-with-clang.yml)
@@ -12,7 +12,7 @@ To install PyPI package, use `python -m pip install mkl-service`.
12
12
13
13
---
14
14
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:
16
16
- Version Information
17
17
- Threading Control
18
18
- Timing
@@ -24,8 +24,8 @@ A short example, illustrating its use:
24
24
25
25
```python
26
26
>>>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
28
28
# 'success'
29
29
```
30
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).
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).
0 commit comments