Skip to content

Commit

Permalink
Added test for CSR to BSR conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanda Bienz authored and Amanda Bienz committed May 23, 2024
1 parent 34b8bcd commit 1c61563
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions raptor/util/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ add_executable(test_spmv_random test_spmv_random.cpp)
target_link_libraries(test_spmv_random raptor ${MPI_LIBRARIES} googletest pthread )
add_test(RandomSpMVTest ./test_spmv_random)

add_executable(test_bsr_spmv_laplacian test_bsr_spmv_laplacian.cpp)
target_link_libraries(test_bsr_spmv_laplacian raptor ${MPI_LIBRARIES} googletest pthread )
add_test(BSRLaplacianSpMVTest ./test_bsr_spmv_laplacian)

add_executable(test_bsr_spmv_aniso test_bsr_spmv_aniso.cpp)
target_link_libraries(test_bsr_spmv_aniso raptor ${MPI_LIBRARIES} googletest pthread )
add_test(BSRAnisoSpMVTest ./test_bsr_spmv_aniso)

add_executable(test_bsr_spmv_random test_bsr_spmv_random.cpp)
target_link_libraries(test_bsr_spmv_random raptor ${MPI_LIBRARIES} googletest pthread )
add_test(BSRRandomSpMVTest ./test_bsr_spmv_random)


add_executable(test_jacobi_aniso test_jacobi_aniso.cpp)
target_link_libraries(test_jacobi_aniso raptor ${MPI_LIBRARIES} googletest pthread )
Expand Down

0 comments on commit 1c61563

Please sign in to comment.