forked from oar-team/batsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
331 lines (277 loc) · 11.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# Let's use at least v3.1 for sanity's sake.
cmake_minimum_required(VERSION 3.1)
project("Batsim")
# Enable C++11
# Let's check that the used compiler handles c++11 correctly
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.8.1")
message(FATAL_ERROR "Insufficient gcc version: 4.8.1 is needed to support C++11")
elseif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "5")
message(WARNING "Old gcc version found: Using version 5 or greater is recommended")
endif()
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.3")
message(FATAL_ERROR "Insufficient clang version: 3.3 is needed to support C++11")
elseif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.4")
message(WARNING "Old clang version found: Using version 3.4 or greater is recommended")
endif()
else()
message(WARNING "Unknown compiler. Make sure it fully supports C++11.")
endif()
# Let's enable C++11
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Options
option(enable_warnings "Enable compilation warnings" ON)
option(treat_warnings_as_errors "Treat compilation warnings as compilation errors" OFF)
option(ignore_assertions "Ignore assertions, which could make the simulation unstable, but could improve its performance" OFF)
# Build type
# Set a default build type if none was specified
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to 'Debug' as none was specified.")
set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
"MinSizeRel" "RelWithDebInfo")
endif()
################
# Dependencies #
################
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
## SimGrid dependency
find_package(SimGrid REQUIRED)
include_directories(${SIMGRID_INCLUDE_DIR})
## Boost dependency
find_package(Boost 1.58 REQUIRED COMPONENTS system filesystem regex locale)
include_directories(${Boost_INCLUDE_DIR})
## GMP
find_package(GMP REQUIRED)
include_directories(${GMP_INCLUDE_DIR})
## Rapidjson dependency
find_package(rapidjson REQUIRED)
include_directories(${RAPIDJSON_INCLUDE_DIRS})
## OpenSSL dependency
find_package(OpenSSL REQUIRED)
include_directories(${OPENSSL_INCLUDE_DIR})
## Redox dependency
find_package(redox REQUIRED)
include_directories(${REDOX_INCLUDE_DIR})
## Redox sub dependencies
find_package(hiredis REQUIRED)
include_directories(${HIREDIS_INCLUDE_DIRS})
find_package(libev REQUIRED)
include_directories(${LIBEV_INCLUDE_DIRS})
# ZeroMQ dependency
find_package(ZMQ REQUIRED)
include_directories(${ZMQ_INCLUDE_DIRS})
##################
# Batsim version #
##################
set(default_batsim_version "v1.4.0")
include(GetGitRevisionDescription)
git_describe(batsim_version)
message(STATUS "Batsim version from git: ${batsim_version}")
if(NOT((${batsim_version} STREQUAL "GIT-NOTFOUND") OR
(${batsim_version} STREQUAL "HEAD-HASH-NOTFOUND")))
add_definitions(-DBATSIM_VERSION=${batsim_version})
else()
message(WARNING "Cannot retrieve Batsim version from git. "
"Using default version ${default_batsim_version}")
add_definitions(-DBATSIM_VERSION=${default_batsim_version})
endif()
################
# Source files #
################
## Batsim
file(GLOB batsim_SRC
"src/*.hpp"
"src/*.cpp"
"src/pugixml-1.7/*.hpp"
"src/pugixml-1.7/*.cpp"
"src/docopt/*.cpp"
"src/docopt/*.h")
# Executables
add_executable(batsim ${batsim_SRC})
# Libraries to link
target_link_libraries(batsim
${HAVE_SIMGRID_LIB}
${GMP_LIBRARIES}
${Boost_FILESYSTEM_LIBRARY_DEBUG}
${Boost_LOCALE_LIBRARY_DEBUG}
${Boost_REGEX_LIBRARY_DEBUG}
${Boost_SYSTEM_LIBRARY_DEBUG}
${OPENSSL_LIBRARIES}
${REDOX_LIBRARY}
${LIBEV_LIBRARY}
${HIREDIS_LIBRARY}
${ZMQ_LIBRARIES})
################
# Installation #
################
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/batsim
DESTINATION bin)
# Let's enable warnings if needed
if (enable_warnings)
set(warning_flags " -Wall -Wextra")
if (treat_warnings_as_errors)
set(warning_flags "${warning_flags} -Werror")
endif()
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set_property(TARGET batsim APPEND_STRING PROPERTY COMPILE_FLAGS ${warning_flags})
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set_property(TARGET batsim APPEND_STRING PROPERTY COMPILE_FLAGS ${warning_flags})
else()
message(WARNING "Unknown compiler. Warnings should not be enabled correctly.")
set_property(TARGET batsim APPEND_STRING PROPERTY COMPILE_FLAGS ${warning_flags})
endif()
endif()
# Let's ignore assertions if needed (might improve performance but can be dangerous)
if (ignore_assertions)
target_compile_definitions(batsim PRIVATE NDEBUG)
endif()
###########
# Testing #
###########
enable_testing()
# Execution scripts tests
add_test(exec1_tiny
${CMAKE_SOURCE_DIR}/tools/experiments/execute_one_instance.py
${CMAKE_SOURCE_DIR}/tools/experiments/instance_examples/pybatsim_filler_tiny.yaml
-od /tmp/batsim_tools_tests/exec1/out/instance_examples/pftiny
-wd ${CMAKE_SOURCE_DIR})
add_test(exec1_medium
${CMAKE_SOURCE_DIR}/tools/experiments/execute_one_instance.py
${CMAKE_SOURCE_DIR}/tools/experiments/instance_examples/pybatsim_filler_medium.yaml
-od /tmp/batsim_tools_tests/exec1/out/instance_examples/pfmedium
-wd ${CMAKE_SOURCE_DIR})
add_test(execN
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/tools/experiments/instances_examples/pyfiller_tiny_medium_mixed.yaml
-bod /tmp/batsim_tools_tests/execN
-bwd ${CMAKE_SOURCE_DIR})
add_test(execN_np2
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_no_energy.yaml
-bwd ${CMAKE_SOURCE_DIR}
-bod /tmp/batsim_tools_tests/execN_np2
--nb_workers_per_host 2)
add_test(execN_np4
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_no_energy.yaml
-bwd ${CMAKE_SOURCE_DIR}
-bod /tmp/batsim_tools_tests/execN_np4
--nb_workers_per_host 4)
add_test(execN_np4_remote
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_no_energy.yaml
-bwd ${CMAKE_SOURCE_DIR}
-bod /tmp/batsim_tools_tests/execN_np4_remote
--mpi_hostfile ${CMAKE_SOURCE_DIR}/test/mpi_hostfile_localhost
--nb_workers_per_host 4)
# Batsim tests
add_test(no_energy
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_no_energy.yaml
-bod /tmp/batsim_tests/no_energy
-bwd ${CMAKE_SOURCE_DIR})
add_test(energy
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_energy.yaml
-bod /tmp/batsim_tests/energy
-bwd ${CMAKE_SOURCE_DIR})
add_test(walltime
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_walltime.yaml
-bod /tmp/batsim_tests/walltime
-bwd ${CMAKE_SOURCE_DIR})
add_test(long_simulation_time
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_long_simulation_time.yaml
-bod /tmp/batsim_tests/long_simulation_time
-bwd ${CMAKE_SOURCE_DIR})
add_test(time_sharing
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_time_sharing.yaml
-bod /tmp/batsim_tests/time_sharing
-bwd ${CMAKE_SOURCE_DIR})
add_test(smpi
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_smpi.yaml
-bod /tmp/batsim_tests/smpi
-bwd ${CMAKE_SOURCE_DIR})
add_test(smpi_mapping
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_smpi_mapping.yaml
-bod /tmp/batsim_tests/smpi_mapping
-bwd ${CMAKE_SOURCE_DIR})
add_test(smpi_batexec
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_smpi_batexec.yaml
-bod /tmp/batsim_tests/smpi_batexec
-bwd ${CMAKE_SOURCE_DIR})
add_test(batexec
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_batexec.yaml
-bod /tmp/batsim_tests/batexec
-bwd ${CMAKE_SOURCE_DIR})
add_test(reject
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_reject.yaml
-bod /tmp/batsim_tests/reject
-bwd ${CMAKE_SOURCE_DIR})
add_test(pfs0
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_pfs0.yaml
-bod /tmp/batsim_tests/pfs0
-bwd ${CMAKE_SOURCE_DIR})
add_test(same_submit_time
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_same_submit_time.yaml
-bod /tmp/batsim_tests/same_submit_time
-bwd ${CMAKE_SOURCE_DIR})
add_test(sequence_delay
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_sequence_delay.yaml
-bod /tmp/batsim_tests/sequence_delay
-bwd ${CMAKE_SOURCE_DIR})
add_test(redis_enabled
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_redis_enabled.yaml
-bod /tmp/batsim_tests/redis_enabled
-bwd ${CMAKE_SOURCE_DIR})
add_test(redis_disabled
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_redis_disabled.yaml
-bod /tmp/batsim_tests/redis_disabled
-bwd ${CMAKE_SOURCE_DIR})
add_test(dynamic_submit
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_dynamic_submit.yaml
-bod /tmp/batsim_tests/dynamic_submit
-bwd ${CMAKE_SOURCE_DIR}
--nb_workers_per_host 2)
add_test(kill
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_kill.yaml
-bod /tmp/batsim_tests/kill
-bwd ${CMAKE_SOURCE_DIR})
add_test(kill_multiple
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_kill_multiple.yaml
-bod /tmp/batsim_tests/kill_multiple
-bwd ${CMAKE_SOURCE_DIR})
add_test(kill_progress
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_kill_progress.yaml
-bod /tmp/batsim_tests/kill_progress
-bwd ${CMAKE_SOURCE_DIR})
add_test(pybatsim_tests
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/pybatsim_tests.yaml
-bod /tmp/pybatsim_tests
-bwd ${CMAKE_SOURCE_DIR})
add_test(fewer_resources
${CMAKE_SOURCE_DIR}/tools/experiments/execute_instances.py
${CMAKE_SOURCE_DIR}/test/test_fewer_resources.yaml
-bod /tmp/fewer_resources
-bwd ${CMAKE_SOURCE_DIR})