Skip to content

Commit db362a0

Browse files
author
Balint Joo
committed
Reduced to V=1 testcase in test_vspinproj_sycl.cpp
1 parent cd290bf commit db362a0

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

test/test_vspinproj_sycl.cpp

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,30 @@ template<typename T>
3131
class TestVSpinProj : public ::testing::Test{};
3232

3333
#ifdef MG_FORTRANLIKE_COMPLEX
34+
#if 0
3435
using test_types = ::testing::Types<
3536
std::integral_constant<int,1>,
3637
std::integral_constant<int,2>,
3738
std::integral_constant<int,4>,
3839
std::integral_constant<int,8> >;
3940
#else
41+
using test_types = ::testing::Types<
42+
std::integral_constant<int,1> >;
43+
#endif
44+
45+
#else
46+
47+
#if 0
4048
using test_types = ::testing::Types<
4149
std::integral_constant<int,1>,
4250
std::integral_constant<int,2>,
4351
std::integral_constant<int,4>,
4452
std::integral_constant<int,8>,
4553
std::integral_constant<int,16> >;
46-
54+
#else
55+
using test_types = ::testing::Types<
56+
std::integral_constant<int,1> >;
57+
#endif
4758
#endif
4859

4960
TYPED_TEST_CASE(TestVSpinProj, test_types);

0 commit comments

Comments
 (0)