Skip to content

Commit

Permalink
Fix typo in swifft_catch
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaron Gvili committed Jun 19, 2021
1 parent 7e38974 commit c98b419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/swifft_catch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit c98b419

Please sign in to comment.