From a4424cd2bb8756f14793c5910bc5906993b2a07a Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Tue, 7 Jan 2025 13:09:53 +0900 Subject: [PATCH] remove the global namespace Signed-off-by: Yuuichi Asahi --- batched/dense/unit_test/Test_Batched_SerialGetrf.hpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/batched/dense/unit_test/Test_Batched_SerialGetrf.hpp b/batched/dense/unit_test/Test_Batched_SerialGetrf.hpp index bb905bbdb9..ad6e3eddd8 100644 --- a/batched/dense/unit_test/Test_Batched_SerialGetrf.hpp +++ b/batched/dense/unit_test/Test_Batched_SerialGetrf.hpp @@ -22,8 +22,6 @@ #include #include "Test_Batched_DenseUtils.hpp" -using namespace KokkosBatched; - namespace Test { namespace Getrf { @@ -338,7 +336,7 @@ int test_batched_getrf() { #if defined(KOKKOSKERNELS_INST_FLOAT) TEST_F(TestCategory, test_batched_getrf_float) { - using algo_tag_type = typename Algo::Getrf::Unblocked; + using algo_tag_type = typename KokkosBatched::Algo::Getrf::Unblocked; test_batched_getrf(); } @@ -346,7 +344,7 @@ TEST_F(TestCategory, test_batched_getrf_float) { #if defined(KOKKOSKERNELS_INST_DOUBLE) TEST_F(TestCategory, test_batched_getrf_double) { - using algo_tag_type = typename Algo::Getrf::Unblocked; + using algo_tag_type = typename KokkosBatched::Algo::Getrf::Unblocked; test_batched_getrf(); } @@ -354,7 +352,7 @@ TEST_F(TestCategory, test_batched_getrf_double) { #if defined(KOKKOSKERNELS_INST_COMPLEX_FLOAT) TEST_F(TestCategory, test_batched_getrf_fcomplex) { - using algo_tag_type = typename Algo::Getrf::Unblocked; + using algo_tag_type = typename KokkosBatched::Algo::Getrf::Unblocked; test_batched_getrf, algo_tag_type>(); } @@ -362,7 +360,7 @@ TEST_F(TestCategory, test_batched_getrf_fcomplex) { #if defined(KOKKOSKERNELS_INST_COMPLEX_DOUBLE) TEST_F(TestCategory, test_batched_getrf_dcomplex) { - using algo_tag_type = typename Algo::Getrf::Unblocked; + using algo_tag_type = typename KokkosBatched::Algo::Getrf::Unblocked; test_batched_getrf, algo_tag_type>(); }