-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SpMV: Test NaN, fix NaN handling when beta=0 (#2188)
* Test_Sparse_spmv_bsr.hpp: add NaNs to tests * handle NaN in spmv_beta_transpose when beta=0 * handle nan in SpmvMergeHierarchical when beta=0 * Test NaNs in Y, don't reuse modifed Y, catch NaNs in results test * remove unused <iostream> include * explicit casting of zero * Test_sparse_spmv.hpp: remove unused nans parameter * KokkosSparse_spmv.hpp: CUDA11 can't detect this function always returns * Test_Sparse_spmv.hpp: remove unused variable * Run unit tests in correct execution space * Test_Sparse_spmv.hpp: remove unused type aliases * Kokkos::nan() -> KokkosKernels::Impl::quiet_NaN()
- Loading branch information
Showing
6 changed files
with
178 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
//@HEADER | ||
// ************************************************************************ | ||
// | ||
// Kokkos v. 4.0 | ||
// Copyright (2022) National Technology & Engineering | ||
// Solutions of Sandia, LLC (NTESS). | ||
// | ||
// Under the terms of Contract DE-NA0003525 with NTESS, | ||
// the U.S. Government retains certain rights in this software. | ||
// | ||
// Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://kokkos.org/LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//@HEADER | ||
|
||
#ifndef KOKKOSKERNELS_NAN_HPP | ||
#define KOKKOSKERNELS_NAN_HPP | ||
|
||
#include <Kokkos_ArithTraits.hpp> | ||
#include <Kokkos_NumericTraits.hpp> | ||
|
||
namespace KokkosKernels::Impl { | ||
|
||
// This could be constexpr if Kokkos::complex ctor was | ||
template <typename T> | ||
KOKKOS_INLINE_FUNCTION T quiet_NaN() { | ||
if constexpr (std::is_same_v<double, T>) { | ||
return double(Kokkos::Experimental::quiet_NaN_v< | ||
float>); // Kokkos::Experimetnal::quiet_NaN_v<double> | ||
// is undefined in | ||
// device code | ||
} else if constexpr (Kokkos::ArithTraits<T>::is_complex) { | ||
using value_type = typename T::value_type; | ||
return T(quiet_NaN<value_type>(), | ||
quiet_NaN<value_type>()); // Kokkos::complex ctor is not constexpr | ||
} else { | ||
return Kokkos::Experimental::quiet_NaN_v<T>; | ||
} | ||
} | ||
|
||
} // namespace KokkosKernels::Impl | ||
|
||
#endif // KOKKOSKERNELS_NAN_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.