Skip to content

Commit 6f7c0be

Browse files
fixed short and long description fields in meta.yaml, fixed registered sign used with Intel, i.e. Intel(R)
1 parent e620410 commit 6f7c0be

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ A short example, illustrating it use:
1111
```python
1212
import tomopy
1313
import mkl
14-
mkl.domain_set_num_threads(1, domain='fft') # Intel (R) MKL FFT functions to run sequentially
14+
mkl.domain_set_num_threads(1, domain='fft') # Intel(R) MKL FFT functions to run sequentially
1515
```

conda-recipe/meta.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,19 @@ test:
3434
- mkl
3535

3636
about:
37-
home: http://github.com/IntelPython/mkl_fft
37+
home: http://github.com/IntelPython/mkl-service
3838
license: BSD 3-Clause
3939
license_file: LICENSE.txt
4040
description:
41-
NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library.
42-
Supports in-place and out-of-place, 1D and ND complex FFT on arrays of single and double precision
43-
with arbitrary memory layout, so long as array strides are multiples of its itemsize.
44-
summary: NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library.
41+
Intel(R) Math Kernel Library (Intel(R) MKL) support functions are
42+
subdivided into the following groups according to their purpose:
43+
Version Information
44+
Threading Control
45+
Timing
46+
Memory Management
47+
Conditional Numerical Reproducibility Control
48+
Miscellaneous
49+
summary: Python hooks for Intel(R) Math Kernel Library runtime control settings.
4550

4651
extra:
4752
recipe-maintainers:

mkl/_mklinitmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static void _preload_threading_layer() {
5454
*
5555
* if MKL_THREADING_LAYER is empty
5656
* if kmp_calloc (or a suitable symbol identified by Terry) is loaded,
57-
* we are using Intel (R) OpenMP, i.e. reinterpret as implicit value of INTEL
57+
* we are using Intel(R) OpenMP, i.e. reinterpret as implicit value of INTEL
5858
* otherwise check if other Open MP is loaded by checking get_omp_num_threads symbol
5959
* if not loaded:
6060
* assume INTEL, and force loading of IOMP5
@@ -73,7 +73,7 @@ static void _preload_threading_layer() {
7373
const char *mtlayer = getenv("MKL_THREADING_LAYER");
7474
void *omp = dlsym(RTLD_DEFAULT, "omp_get_num_threads");
7575
const char *omp_name = "(unidentified)";
76-
const char *iomp = NULL; /* non-zero indicates Intel OpenMP is loaded */
76+
const char *iomp = NULL; /* non-zero indicates Intel(R) OpenMP is loaded */
7777
Dl_info omp_info;
7878

7979
if(verbose && (verbose[0] == 0 || atoi(verbose) == 0))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def setup_package():
8282
maintainer_email="[email protected]",
8383
description="MKL Support Functions",
8484
long_description="""
85-
Intel (R) Math Kernel Library (Intel (R) MKL) support functions are
85+
Intel(R) Math Kernel Library (Intel(R) MKL) support functions are
8686
subdivided into the following groups according to their purpose:
8787
Version Information
8888
Threading Control

0 commit comments

Comments
 (0)