Skip to content

Commit bcae46a

Browse files
Re-add initial version of sweeps app.
The new version has a few warnings fixed and has been updated to work with recent API changes.
1 parent c480011 commit bcae46a

File tree

3 files changed

+832
-0
lines changed

3 files changed

+832
-0
lines changed

lonestar/scientific/cpu/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ add_subdirectory(barneshut)
22
add_subdirectory(delaunayrefinement)
33
add_subdirectory(delaunaytriangulation)
44
add_subdirectory(longestedge)
5+
add_subdirectory(sweeps)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
add_executable(sweeps-cpu sweeps.cpp)
2+
add_dependencies(apps sweeps-cpu)
3+
target_link_libraries(sweeps-cpu PRIVATE Galois::shmem lonestar)
4+
install(TARGETS sweeps-cpu DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT apps EXCLUDE_FROM_ALL)
5+
6+
add_test_scale(small sweeps-cpu)

0 commit comments

Comments
 (0)