Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reenable MLS tests on HIP #1034

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions test/tstInterpDetailsMLSCoefficients.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,6 @@ interpolate(ExecutionSpace const &space, SourceValues const &source_values,

BOOST_AUTO_TEST_CASE_TEMPLATE(mls_coefficients, DeviceType, ARBORX_DEVICE_TYPES)
{
// FIXME_HIP: the CI fails with:
// fatal error: in "mls_coefficients_edge_cases<Kokkos__Device<Kokkos__HIP_
// Kokkos__HIPSpace>>": std::runtime_error: Kokkos::Impl::ParallelFor/Reduce<
// HIP > could not find a valid team size.
// The error seems similar to https://github.com/kokkos/kokkos/issues/6743
#ifdef KOKKOS_ENABLE_HIP
if (std::is_same_v<typename DeviceType::execution_space, Kokkos::HIP>)
{
return;
}
#endif
using ExecutionSpace = typename DeviceType::execution_space;
using MemorySpace = typename DeviceType::memory_space;
ExecutionSpace space{};
Expand Down Expand Up @@ -134,17 +123,6 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(mls_coefficients, DeviceType, ARBORX_DEVICE_TYPES)
BOOST_AUTO_TEST_CASE_TEMPLATE(mls_coefficients_edge_cases, DeviceType,
ARBORX_DEVICE_TYPES)
{
// FIXME_HIP: the CI fails with:
// fatal error: in "mls_coefficients_edge_cases<Kokkos__Device<Kokkos__HIP_
// Kokkos__HIPSpace>>": std::runtime_error: Kokkos::Impl::ParallelFor/Reduce<
// HIP > could not find a valid team size.
// The error seems similar to https://github.com/kokkos/kokkos/issues/6743
#ifdef KOKKOS_ENABLE_HIP
if (std::is_same_v<typename DeviceType::execution_space, Kokkos::HIP>)
{
return;
}
#endif
using ExecutionSpace = typename DeviceType::execution_space;
using MemorySpace = typename DeviceType::memory_space;
ExecutionSpace space{};
Expand Down
24 changes: 0 additions & 24 deletions test/tstInterpMovingLeastSquares.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,6 @@
BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares, DeviceType,
ARBORX_DEVICE_TYPES)
{
// FIXME_HIP: the CI fails with:
// fatal error: in "mls_coefficients_edge_cases<Kokkos__Device<Kokkos__HIP_
// Kokkos__HIPSpace>>": std::runtime_error: Kokkos::Impl::ParallelFor/Reduce<
// HIP > could not find a valid team size.
// The error seems similar to https://github.com/kokkos/kokkos/issues/6743
#ifdef KOKKOS_ENABLE_HIP
if (std::is_same_v<typename DeviceType::execution_space, Kokkos::HIP>)
{
return;
}
#endif

using ExecutionSpace = typename DeviceType::execution_space;
using MemorySpace = typename DeviceType::memory_space;
ExecutionSpace space{};
Expand Down Expand Up @@ -109,18 +97,6 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares, DeviceType,
BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares_edge_cases, DeviceType,
ARBORX_DEVICE_TYPES)
{
// FIXME_HIP: the CI fails with:
// fatal error: in "mls_coefficients_edge_cases<Kokkos__Device<Kokkos__HIP_
// Kokkos__HIPSpace>>": std::runtime_error: Kokkos::Impl::ParallelFor/Reduce<
// HIP > could not find a valid team size.
// The error seems similar to https://github.com/kokkos/kokkos/issues/6743
#ifdef KOKKOS_ENABLE_HIP
if (std::is_same_v<typename DeviceType::execution_space, Kokkos::HIP>)
{
return;
}
#endif

using ExecutionSpace = typename DeviceType::execution_space;
using MemorySpace = typename DeviceType::memory_space;
ExecutionSpace space{};
Expand Down
Loading