From 18fc3497e884ebc04bde85ec2e77ad097045f12c Mon Sep 17 00:00:00 2001 From: Luc Berger-Vergiat Date: Mon, 4 Nov 2024 17:33:24 -0700 Subject: [PATCH] Fixing an issue with transpose in SerialQR unit-test --- batched/dense/unit_test/Test_Batched_SerialQR.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));