Skip to content

Commit

Permalink
BLAS - Axpby: fixing issue with output level
Browse files Browse the repository at this point in the history
  • Loading branch information
lucbv committed Mar 28, 2024
1 parent e3e1122 commit d52f809
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit d52f809

Please sign in to comment.