Skip to content

Commit

Permalink
Merge pull request #2165 from ndellingwood/test-updates
Browse files Browse the repository at this point in the history
Updates from feedback runnig Trilinos testing

(cherry picked from commit cacba80)
  • Loading branch information
ndellingwood committed Apr 3, 2024
1 parent e3a84b5 commit ebbf4b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blas/src/KokkosBlas1_axpby.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void axpby(const execution_space& exec_space, const AV& a, const XMV& X,
// Perform compile time checks and run time checks.
// **********************************************************************
AxpbyTraits::performChecks(a, X, b, Y);
#if (KOKKOSKERNELS_DEBUG_LEVEL > 0)
#if (KOKKOSKERNELS_DEBUG_LEVEL > 1)
AxpbyTraits::printInformation(std::cout, "axpby(), unif information");
#endif // KOKKOSKERNELS_DEBUG_LEVEL

Expand Down
2 changes: 1 addition & 1 deletion lapack/unit_test/Test_Lapack_svd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ int impl_test_svd(const int m, const int n) {
Kokkos::View<mag_type*, typename AMatrix::array_layout, Device>;

const mag_type max_val = 10;
const mag_type tol = 1000 * max_val * KAT_S::eps();
const mag_type tol = 2000 * max_val * KAT_S::eps();

AMatrix A("A", m, n), U("U", m, m), Vt("Vt", n, n), Aref("A ref", m, n);
vector_type S("S", Kokkos::min(m, n));
Expand Down

0 comments on commit ebbf4b7

Please sign in to comment.