From eb887d917332fb5ff0f23c9705cf1469e371d994 Mon Sep 17 00:00:00 2001 From: Philip Mueller Date: Mon, 11 Nov 2024 16:54:36 +0100 Subject: [PATCH] Enabled the FFT test again. However, to work we need https://github.com/spcl/dace/pull/1747. --- 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 8fc5e88203..240cc1dc9f 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)