Skip to content

Commit d7e1eee

Browse files
author
Yuuichi Asahi
committed
Merging Test_Batched_SerialGetrf.hpp and Test_Batched_SerialGetrf_Real.hpp
Signed-off-by: Yuuichi Asahi <y.asahi@nr.titech.ac.jp>
1 parent da579e1 commit d7e1eee

File tree

3 files changed

+32
-32
lines changed

3 files changed

+32
-32
lines changed

batched/dense/unit_test/Test_Batched_Dense.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
#include "Test_Batched_SerialLaswp.hpp"
6565
#include "Test_Batched_SerialIamax.hpp"
6666
#include "Test_Batched_SerialGetrf.hpp"
67-
#include "Test_Batched_SerialGetrf_Real.hpp"
6867

6968
// Team Kernels
7069
#include "Test_Batched_TeamAxpy.hpp"

batched/dense/unit_test/Test_Batched_SerialGetrf.hpp

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,3 +335,35 @@ int test_batched_getrf() {
335335

336336
return 0;
337337
}
338+
339+
#if defined(KOKKOSKERNELS_INST_FLOAT)
340+
TEST_F(TestCategory, test_batched_getrf_float) {
341+
using algo_tag_type = typename Algo::Getrf::Unblocked;
342+
343+
test_batched_getrf<TestDevice, float, algo_tag_type>();
344+
}
345+
#endif
346+
347+
#if defined(KOKKOSKERNELS_INST_DOUBLE)
348+
TEST_F(TestCategory, test_batched_getrf_double) {
349+
using algo_tag_type = typename Algo::Getrf::Unblocked;
350+
351+
test_batched_getrf<TestDevice, double, algo_tag_type>();
352+
}
353+
#endif
354+
355+
#if defined(KOKKOSKERNELS_INST_COMPLEX_FLOAT)
356+
TEST_F(TestCategory, test_batched_getrf_fcomplex) {
357+
using algo_tag_type = typename Algo::Getrf::Unblocked;
358+
359+
test_batched_getrf<TestDevice, Kokkos::complex<float>, algo_tag_type>();
360+
}
361+
#endif
362+
363+
#if defined(KOKKOSKERNELS_INST_COMPLEX_DOUBLE)
364+
TEST_F(TestCategory, test_batched_getrf_dcomplex) {
365+
using algo_tag_type = typename Algo::Getrf::Unblocked;
366+
367+
test_batched_getrf<TestDevice, Kokkos::complex<double>, algo_tag_type>();
368+
}
369+
#endif

batched/dense/unit_test/Test_Batched_SerialGetrf_Real.hpp

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)