-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
46 lines (26 loc) · 1.7 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cmake_minimum_required(VERSION 3.24)
project(graph_processing_framework)
# std=c++17
set(CMAKE_CXX_COMPILER clang++)
set(CMAKE_CXX_STANDARD 17)
#-fsanitize=address
#-fcilkplus
# added openMP
# if DEFINED OPENMP
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -O3 -mavx -march=native -fopenmp")
add_executable(ConvertToBinary utils/ConvertToBinary.cpp )
add_executable(SplitConvertToBinary utils/SplitConvertToBinary.cpp )
#add_executable(csc2b utils/CompressedSplitConvertToBinary.cpp)
add_executable(PageRank algorithms/PageRank.cpp graph-creation/EC.cpp graph-creation/getDstFile.cpp)
add_executable(BetaPageRank algorithms/BetaPageRank.cpp graph-creation/EC.cpp graph-creation/getDstFile.cpp)
add_executable(bfs graph-creation/getDstFile.cpp graph-creation/ChainedEC.cpp algorithms/bfs.cpp )
#add_executable(cec graph-creation/ChainedEC.h graph-creation/ChainedEC.cpp)
add_executable(OneStepNeighbour algorithms/OneStepNeighbour.cpp graph-creation/ChainedEC.cpp graph-creation/getDstFile.cpp )
add_executable(test_bfs test/bfs.cpp)
add_executable(CC graph-creation/EC.cpp graph-creation/getDstFile.cpp algorithms/CC.cpp)
add_executable(test_bc graph-creation/EC.cpp graph-creation/getDstFile.cpp test/bc.cpp)
add_executable(hops graph-creation/getDstFile.cpp graph-creation/ChainedEC.cpp algorithms/count_hops.cpp)
add_executable(exp_bfs experimental-features/top_down_bfs/ChainedEC.cpp experimental-features/top_down_bfs/bfs.cpp)
add_executable(exp_dobfs experimental-features/do_bfs/ChainedEC.cpp experimental-features/do_bfs/bfs.cpp)
add_executable(exp_bu_bfs experimental-features/bottom_up_bfs/ChainedEC.cpp experimental-features/bottom_up_bfs/bfs.cpp)
add_executable(sort experimental-features/in_mem_sort.cpp)