Skip to content

Commit b4bdde4

Browse files
ksaitharvarajago
authored andcommitted
Added Test code for GETF2, GBTF2 and GBSVX APIs (flame#62)
1 parent 307d14f commit b4bdde4

File tree

8 files changed

+1104
-2
lines changed

8 files changed

+1104
-2
lines changed

test/main/input.global.operations

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@
6868
# APIs with only Benchmark test without Validation
6969
0 gbsv Linear Solve using LU for Band Matrix (0 = disable; 1 = enable; 2 = enable only this)
7070
0 getrf2 LU factorization (GETRF2) (0 = disable; 1 = enable; 2 = enable only this)
71+
0 getf2 LU factorization (GETF2) (0 = disable; 1 = enable; 2 = enable only this)
72+
0 gbtf2 LU factorization of banded matrix (GBTF2) (0 = disable; 1 = enable; 2 = enable only this)
73+
0 gbsvx Linear Solve using LU for Band Matrix (GBSVX) (0 = disable; 1 = enable; 2 = enable only this)

test/main/src/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ ${CMAKE_CURRENT_SOURCE_DIR}/test_trtrs.c
7272
# only performance benchmarking
7373
${CMAKE_CURRENT_SOURCE_DIR}/test_gbsv.c
7474
${CMAKE_CURRENT_SOURCE_DIR}/test_getrf2.c
75+
${CMAKE_CURRENT_SOURCE_DIR}/test_getf2.c
76+
${CMAKE_CURRENT_SOURCE_DIR}/test_gbtf2.c
77+
${CMAKE_CURRENT_SOURCE_DIR}/test_gbsvx.c
7578
)
7679

7780
add_subdirectory(lapacke)

0 commit comments

Comments
 (0)