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

sparse/unit_test: Disable spmv_mv_heavy for all A64FX builds #1555

Merged
merged 1 commit into from
Oct 3, 2022
Merged
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
4 changes: 2 additions & 2 deletions sparse/unit_test/Test_Sparse_spmv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -565,15 +565,15 @@ template <typename scalar_t, typename lno_t, typename size_type,
typename layout, class Device>
void test_spmv_mv_heavy(lno_t numRows, size_type nnz, lno_t bandwidth,
lno_t row_size_variance, int numMV) {
#if defined(KOKKOSKERNELS_ENABLE_TPL_ARMPL)
#if defined(KOKKOSKERNELS_ENABLE_TPL_ARMPL) || defined(KOKKOS_ARCH_A64FX)
if (std::is_same<scalar_t, Kokkos::complex<double>>::value) {
std::cerr
<< "TEST SKIPPED: See "
"https://github.com/kokkos/kokkos-kernels/issues/1331 for details."
<< std::endl;
return;
}
#endif // KOKKOSKERNELS_ENABLE_TPL_ARMPL
#endif // KOKKOSKERNELS_ENABLE_TPL_ARMPL || KOKKOS_ARCH_A64FX
using crsMat_t = typename KokkosSparse::CrsMatrix<scalar_t, lno_t, Device,
void, size_type>;
using ViewTypeX = Kokkos::View<scalar_t **, layout, Device>;
Expand Down