Skip to content

Commit

Permalink
[ci skip] add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Rombur committed Jan 25, 2024
1 parent d808cc9 commit 4ff096b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/tstInterpDetailsMLSCoefficients.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ 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>)
{
Expand Down Expand Up @@ -132,6 +137,11 @@ 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>)
{
Expand Down
10 changes: 10 additions & 0 deletions test/tstInterpMovingLeastSquares.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
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>)
{
Expand Down Expand Up @@ -106,6 +111,11 @@ 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>)
{
Expand Down

0 comments on commit 4ff096b

Please sign in to comment.