Skip to content

Commit

Permalink
Handle new fft tests for CUDA
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-perevezentsev committed Dec 11, 2024
1 parent f33bcfa commit 8988be2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dpnp/tests/third_party/cupy/fft_tests/test_fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,8 @@ class TestFftn:
type_check=has_support_aspect64(),
)
def test_fftn(self, xp, dtype, order, enable_nd):
if is_cuda_device() and self.shape == (2, 3, 4, 5):
pytest.skip("SAT-7587")
# assert config.enable_nd_planning == enable_nd
a = testing.shaped_random(self.shape, xp, dtype)
if order == "F":
Expand Down Expand Up @@ -534,6 +536,8 @@ def test_fftn(self, xp, dtype, order, enable_nd):
type_check=has_support_aspect64(),
)
def test_ifftn(self, xp, dtype, order, enable_nd):
if is_cuda_device() and self.shape == (2, 3, 4, 5):
pytest.skip("SAT-7587")
# assert config.enable_nd_planning == enable_nd
a = testing.shaped_random(self.shape, xp, dtype)
if order == "F":
Expand Down

0 comments on commit 8988be2

Please sign in to comment.