Skip to content

Commit

Permalink
remove the global namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Yuuichi Asahi <y.asahi@nr.titech.ac.jp>
  • Loading branch information
Yuuichi Asahi committed Jan 7, 2025
1 parent a36e415 commit a4424cd
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions batched/dense/unit_test/Test_Batched_SerialGetrf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
#include <KokkosBatched_Gemm_Decl.hpp>
#include "Test_Batched_DenseUtils.hpp"

using namespace KokkosBatched;

namespace Test {
namespace Getrf {

Expand Down Expand Up @@ -338,31 +336,31 @@ 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<TestDevice, float, algo_tag_type>();
}
#endif

#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<TestDevice, double, algo_tag_type>();
}
#endif

#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<TestDevice, Kokkos::complex<float>, algo_tag_type>();
}
#endif

#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<TestDevice, Kokkos::complex<double>, algo_tag_type>();
}
Expand Down

0 comments on commit a4424cd

Please sign in to comment.