Skip to content

Commit 5953f90

Browse files
committed
Add smoke test for transition path and enable its build
1 parent d45e476 commit 5953f90

File tree

2 files changed

+596
-0
lines changed

2 files changed

+596
-0
lines changed

tests/smoke/CMakeLists.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,21 @@ add_grb_executables( kcore_decomposition kcore_decomposition.cpp
185185
BACKENDS reference reference_omp hyperdags nonblocking bsp1d hybrid
186186
)
187187

188+
# transition path smoke tests
189+
add_grb_executable_custom( conjugate_gradient_tp_sequential conjugate_gradient_tp.cpp
190+
LINK_LIBRARIES spsolver_sequential backend_headers_nodefs OpenMP::OpenMP_CXX
191+
)
192+
193+
add_grb_executable_custom( conjugate_gradient_tp_shmem_parallel conjugate_gradient_tp.cpp
194+
LINK_LIBRARIES spsolver_shmem_parallel backend_headers_nodefs OpenMP::OpenMP_CXX
195+
)
196+
197+
if( TARGET spsolver_shmem_blocking )
198+
add_grb_executable_custom( conjugate_gradient_tp_shmem_blocking conjugate_gradient_tp.cpp
199+
LINK_LIBRARIES spsolver_shmem_blocking backend_headers_nodefs OpenMP::OpenMP_CXX
200+
)
201+
endif()
202+
188203
# targets to list and build the test for this category
189204
get_property( smoke_tests_list GLOBAL PROPERTY tests_category_smoke )
190205
add_custom_target( "list_tests_category_smoke"

0 commit comments

Comments
 (0)