Skip to content

Commit

Permalink
added 9800 and 68640 in regression test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
AD2605 committed Jan 3, 2024
1 parent c36f074 commit 4e61eb5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/unit_test/instantiate_fft_tests.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ INSTANTIATE_TEST_SUITE_P(WorkgroupTest, FFTTest,
INSTANTIATE_TEST_SUITE_P(WorkgroupOrGlobal, FFTTest,
::testing::ConvertGenerator<basic_param_tuple>(::testing::Combine(
all_valid_global_placement_layouts, fwd_only, interleaved_storage,
::testing::Values(1, 128), ::testing::Values(sizes_t{8192}, sizes_t{16384}))),
::testing::Values(1, 128),
::testing::Values(sizes_t{8192}, sizes_t{16384}, sizes_t{9800}, sizes_t{68640}))),
test_params_print());

// Sizes that use the global implementations
Expand All @@ -125,6 +126,12 @@ INSTANTIATE_TEST_SUITE_P(GlobalTest, FFTTest,
::testing::Values(sizes_t{32768}, sizes_t{65536}, sizes_t{131072}))),
test_params_print());

INSTANTIATE_TEST_SUITE_P(WorkgroupOrGlobalRegressionTest, FFTTest,
::testing::ConvertGenerator<basic_param_tuple>(
::testing::Combine(ip_packed_layout, fwd_only, interleaved_storage, ::testing::Values(3),
::testing::Values(sizes_t{9800}, sizes_t{68640}))),
test_params_print());

// Backward FFT test suite
INSTANTIATE_TEST_SUITE_P(BackwardTest, FFTTest,
::testing::ConvertGenerator<basic_param_tuple>(::testing::Combine(
Expand Down

0 comments on commit 4e61eb5

Please sign in to comment.