Skip to content

Commit

Permalink
Disable failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Apr 23, 2021
1 parent 96c8aa8 commit 6741794
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion unit_test/batched/Test_Batched_VectorArithmatic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// to ensure it is not included in these
// backends unit-test

#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP)
#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP) && !defined(TEST_SYCL_BATCHED_CPP)

#include "gtest/gtest.h"
#include "Kokkos_Core.hpp"
Expand Down
2 changes: 1 addition & 1 deletion unit_test/batched/Test_Batched_VectorLogical.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// to ensure it is not included in these
// backends unit-test

#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP)
#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP) && !defined(TEST_SYCL_BATCHED_CPP)

#include "gtest/gtest.h"
#include "Kokkos_Core.hpp"
Expand Down
2 changes: 1 addition & 1 deletion unit_test/batched/Test_Batched_VectorMath.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// to ensure it is not included in these
// backends unit-test

#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP)
#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP) &&!defined(TEST_SYCL_BATCHED_CPP)

#include "gtest/gtest.h"
#include "Kokkos_Core.hpp"
Expand Down
2 changes: 1 addition & 1 deletion unit_test/batched/Test_Batched_VectorMisc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// to ensure it is not included in these
// backends unit-test

#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP)
#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP) && !defined(TEST_SYCL_BATCHED_CPP)

#include "gtest/gtest.h"
#include "Kokkos_Core.hpp"
Expand Down
2 changes: 1 addition & 1 deletion unit_test/batched/Test_Batched_VectorRelation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// to ensure it is not included in these
// backends unit-test

#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP)
#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP) && !defined(TEST_SYCL_BATCHED_CPP)

#include "gtest/gtest.h"
#include "Kokkos_Core.hpp"
Expand Down
2 changes: 1 addition & 1 deletion unit_test/batched/Test_Batched_VectorView.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// to ensure it is not included in these
// backends unit-test

#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP)
#if !defined(TEST_CUDA_BATCHED_CPP) && !defined(TEST_HIP_BATCHED_CPP) && !defined(TEST_SYCL_BATCHED_CPP)

#include "gtest/gtest.h"
#include "Kokkos_Core.hpp"
Expand Down
3 changes: 3 additions & 0 deletions unit_test/graph/Test_Graph_graph_color.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,13 @@ TEST_F( TestCategory, graph ## _ ## graph_color ## _ ## SCALAR ## _ ## ORDINAL #
EXECUTE_TEST(double, int64_t, int, TestExecSpace)
#endif

// FIXME_SYCL
#ifndef KOKKOS_ENABLE_SYCL
#if (defined (KOKKOSKERNELS_INST_ORDINAL_INT) \
&& defined (KOKKOSKERNELS_INST_OFFSET_SIZE_T) ) || (!defined(KOKKOSKERNELS_ETI_ONLY) && !defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
EXECUTE_TEST(double, int, size_t, TestExecSpace)
#endif
#endif

#if (defined (KOKKOSKERNELS_INST_ORDINAL_INT64_T) \
&& defined (KOKKOSKERNELS_INST_OFFSET_SIZE_T) ) || (!defined(KOKKOSKERNELS_ETI_ONLY) && !defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
Expand Down
3 changes: 3 additions & 0 deletions unit_test/graph/Test_Graph_graph_color_distance2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,13 @@ EXECUTE_TEST(double, int, int, TestExecSpace)
EXECUTE_TEST(double, int64_t, int, TestExecSpace)
#endif

// FIXME_SYCL
#ifndef KOKKOS_ENABLE_SYCL
#if(defined(KOKKOSKERNELS_INST_ORDINAL_INT) && defined(KOKKOSKERNELS_INST_OFFSET_SIZE_T)) \
|| (!defined(KOKKOSKERNELS_ETI_ONLY) && !defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
EXECUTE_TEST(double, int, size_t, TestExecSpace)
#endif
#endif

#if(defined(KOKKOSKERNELS_INST_ORDINAL_INT64_T) && defined(KOKKOSKERNELS_INST_OFFSET_SIZE_T)) \
|| (!defined(KOKKOSKERNELS_ETI_ONLY) && !defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
Expand Down
3 changes: 3 additions & 0 deletions unit_test/graph/Test_Graph_mis2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,11 +278,14 @@ void test_mis2_coarsening_zero_rows()
test_mis2_coarsening_zero_rows<SCALAR, ORDINAL, OFFSET, DEVICE>(); \
}

// FIXME_SYCL
#ifndef KOKKOS_ENABLE_SYCL
#if defined(KOKKOSKERNELS_INST_DOUBLE)
#if(defined(KOKKOSKERNELS_INST_ORDINAL_INT) && defined(KOKKOSKERNELS_INST_OFFSET_INT)) \
|| (!defined(KOKKOSKERNELS_ETI_ONLY) && !defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
EXECUTE_TEST(double, int, int, TestExecSpace)
#endif
#endif

#if(defined(KOKKOSKERNELS_INST_ORDINAL_INT64_T) && defined(KOKKOSKERNELS_INST_OFFSET_INT)) \
|| (!defined(KOKKOSKERNELS_ETI_ONLY) && !defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
Expand Down

0 comments on commit 6741794

Please sign in to comment.