diff --git a/batched/dense/unit_test/Test_Batched_SerialQR.hpp b/batched/dense/unit_test/Test_Batched_SerialQR.hpp index 291d2f8f27..5cb108fbf1 100644 --- a/batched/dense/unit_test/Test_Batched_SerialQR.hpp +++ b/batched/dense/unit_test/Test_Batched_SerialQR.hpp @@ -73,7 +73,7 @@ struct qrFunctor { // Now apply Q' to Q w(0) = 0.0, w(1) = 0.0; // KokkosBatched::SerialApplyQ::invoke(A, tau, Q, w); - KokkosBatched::SerialApplyQ::invoke(A, tau, Q, w); + KokkosBatched::SerialApplyQ::invoke(A, tau, Q, w); Kokkos::printf("\nQ stores Q'Q=I\nQ%d = [%5.2f, %5.2f, %5.2f]\n [%5.2f, %5.2f, %5.2f]\n [%5.2f, %5.2f, %5.2f]\n", matIdx, Q(0, 0), Q(0, 1), Q(0, 2), Q(1, 0), Q(1, 1), Q(1, 2), Q(2, 0), Q(2, 1), Q(2, 2));