Skip to content

Commit 98649ba

Browse files
committed
Disable KDOP<18> manufactured query test for SYCL
1 parent 1d52a6e commit 98649ba

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

test/tstQueryTreeManufacturedSolution.cpp

+7-4
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,19 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(structured_grid, TreeTypeTraits,
4242
{
4343
#ifdef __NVCC__
4444
// FIXME_NVCC inexplicable test failures with NVCC and KDOP<18> and KDOP<26>
45-
if constexpr (BoundingVolume::n_directions == 9 ||
46-
BoundingVolume::n_directions == 13)
45+
if constexpr (std::is_same_v<ExecutionSpace, Kokkos::Cuda> &&
46+
(BoundingVolume::n_directions == 9 ||
47+
BoundingVolume::n_directions == 13))
4748
{
4849
return;
4950
}
5051
#endif
5152
#if defined(KOKKOS_ENABLE_SYCL) && defined(__INTEL_LLVM_COMPILER)
52-
// FIXME_INTEL inexplicable test failures with Intel and KDOP<14>
53+
// FIXME_INTEL inexplicable test failures with Intel and KDOP<14> and
54+
// KDOP<18>
5355
if constexpr (std::is_same_v<ExecutionSpace, Kokkos::SYCL> &&
54-
BoundingVolume::n_directions == 7)
56+
(BoundingVolume::n_directions == 7 ||
57+
BoundingVolume::n_directions == 9))
5558
{
5659
return;
5760
}

0 commit comments

Comments
 (0)