Skip to content

Commit

Permalink
Merge pull request #90 from kokkos/issue-86
Browse files Browse the repository at this point in the history
Disable AVX float test (we do not have impl for that) -- #86
  • Loading branch information
mndevec authored Oct 3, 2017
2 parents 5325a35 + 87b710d commit cd6c5f8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions unit_test/batched/Test_Batched_VectorArithmatic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ TEST_F( TestCategory, batched_vector_arithmatic_simd_dcomplex2 ) {

#if defined(__AVX__) || defined(__AVX2__)
#if defined(KOKKOSKERNELS_INST_FLOAT)
TEST_F( TestCategory, batched_vector_arithmatic_avx_float8 ) {
typedef VectorTag<AVX<float,TestExecSpace>, 8> vector_tag_type;
test_batched_vector_arithmatic<TestExecSpace,vector_tag_type>();
}
// TEST_F( TestCategory, batched_vector_arithmatic_avx_float8 ) {
// typedef VectorTag<AVX<float,TestExecSpace>, 8> vector_tag_type;
// test_batched_vector_arithmatic<TestExecSpace,vector_tag_type>();
// }
#endif

#if defined(KOKKOSKERNELS_INST_DOUBLE)
Expand All @@ -224,10 +224,10 @@ TEST_F( TestCategory, batched_vector_arithmatic_avx_dcomplex2 ) {

#if defined(__AVX512F__)
#if defined(KOKKOSKERNELS_INST_FLOAT)
TEST_F( TestCategory, batched_vector_arithmatic_avx_float16 ) {
typedef VectorTag<AVX<float,TestExecSpace>, 16> vector_tag_type;
test_batched_vector_arithmatic<TestExecSpace,vector_tag_type>();
}
// TEST_F( TestCategory, batched_vector_arithmatic_avx_float16 ) {
// typedef VectorTag<AVX<float,TestExecSpace>, 16> vector_tag_type;
// test_batched_vector_arithmatic<TestExecSpace,vector_tag_type>();
// }
#endif

#if defined(KOKKOSKERNELS_INST_DOUBLE)
Expand Down

0 comments on commit cd6c5f8

Please sign in to comment.