Skip to content

Commit a7d2419

Browse files
authored
Implemented MutableEdgecutFragment.. (alibaba#89)
1 parent 20feb65 commit a7d2419

File tree

98 files changed

+185814
-3746
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+185814
-3746
lines changed

CMakeLists.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ if (PROFILING)
2525
add_definitions(-DPROFILING)
2626
endif ()
2727

28-
include_directories(thirdparty)
28+
include_directories(SYSTEM thirdparty)
29+
2930
# ------------------------------------------------------------------------------
3031
# setting default cmake type to Release
3132
# ------------------------------------------------------------------------------
@@ -207,6 +208,14 @@ else ()
207208
${GLOG_LIBRARIES} ${GFLAGS_LIBRARIES} ${CMAKE_DL_LIBS})
208209
install_libgrapelite_target(analytical_apps)
209210

211+
add_executable(benchmark_app examples/analytical_apps/mutate_benchmark_flags.cc
212+
examples/analytical_apps/mutate_benchmark.cc)
213+
target_include_directories(benchmark_app PRIVATE
214+
examples/analytical_apps)
215+
target_link_libraries(benchmark_app grape-lite ${MPI_CXX_LIBRARIES}
216+
${GLOG_LIBRARIES} ${GFLAGS_LIBRARIES} ${CMAKE_DL_LIBS})
217+
install_libgrapelite_target(benchmark_app)
218+
210219
if (WITH_CUDA)
211220
cuda_add_executable(gpu_analytical_apps examples/analytical_apps/flags.cc examples/analytical_apps/run_cuda_app.cu)
212221
target_include_directories(gpu_analytical_apps SYSTEM PRIVATE thirdparty/cub thirdparty/thrust thirdparty/moderngpu/src)

0 commit comments

Comments
 (0)