From ec8e24ed0c635ec86cb693e1388e57d03a03df6e Mon Sep 17 00:00:00 2001 From: Brian Kelley Date: Mon, 6 Jan 2025 12:48:08 -0700 Subject: [PATCH] Suppress clang-format on doxygen section Signed-off-by: Brian Kelley --- blas/src/KokkosBlas1_rotmg.hpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/blas/src/KokkosBlas1_rotmg.hpp b/blas/src/KokkosBlas1_rotmg.hpp index b1707bea57..647eb3248e 100644 --- a/blas/src/KokkosBlas1_rotmg.hpp +++ b/blas/src/KokkosBlas1_rotmg.hpp @@ -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 @@ -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 void rotmg(execution_space const& space, DXView const& d1, DXView const& d2, DXView const& x1, YView const& y1, PView const& param) {