File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 43
43
home : http://github.com/IntelPython/mkl_fft
44
44
license : BSD-3-Clause
45
45
license_file : LICENSE.txt
46
- summary : NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library
46
+ summary : NumPy-based implementation of Fast Fourier Transform using Intel® oneAPI Math Kernel Library (OneMKL)
Original file line number Diff line number Diff line change 43
43
home : http://github.com/IntelPython/mkl_fft
44
44
license : BSD-3-Clause
45
45
license_file : LICENSE.txt
46
- summary : NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library
46
+ summary : NumPy-based implementation of Fast Fourier Transform using Intel® oneAPI Math Kernel Library (OneMKL)
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
2
1
# Copyright (c) 2017-2025, Intel Corporation
3
2
#
4
3
# Redistribution and use in source and binary forms, with or without
29
28
from os .path import join
30
29
31
30
import Cython .Build
32
- import numpy as np
31
+ import numpy
33
32
from setuptools import Extension , setup
34
33
35
34
sys .path .insert (0 , os .path .dirname (__file__ )) # Ensures local imports work
@@ -72,7 +71,7 @@ def extensions():
72
71
join ("mkl_fft" , "src" , "mklfft.h" ),
73
72
join ("mkl_fft" , "src" , "multi_iter.h" ),
74
73
],
75
- include_dirs = [join ("mkl_fft" , "src" ), np .get_include ()]
74
+ include_dirs = [join ("mkl_fft" , "src" ), numpy .get_include ()]
76
75
+ mkl_include_dirs ,
77
76
libraries = mkl_libraries ,
78
77
library_dirs = mkl_library_dirs ,
You can’t perform that action at this time.
0 commit comments