File tree Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ A short example, illustrating it use:
11
11
``` python
12
12
import tomopy
13
13
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
15
15
```
Original file line number Diff line number Diff line change @@ -34,14 +34,19 @@ test:
34
34
- mkl
35
35
36
36
about :
37
- home : http://github.com/IntelPython/mkl_fft
37
+ home : http://github.com/IntelPython/mkl-service
38
38
license : BSD 3-Clause
39
39
license_file : LICENSE.txt
40
40
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.
45
50
46
51
extra :
47
52
recipe-maintainers :
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ static void _preload_threading_layer() {
54
54
*
55
55
* if MKL_THREADING_LAYER is empty
56
56
* 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
58
58
* otherwise check if other Open MP is loaded by checking get_omp_num_threads symbol
59
59
* if not loaded:
60
60
* assume INTEL, and force loading of IOMP5
@@ -73,7 +73,7 @@ static void _preload_threading_layer() {
73
73
const char * mtlayer = getenv ("MKL_THREADING_LAYER" );
74
74
void * omp = dlsym (RTLD_DEFAULT , "omp_get_num_threads" );
75
75
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 */
77
77
Dl_info omp_info ;
78
78
79
79
if (verbose && (verbose [0 ] == 0 || atoi (verbose ) == 0 ))
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def setup_package():
82
82
maintainer_email = "[email protected] " ,
83
83
description = "MKL Support Functions" ,
84
84
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
86
86
subdivided into the following groups according to their purpose:
87
87
Version Information
88
88
Threading Control
You can’t perform that action at this time.
0 commit comments