Skip to content

Commit

Permalink
Merging Test_Batched_SerialGetrf.hpp and Test_Batched_SerialGetrf_Rea…
Browse files Browse the repository at this point in the history
…l.hpp

Signed-off-by: Yuuichi Asahi <y.asahi@nr.titech.ac.jp>
  • Loading branch information
Yuuichi Asahi committed Jan 6, 2025
1 parent f3c38f1 commit a36e415
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
1 change: 0 additions & 1 deletion batched/dense/unit_test/Test_Batched_Dense.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
#include "Test_Batched_SerialLaswp.hpp"
#include "Test_Batched_SerialIamax.hpp"
#include "Test_Batched_SerialGetrf.hpp"
#include "Test_Batched_SerialGetrf_Real.hpp"

// Team Kernels
#include "Test_Batched_TeamAxpy.hpp"
Expand Down
32 changes: 32 additions & 0 deletions batched/dense/unit_test/Test_Batched_SerialGetrf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,3 +335,35 @@ int test_batched_getrf() {

return 0;
}

#if defined(KOKKOSKERNELS_INST_FLOAT)
TEST_F(TestCategory, test_batched_getrf_float) {
using algo_tag_type = typename 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;

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;

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;

test_batched_getrf<TestDevice, Kokkos::complex<double>, algo_tag_type>();
}
#endif
31 changes: 0 additions & 31 deletions batched/dense/unit_test/Test_Batched_SerialGetrf_Real.hpp

This file was deleted.

0 comments on commit a36e415

Please sign in to comment.