issues Search Results · repo:IntelPython/mkl_fft language:Python
Filter by
63 results
(112 ms)63 results
inIntelPython/mkl_fft (press backspace or delete to remove)The following example works with NumPy but not with mkl_fft.
import numpy
x = numpy.random.random((30, 20, 10))
numpy.fft.fftn(x, s=(10, 20, 10), axes=(0, 1, 2)).shape
# (10, 20, 10)
import mkl_fft, ...
vtavana
- Opened 17 days ago
- #135
I m using an orin(aarch64) for ai researching. I cannot install this module on it.
So, will support aarch64 in the future? Hoping for anwser.
elijahxb
- Opened 18 days ago
- #132
On Windows 10, python 3.12
After installing mkl_fft (and mkl_random and mkl_umath), the version of numpy that s installed as a dependency
is 1.26.4, and when I try to import it, I get an error. It seems ...
liam-clink
- 2
- Opened on Dec 17, 2024
- #126
Following example returns an error
import mkl_fft.interfaces as mfi, numpy
b=numpy.arange(24.).reshape(2, 3, 4)
mfi.numpy_fft.rfft2(b, axes=(1, 2), norm= forward ).shape
# ...
# IndexError: list index ...
vtavana
- 1
- Opened on Aug 13, 2024
- #119
For the following case, when input arrays data type is float, correct result is returned while for integer data type,
result is incorrect.
import numpy, mkl_fft
from numpy.testing import assert_allclose ...
vtavana
- Opened on Aug 6, 2024
- #116
For the following case, the output array shape from mkl_fft.irfftn and NumPy is different.
import numpy, mkl_fft
from numpy.testing import assert_allclose
a = numpy.array([[[5, 7, 6, 5],
[4, 6, 4, ...
vtavana
- Opened on Aug 6, 2024
- #115
Hello I installed oneAPI BaseToolKit
I added the environment variables and manually installed v1.3.10 of mkl_fft using the setup.py install command
No when I try to import mkl_fft in a python script ...
NairoDorian
- 5
- Opened on Jul 20, 2024
- #113
Following example returns an empty array
import mkl_fft.interfaces as mfi, numpy
a=numpy.ones((2,0,4))
mfi.numpy_fft.fftn(a)
# array([], shape=(2, 0, 4), dtype=complex128)
mfi.numpy_fft.fftn(a, axes=(1,)) ...
vtavana
- Opened on Jul 18, 2024
- #110
Following example returns correct result for float dtype (results similar to stock NumPy) but incorrect result for
integer dtype:
# Name Version Build Channel
# ──────────────────────────────────────────────────── ...
vtavana
- Opened on Jul 18, 2024
- #109
Following example returns an error
import mkl_fft.interfaces as mfi, numpy
b=numpy.array([[5, 7, 6, 5], [4, 6, 4, 8], [9, 3, 7, 5]], dtype=numpy.float32)
mfi.numpy_fft.fftn(b, axes=(), s=None, norm= forward ...
vtavana
- Opened on Jul 18, 2024
- #108

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.