File: Test_Batched_SerialInverseLU_Real.hpp

package info (click to toggle)
trilinos 13.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 837,948 kB
  • sloc: cpp: 3,466,824; ansic: 433,701; fortran: 168,838; python: 102,712; xml: 66,353; sh: 38,380; makefile: 25,246; perl: 7,516; f90: 6,358; csh: 4,161; objc: 2,620; lex: 1,484; lisp: 810; javascript: 552; yacc: 515; awk: 364; ml: 281; php: 145
file content (20 lines) | stat: -rw-r--r-- 844 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#if defined(KOKKOSKERNELS_INST_FLOAT)
TEST_F( TestCategory, batched_scalar_serial_inverselu_float ) {
  //printf("Batched serial inverse LU - float - algorithm type: Unblocked\n");
  test_batched_inverselu<TestExecSpace,float,Algo::InverseLU::Unblocked>();
  //printf("Batched serial inverse LU - float - algorithm type: Blocked\n");
  test_batched_inverselu<TestExecSpace,float,Algo::InverseLU::Blocked>();
}
#endif


#if defined(KOKKOSKERNELS_INST_DOUBLE)
TEST_F( TestCategory, batched_scalar_serial_inverselu_double ) {
  //printf("Batched serial inverse LU - double - algorithm type: Unblocked\n");
  test_batched_inverselu<TestExecSpace,double,Algo::InverseLU::Unblocked>();
  //printf("Batched serial inverse LU - double - algorithm type: Blocked\n");
  test_batched_inverselu<TestExecSpace,double,Algo::InverseLU::Blocked>();
}
#endif