From f4296cdfe2a6ae65ce6dd009b191219f00415552 Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Fri, 6 Dec 2024 22:57:05 +0900 Subject: [PATCH] fix code QR Signed-off-by: Yuuichi Asahi --- .../unit_test/Test_Batched_SerialTrsv.hpp | 2 -- .../Test_Batched_SerialTrsv_Complex.hpp | 24 +++++++++---------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/batched/dense/unit_test/Test_Batched_SerialTrsv.hpp b/batched/dense/unit_test/Test_Batched_SerialTrsv.hpp index ddc965f1d4..62e6e87601 100644 --- a/batched/dense/unit_test/Test_Batched_SerialTrsv.hpp +++ b/batched/dense/unit_test/Test_Batched_SerialTrsv.hpp @@ -194,7 +194,6 @@ void impl_test_batched_trsv_analytical(const std::size_t N) { using View2DType = Kokkos::View; using StridedView2DType = Kokkos::View; using View3DType = Kokkos::View; - using PivView2DType = Kokkos::View; constexpr std::size_t BlkSize = 3, incx = 2; View3DType A("A", N, BlkSize, BlkSize); @@ -301,7 +300,6 @@ void impl_test_batched_trsv(const std::size_t N, const std::size_t BlkSize) { using View2DType = Kokkos::View; using StridedView2DType = Kokkos::View; using View3DType = Kokkos::View; - using PivView2DType = Kokkos::View; constexpr std::size_t incx = 2; View3DType A("A", N, BlkSize, BlkSize), AT("AT", N, BlkSize, BlkSize); diff --git a/batched/dense/unit_test/Test_Batched_SerialTrsv_Complex.hpp b/batched/dense/unit_test/Test_Batched_SerialTrsv_Complex.hpp index 470bba3320..7dfc77b07c 100644 --- a/batched/dense/unit_test/Test_Batched_SerialTrsv_Complex.hpp +++ b/batched/dense/unit_test/Test_Batched_SerialTrsv_Complex.hpp @@ -80,63 +80,63 @@ TEST_F(TestCategory, batched_scalar_serial_trsv_u_c_n_fcomplex_fcomplex) { #if defined(KOKKOSKERNELS_INST_COMPLEX_DOUBLE) TEST_F(TestCategory, batched_scalar_serial_trsv_l_nt_u_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_l_nt_n_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_l_t_u_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_l_t_n_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_l_c_u_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_l_c_n_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_u_nt_u_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_u_nt_n_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_u_t_u_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_u_t_n_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_u_c_u_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); } TEST_F(TestCategory, batched_scalar_serial_trsv_u_c_n_dcomplex_dcomplex) { - using param_tag_type = ::Test::Trsv::ParamTag param_tag_type; + using param_tag_type = ::Test::Trsv::ParamTag; using algo_tag_type = Algo::Trsv::Unblocked; test_batched_trsv, Kokkos::complex, param_tag_type, algo_tag_type>(); }