Skip to content

Commit

Permalink
Suppress clang-format on doxygen section
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Kelley <bmkelle@sandia.gov>
  • Loading branch information
brian-kelley committed Jan 6, 2025
1 parent 9fc3712 commit ec8e24e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions blas/src/KokkosBlas1_rotmg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

namespace KokkosBlas {

// clang-format off
/// \brief Compute the coefficients to apply a modified Givens rotation.
///
/// \tparam execution_space the execution space where the kernel will be
Expand All @@ -33,12 +34,13 @@ namespace KokkosBlas {
/// static extent 5 that holds non const data
///
/// \param space [in] execution space used for parallel loops
/// \param d1 [in/out] On input, square of initial x scaling factor. On output, square of x scaling factor to be applied
/// after rotm. \param d2 [in/out] On input, square of initial y scaling factor. On output, square of y scaling factor
/// to be applied after rotm. \param x1 [in/out] On input, element from first vector to rotate. On output, the rotated
/// element before scaling. \param y1 [in] Element from second vector to rotate. It is not modified by this routine.
/// \param d1 [in/out] On input, square of initial x scaling factor. On output, square of x scaling factor to be applied after rotm.
/// \param d2 [in/out] On input, square of initial y scaling factor. On output, square of y scaling factor
/// to be applied after rotm.
/// \param x1 [in/out] On input, element from first vector to rotate. On output, the rotated element before scaling.
/// \param y1 [in] Element from second vector to rotate. It is not modified by this routine.
/// \param param [out] 5-element parameter array defining the rotation, to be used by rotm.
///
// clang-format on
template <class execution_space, class DXView, class YView, class PView>
void rotmg(execution_space const& space, DXView const& d1, DXView const& d2, DXView const& x1, YView const& y1,
PView const& param) {
Expand Down

0 comments on commit ec8e24e

Please sign in to comment.