From e972978519a322f0f57e57c9a79bc789e66c21e2 Mon Sep 17 00:00:00 2001 From: Philip Mueller Date: Tue, 19 Nov 2024 09:48:52 +0100 Subject: [PATCH] Enabled the Stockham FFT tests. --- tests/npbench/misc/stockham_fft_test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/npbench/misc/stockham_fft_test.py b/tests/npbench/misc/stockham_fft_test.py index 5878cf621a..eeedaf2034 100644 --- a/tests/npbench/misc/stockham_fft_test.py +++ b/tests/npbench/misc/stockham_fft_test.py @@ -155,12 +155,10 @@ def run_stockham_fft(device_type: dace.dtypes.DeviceType): return sdfg -@pytest.mark.skip(reason="Assertion error in read_and_write_sets") def test_cpu(): run_stockham_fft(dace.dtypes.DeviceType.CPU) -@pytest.mark.skip(reason="Assertion error in read_and_write_sets") @pytest.mark.gpu def test_gpu(): run_stockham_fft(dace.dtypes.DeviceType.GPU)