From c98b419bb1d4dd07185f9cf15f88f37b96377102 Mon Sep 17 00:00:00 2001 From: Yaron Gvili Date: Sat, 19 Jun 2021 11:24:20 -0400 Subject: [PATCH] Fix typo in swifft_catch --- test/swifft_catch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/swifft_catch.cpp b/test/swifft_catch.cpp index db35d68..abdd5ff 100644 --- a/test/swifft_catch.cpp +++ b/test/swifft_catch.cpp @@ -292,7 +292,7 @@ TEST_CASE( "SWIFFT_fft is consistent across instruction-sets", "[swifft]" ) { SwifftOutput output3 = {0}; SWIFFT_ALIGN int16_t fftout3[SWIFFT_N*SWIFFT_M] = {0}; swifft_avx512.fft.SWIFFT_fft(input.data, SWIFFT_sign0, SWIFFT_M, fftout3); - swifft.avx512.fft.SWIFFT_fftsum(SWIFFT_PI_key, fftout3, SWIFFT_M, (int16_t *)output3.data); + swifft_avx512.fft.SWIFFT_fftsum(SWIFFT_PI_key, fftout3, SWIFFT_M, (int16_t *)output3.data); CHECK( 0 == memcmp(fftout0, fftout3, sizeof(fftout1)) ); #endif }