File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 4343 home : http://github.com/IntelPython/mkl_fft
4444 license : BSD-3-Clause
4545 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 4343 home : http://github.com/IntelPython/mkl_fft
4444 license : BSD-3-Clause
4545 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
21# Copyright (c) 2017-2025, Intel Corporation
32#
43# Redistribution and use in source and binary forms, with or without
2928from os .path import join
3029
3130import Cython .Build
32- import numpy as np
31+ import numpy
3332from setuptools import Extension , setup
3433
3534sys .path .insert (0 , os .path .dirname (__file__ )) # Ensures local imports work
@@ -72,7 +71,7 @@ def extensions():
7271 join ("mkl_fft" , "src" , "mklfft.h" ),
7372 join ("mkl_fft" , "src" , "multi_iter.h" ),
7473 ],
75- include_dirs = [join ("mkl_fft" , "src" ), np .get_include ()]
74+ include_dirs = [join ("mkl_fft" , "src" ), numpy .get_include ()]
7675 + mkl_include_dirs ,
7776 libraries = mkl_libraries ,
7877 library_dirs = mkl_library_dirs ,
You can’t perform that action at this time.
0 commit comments