-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
376 lines (339 loc) · 7.87 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
cmake_minimum_required(VERSION 3.4.1)
project(clockwork)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O2")
set(CXX "g++-8")
set(CC "gcc-8")
set(THREADS_PREFER_PTHREAD_FLAG ON)
set(CMAKE_BUILD_TYPE Release)
#set(CMAKE_BUILD_TYPE Debug)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
find_package(Threads REQUIRED)
find_package(Boost COMPONENTS system filesystem REQUIRED)
# Introduce variables:
# * CMAKE_INSTALL_LIBDIR
# * CMAKE_INSTALL_BINDIR
# * CMAKE_INSTALL_INCLUDEDIR
include(GNUInstallDirs)
include_directories(
include
src
external
$ENV{TVM_HOME}/include
$ENV{TVM_HOME}/3rdparty/dmlc-core/include
$ENV{TVM_HOME}/3rdparty/dlpack/include
/usr/local/cuda/include
${Boost_INCLUDE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
link_directories(
$ENV{TVM_HOME}/build
$ENV{TVM_HOME}/3rdparty/dmlc-core/build
/usr/local/cuda/lib64
/usr/lib/x86_64-linux-gnu/nvidia/current
)
# Build a clockwork_proto lib containing the protobuf stuff
find_package(Protobuf REQUIRED)
include_directories(${Protobuf_INCLUDE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS proto/clockwork.proto)
add_library(clockwork_proto ${PROTO_HDRS} ${PROTO_SRCS})
target_link_libraries(clockwork_proto INTERFACE ${Protobuf_LIBRARIES})
add_library( clockwork
external/lz4.c
external/lz4hc.c
src/clockwork/client.cpp
src/clockwork/task.cpp
src/clockwork/modeldef.cpp
src/clockwork/common.cpp
src/clockwork/cache.cpp
src/clockwork/util.cpp
src/clockwork/action.cpp
src/clockwork/runtime.cpp
src/clockwork/memory.cpp
src/clockwork/worker.cpp
src/clockwork/thread.cpp
src/clockwork/model/memfile.cpp
src/clockwork/model/model.cpp
src/clockwork/model/batched.cpp
src/clockwork/model/cuda.cpp
src/clockwork/model/so.cpp
src/clockwork/api/client_api.cpp
src/clockwork/api/worker_api.cpp
src/clockwork/network/network.cpp
src/clockwork/network/client_api.cpp
src/clockwork/network/worker.cpp
src/clockwork/network/controller.cpp
src/clockwork/controller/controller.cpp
src/clockwork/controller/load_tracker.cpp
src/clockwork/controller/direct_controller.cpp
src/clockwork/controller/scheduler.cpp
src/clockwork/controller/smart_scheduler.cpp
src/clockwork/controller/concurrent_infer_and_load_scheduler.cpp
src/clockwork/controller/infer5/load_tracker.cpp
src/clockwork/controller/infer5/infer5_scheduler.cpp
src/clockwork/config.cpp
src/clockwork/network/client.cpp
src/clockwork/workload/workload.cpp
src/clockwork/telemetry/telemetry.cpp
src/clockwork/dummy/memory_dummy.cpp
src/clockwork/dummy/action_dummy.cpp
src/clockwork/dummy/worker_dummy.cpp
src/clockwork/dummy/network/worker_dummy.cpp
$ENV{TVM_HOME}/src/runtime/meta_data.h
### No point maintaining the below any more
# src/clockwork/alternatives/runtime_model.cpp
# src/clockwork/alternatives/model_manager.cpp
# src/clockwork/alternatives/threadpoolruntime.cpp
# src/clockwork/alternatives/greedyruntime.cpp
# src/clockwork/alternatives/worker.cpp
)
target_link_libraries( clockwork PUBLIC
clockwork_proto
cuda
cudart
tvm_runtime
tbb
nvidia-ml
config++
rt
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Converts from TVM models to clockwork models
include_directories(clockwork-convert)
add_executable (convert
src/clockwork-convert/tvm_model.cpp
src/clockwork-convert/tvm_abstract_model.cpp
src/clockwork-convert/convert.cpp
)
target_link_libraries( convert
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
tbb
nvidia-ml
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# cudafatbin is temporary / hacky
add_executable (cudafatbin src/clockwork-convert/cudafatbin.cc )
target_link_libraries( cudafatbin
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
tbb
nvidia-ml
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
add_executable (check_model
src/check_model.cpp
)
target_link_libraries( check_model
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
tbb
nvidia-ml
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Inflate telemetry files from binary to human-readable
add_executable (inflate src/inflate.cpp )
target_link_libraries( inflate
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
tbb
nvidia-ml
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# All tests
include_directories(test)
add_executable (tests
test/tests.cpp
test/clockwork/test/util.cpp
test/clockwork/test/actions.cpp
test/clockwork/test/testtask.cpp
test/clockwork/test/testaction.cpp
test/clockwork/test/testworker.cpp
test/clockwork/test/testcache.cpp
test/clockwork/test/testmemory.cpp
test/clockwork/test/testpriorityqueue.cpp
test/clockwork/test/testclient.cpp
test/clockwork/test/testtelemetry.cpp
test/clockwork/test/testnetwork.cpp
test/clockwork/test/testconfig.cpp
test/clockwork/test/testutil.cpp
test/clockwork/test/model/testmodel.cpp
test/clockwork/test/model/testbatched.cpp
test/clockwork/test_dummy/actions.cpp
test/clockwork/test_dummy/testaction.cpp
test/clockwork/test_dummy/testworker.cpp
test/clockwork/test_dummy/testmemory.cpp
)
target_link_libraries( tests
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
tbb
nvidia-ml
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Like tests, but does profiling
add_executable ( profile
profile/profile.cpp
test/clockwork/test/util.cpp
profile/clockwork/profile/check.cpp
profile/clockwork/profile/compression.cpp
profile/clockwork/profile/model/profilecuda.cpp
profile/clockwork/profile/model/profilemodel.cpp
### No point maintaining the below any more
# profile/clockwork/profile/alternatives/profilegreedy.cpp
)
target_link_libraries( profile
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
tbb
nvidia-ml
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Standalone clockwork worker
add_executable (worker src/worker.cpp )
target_link_libraries(
worker
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
add_executable (worker_dummy src/worker_dummy.cpp )
target_link_libraries(
worker_dummy
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Standalone clockwork controller
add_executable (controller src/controller.cpp )
target_link_libraries(
controller
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Standalone clockwork workload generating client
add_executable (client src/client.cpp )
target_link_libraries(
client
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Simple Clockwork client demonstrating usage
add_executable (simpleclient src/simpleclient.cpp )
target_link_libraries(
simpleclient
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Spams the client API
add_executable (netclient src/network/netclient.cpp )
target_link_libraries(
netclient
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)
# Echo server for netclient
add_executable (netcontroller src/network/netcontroller.cpp )
target_link_libraries(
netcontroller
clockwork
clockwork_proto
Threads::Threads
dl
cuda
cudart
tvm_runtime
stdc++fs
${Boost_SYSTEM_LIBRARY}
${Boost_FILESYSTEM_LIBRARY}
)