-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
518 lines (482 loc) · 17.7 KB
/
.gitlab-ci.yml
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
stages:
- build # Builds all projects
- run # Runs the tests across architectures
- test # Runs various tests of the software
- publish # Publishes the results of the tests and runs in channels and grafana
check-formatting:
stage: build
image: ubuntu:latest
script:
- apt update && apt install -y clang-format-8 python-pip git curl
- pip install yapf==0.24.0 whichcraft
- if [ ! -e .clang-format ] ; then
- curl -o .clang-format "https://gitlab.cern.ch/lhcb-parallelization/Allen/raw/master/.clang-format?inline=false"
- echo '.clang-format' >> .gitignore
- git add .gitignore
- fi
- curl -o lb-format "https://gitlab.cern.ch/lhcb-core/LbDevTools/raw/master/LbDevTools/SourceTools.py?inline=false"
- python lb-format --format-patch apply-formatting.patch origin/master
artifacts:
paths:
- apply-formatting.patch
when: on_failure
expire_in: 1 week
allow_failure: true
.build_job: &build_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: build
script:
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- TARGET=${JOB_NAME_SPLIT[0]}
- SEQUENCE=${JOB_NAME_SPLIT[1]}
- BUILD_TYPE=${JOB_NAME_SPLIT[2]}
- ADDITIONAL_OPTIONS=${JOB_NAME_SPLIT[3]}
- BUILD_ARCH_FLAG="-gencode arch=compute_75,code=sm_75 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_30,code=sm_30"
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir build_${TARGET}
- cd build_${TARGET}
- cmake -DTARGET_${TARGET}=ON -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSEQUENCE=${SEQUENCE} -DOVERRIDE_ARCH_FLAG="${BUILD_ARCH_FLAG}" -DCPU_ARCH="ivybridge" ${ADDITIONAL_OPTIONS} ..
- make -j
artifacts:
expire_in: 2 hrs
paths:
- build*/*Allen*
- input
retry: 1
.build_job: &build_test_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: build
script:
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- TARGET=${JOB_NAME_SPLIT[0]}
- SEQUENCE=${JOB_NAME_SPLIT[1]}
- BUILD_TYPE=${JOB_NAME_SPLIT[2]}
- ADDITIONAL_OPTIONS=${JOB_NAME_SPLIT[3]}
- BUILD_ARCH_FLAG="-gencode arch=compute_75,code=sm_75 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_30,code=sm_30"
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir build_${TARGET}
- cd build_${TARGET}
- cmake -DBUILD_TESTS=ON -DTARGET_${TARGET}=ON -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSEQUENCE=${SEQUENCE} -DOVERRIDE_ARCH_FLAG="${BUILD_ARCH_FLAG}" -DCPU_ARCH="ivybridge" ${ADDITIONAL_OPTIONS} ..
- make -j
artifacts:
expire_in: 2 hrs
paths:
- build*/*
- input
retry: 1
.build_clang_job: &build_clang_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: build
script:
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- TARGET=${JOB_NAME_SPLIT[0]}
- SEQUENCE=${JOB_NAME_SPLIT[1]}
- BUILD_TYPE=${JOB_NAME_SPLIT[2]}
- ADDITIONAL_OPTIONS=${JOB_NAME_SPLIT[3]}
- BUILD_ARCH_FLAG="-gencode arch=compute_75,code=sm_75 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_30,code=sm_30"
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- source /cvmfs/sft.cern.ch/lcg/releases/clang/8.0.0.1/x86_64-centos7/setup.sh
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir build_${TARGET}
- cd build_${TARGET}
- cmake -DTARGET_${TARGET}=ON -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSEQUENCE=${SEQUENCE} -DOVERRIDE_ARCH_FLAG="${BUILD_ARCH_FLAG}" -DCPU_ARCH="ivybridge" ${ADDITIONAL_OPTIONS} ..
- make -j
artifacts:
expire_in: 2 hrs
paths:
- build*/*Allen*
- input
retry: 1
.run_physics_efficiency_job: &run_physics_efficiency_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: run
script:
- TOPLEVEL=${PWD}
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- declare -A DEVICE_MEMORY_MAP=${DEVICE_MEMORY}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- DEVICE_ID=${JOB_NAME_SPLIT[0]}
- TARGET=${JOB_NAME_SPLIT[1]}
- SEQUENCE=${JOB_NAME_SPLIT[2]}
- D_NUMBER=${DEVICE_NUMBERS_MAP[${DEVICE_ID}]}
- RUN_OPTIONS="-n 1000 -m 700"
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir validation_output
- ln -s validation_output output # Needed by Root build
- cd build_${TARGET}
- ls
- export LD_LIBRARY_PATH=${PWD}:$LD_LIBRARY_PATH
- CUDA_VISIBLE_DEVICES=${D_NUMBER} ./Allen -f /scratch/dcampora/allen_data/201907/bsphiphi_mag_down ${RUN_OPTIONS} 2>&1 | tee ../validation_output/bsphiphi_${DEVICE_ID}.txt
artifacts:
expire_in: 2 hrs
paths:
- validation_output/*
allow_failure: true
retry: 1
.run_throughput_job_no_profiling: &run_throughput_job_no_profiling_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: run
script:
- TOPLEVEL=${PWD}
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- declare -A DEVICE_MEMORY_MAP=${DEVICE_MEMORY}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- DEVICE_ID=${JOB_NAME_SPLIT[0]}
- TARGET=${JOB_NAME_SPLIT[1]}
- SEQUENCE=${JOB_NAME_SPLIT[2]}
- D_NUMBER=${DEVICE_NUMBERS_MAP[${DEVICE_ID}]}
- D_MEMORY=${DEVICE_MEMORY_MAP[${DEVICE_ID}]}
- RUN_OPTIONS="-n 1000 -m 700 -r 100 -t 12 -c 0"
- if [ "${D_MEMORY}" = "LOW" ]; then
- RUN_OPTIONS="-n 1000 -r 100 -t 2 -m 700 -c 0"
- fi
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir output_${DEVICE_ID}
- cd build_${TARGET}
- ls
- export LD_LIBRARY_PATH=${PWD}:$LD_LIBRARY_PATH
- CUDA_VISIBLE_DEVICES=${D_NUMBER} ./Allen -f /localdisk/shared/201907/minbias_mag_down ${RUN_OPTIONS} 2>&1 | tee ../output_${DEVICE_ID}/output.txt
artifacts:
expire_in: 2 hrs
paths:
- output_*
allow_failure: true
retry: 1
.run_throughput_job_no_profiling_cpu: &run_throughput_job_no_profiling_def_cpu
only:
refs:
- master
- schedules
- web
- merge_requests
stage: run
script:
- TOPLEVEL=${PWD}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- DEVICE_ID=${JOB_NAME_SPLIT[0]}
- TARGET=${JOB_NAME_SPLIT[1]}
- SEQUENCE=${JOB_NAME_SPLIT[2]}
- THREADS=$(lscpu | egrep "^CPU\(s\):.*[0-9]+$" --color=none | awk '{ print $2; }')
- RUN_OPTIONS="-n 1000 -m 700 -r 10 -t ${THREADS} -c 0" # If we ever execute on other CPUs we'll have to set this configurable
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir output_${DEVICE_ID}
- cd build_${TARGET}
- ls
- export LD_LIBRARY_PATH=${PWD}:$LD_LIBRARY_PATH
- ./Allen -f /localdisk/shared/201907/minbias_mag_down ${RUN_OPTIONS} 2>&1 | tee ../output_${DEVICE_ID}/output.txt
artifacts:
expire_in: 2 hrs
paths:
- output_*
allow_failure: true
retry: 1
.run_throughput_job: &run_throughput_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: run
script:
- TOPLEVEL=${PWD}
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- declare -A DEVICE_MEMORY_MAP=${DEVICE_MEMORY}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- DEVICE_ID=${JOB_NAME_SPLIT[0]}
- TARGET=${JOB_NAME_SPLIT[1]}
- SEQUENCE=${JOB_NAME_SPLIT[2]}
- D_NUMBER=${DEVICE_NUMBERS_MAP[${DEVICE_ID}]}
- D_MEMORY=${DEVICE_MEMORY_MAP[${DEVICE_ID}]}
- RUN_OPTIONS="-n 1000 -m 700 -r 100 -t 12 -c 0"
- if [ "${D_MEMORY}" = "LOW" ]; then
- RUN_OPTIONS="-n 1000 -r 100 -t 2 -m 700 -c 0"
- fi
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- mkdir output_${DEVICE_ID}
- cd build_${TARGET}
- ls
- export LD_LIBRARY_PATH=${PWD}:$LD_LIBRARY_PATH
- CUDA_VISIBLE_DEVICES=${D_NUMBER} ./Allen -f /localdisk/shared/201907/minbias_mag_down ${RUN_OPTIONS} 2>&1 | tee ../output_${DEVICE_ID}/output.txt
- CUDA_VISIBLE_DEVICES=${D_NUMBER} nvprof ./Allen -f /localdisk/shared/201907/minbias_mag_down ${RUN_OPTIONS} 2>&1 | tee ../output_${DEVICE_ID}/profiler_output.txt
- python3 ${TOPLEVEL}/checker/plotting/extract_algo_breakdown.py -d ${TOPLEVEL}
artifacts:
expire_in: 2 hrs
paths:
- output_*
allow_failure: true
retry: 1
.throughput_cli_plot_job: &publish_algo_breakdown_plot_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: publish
script:
- declare -A DEVICE_NUMBERS_MAP=${DEVICE_NUMBERS}
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- DEVICE_ID=${JOB_NAME_SPLIT[0]}
- SEQUENCE=${JOB_NAME_SPLIT[1]}
- D_NUMBER=${DEVICE_NUMBERS_MAP[${DEVICE_ID}]}
- source /cvmfs/sft.cern.ch/lcg/views/setupViews.sh LCG_95apython3 x86_64-centos7-gcc8-opt
- export PATH=/usr/local/cuda/bin:/cvmfs/sft.cern.ch/lcg/contrib/CMake/3.14.2/Linux-x86_64/bin:$PATH
- python3 checker/plotting/csv_plotter.py -t "Algorithm Breakdown of sequence __${SEQUENCE}__, branch _${CI_COMMIT_REF_NAME}_" -u "%" -x 30 -m ${MATTERMOST_KEY} output_${DEVICE_ID}/algo_breakdown.csv
# - python3 checker/plotting/csv_plotter.py -t "Algorithm Groups of sequence __${SEQUENCE}__, branch _${CI_COMMIT_REF_NAME}_" -u "%" -m ${MATTERMOST_KEY} output_${DEVICE_ID}/algo_summary.csv
test_physics_efficiency:
only:
refs:
- master
- schedules
- web
- merge_requests
stage: test
script:
- TOPLEVEL=${PWD}
- ls validation_output
- ls ${TOPLEVEL}/test/reference
- cd validation_output
- for i in $( ls ); do echo "Checking ${i}"; tail -n133 ${i} | head -n129 > efficiency_${i}; colordiff ${TOPLEVEL}/test/reference/${i} efficiency_${i} | tee ${i}_diff || true; done
- cat *_diff > alldiffs
- if [ -s alldiffs ]; then echo "Differences were found against reference files."; exit 1; else echo "No differences found against reference files."; exit 0; fi
dependencies:
- t4:CUDA:DefaultSequence:run_physics_efficiency
- x862630v4:CPU:DefaultSequence:run_physics_efficiency
tags:
- rtx6000 # Note: colordiff must be installed
allow_failure: true
# run_built_tests:
# only:
# refs:
# - master
# - schedules
# - web
# - merge_requests
# stage: test
# script:
# - cd build_CUDA
# - ctest -V
# dependencies:
# - CUDA:DefaultSequence:Debug::build
# allow_failure: true
.publish_throughput_job: &publish_throughput_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: publish
script:
- PREVIOUS_IFS=${IFS}
- IFS=':' read -ra JOB_NAME_SPLIT <<< "${CI_JOB_NAME}"
- IFS=${PREVIOUS_IFS}
- SEQUENCE=${JOB_NAME_SPLIT[1]}
- BREAKDOWN_DEVICE_ID=${JOB_NAME_SPLIT[2]}
- cat output_*/output.txt | grep --color=none "device" | sed 's/.*:\ [0-9]*\,\ //' > devices.txt
- cat output_*/output.txt | grep --color=none "events/s" | awk '{ print $1; }' > throughputs.txt
- cat devices.txt
- cat throughputs.txt
- paste -d, devices.txt throughputs.txt > devices_throughputs.csv
- cat devices_throughputs.csv
- python3 checker/plotting/post_combined_message.py -l "Throughput of [sequence __${SEQUENCE}__, branch _${CI_COMMIT_REF_NAME}_](https://gitlab.cern.ch/lhcb/Allen/pipelines/${CI_PIPELINE_ID})" -m ${MATTERMOST_KEY} -t devices_throughputs.csv -b output_${BREAKDOWN_DEVICE_ID}/algo_breakdown.csv
# - python3 checker/plotting/csv_plotter.py -t "Throughput of sequence __${SEQUENCE}__, branch _${CI_COMMIT_REF_NAME}_" -u "kHz" -x 70 -s 1e-3 -m ${MATTERMOST_KEY} devices_throughputs.csv
- python3 checker/plotting/post_telegraf.py -d . -s ${SEQUENCE} -b ${CI_COMMIT_REF_NAME}
.throughput_speedup_job: &publish_speedup_job_def
only:
refs:
- master
- schedules
- web
- merge_requests
stage: publish
script:
- cat output_*/output.txt | grep --color=none "device" | sed 's/.*:\ [0-9]*\,\ //' > devices.txt
- cat output_*/output.txt | grep --color=none "events/s" | awk '{ print $1; }' > throughputs.txt
- cat devices.txt
- cat throughputs.txt
- paste -d, devices.txt throughputs.txt > devices_throughputs.csv
- cat devices_throughputs.csv
- python3 checker/plotting/csv_plotter.py -n -t "Speedup across GPUs, branch _${CI_COMMIT_REF_NAME}_" -u "x" -x 30 -m ${MATTERMOST_KEY} devices_throughputs.csv
# Build for all platforms
CUDA:DefaultSequence:RelWithDebInfo::build:
<<: *build_job_def
tags:
- cuda
CUDA:DefaultSequence:Debug::build:
<<: *build_test_job_def
tags:
- cuda
CUDA:DefaultSequence:Debug:-DUSE_ROOT=ON:build:
<<: *build_job_def
tags:
- cuda
CPU:DefaultSequence:RelWithDebInfo::build_x86:
<<: *build_job_def
tags:
- x86
CPU:DefaultSequence:RelWithDebInfo::build_x86_clang:
<<: *build_clang_job_def
tags:
- x86
# Run on all platforms
# Performance runs
rtx2080tifan:CUDA:DefaultSequence:run_throughput:
<<: *run_throughput_job_def
tags:
- rtx2080tifan
dependencies:
- CUDA:DefaultSequence:RelWithDebInfo::build
rtx6000:CUDA:DefaultSequence:run_throughput:
<<: *run_throughput_job_no_profiling_def
tags:
- rtx6000
dependencies:
- CUDA:DefaultSequence:RelWithDebInfo::build
v100:CUDA:DefaultSequence:run_throughput:
<<: *run_throughput_job_no_profiling_def
tags:
- v100
dependencies:
- CUDA:DefaultSequence:RelWithDebInfo::build
t4:CUDA:DefaultSequence:run_throughput:
<<: *run_throughput_job_no_profiling_def
tags:
- t4
dependencies:
- CUDA:DefaultSequence:RelWithDebInfo::build
# gtx10606g:CUDA:DefaultSequence:run_throughput:
# <<: *run_throughput_job_no_profiling_def
# tags:
# - gtx10606g
# dependencies:
# - CUDA:DefaultSequence:RelWithDebInfo::build
# gtx680:CUDA:DefaultSequence:run_throughput:
# <<: *run_throughput_job_no_profiling_def
# tags:
# - gtx680
# dependencies:
# - CUDA:DefaultSequence:RelWithDebInfo::build
# gtxtitanx:CUDA:DefaultSequence:run_throughput:
# <<: *run_throughput_job_no_profiling_def
# tags:
# - gtxtitanx
# dependencies:
# - CUDA:DefaultSequence:RelWithDebInfo::build
x862630v4:CPU:DefaultSequence:run_throughput_cpu:
<<: *run_throughput_job_no_profiling_def_cpu
tags:
- x862630v4
dependencies:
- CPU:DefaultSequence:RelWithDebInfo::build_x86
# gtx670:CUDA:DefaultSequence:run_throughput:
# <<: *run_throughput_job_no_profiling_def
# tags:
# - gtx670
# dependencies:
# - CUDA:DefaultSequence:RelWithDebInfo::build
# gtx1080ti:CUDA:DefaultSequence:run_throughput:
# <<: *run_throughput_job_no_profiling_def
# tags:
# - gtx1080ti
# dependencies:
# - CUDA:DefaultSequence:RelWithDebInfo::build
# Physics runs
t4:CUDA:DefaultSequence:run_physics_efficiency:
<<: *run_physics_efficiency_job_def
tags:
- t4
dependencies:
- CUDA:DefaultSequence:RelWithDebInfo::build
x862630v4:CPU:DefaultSequence:run_physics_efficiency:
<<: *run_physics_efficiency_job_def
tags:
- x862630v4
dependencies:
- CPU:DefaultSequence:RelWithDebInfo::build_x86
gpu0:CUDA:DefaultSequence:run_physics_efficiency_debug:
<<: *run_physics_efficiency_job_def
tags:
- cuda
dependencies:
- CUDA:DefaultSequence:Debug::build
gpu0:CUDA:DefaultSequence:run_physics_efficiency_debug_root:
<<: *run_physics_efficiency_job_def
tags:
- cuda
dependencies:
- CUDA:DefaultSequence:Debug:-DUSE_ROOT=ON:build
# Publish
# Plain results to mattermost
# rtx2080tifan:DefaultSequence:publish_algo_breakdown_plot:
# <<: *publish_algo_breakdown_plot_def
# tags:
# - gpu
# dependencies:
# - rtx2080tifan:CUDA:DefaultSequence:run_throughput
throughput:DefaultSequence:rtx2080tifan:publish_throughput:
<<: *publish_throughput_job_def
tags:
- gpu
dependencies:
- rtx2080tifan:CUDA:DefaultSequence:run_throughput
- rtx6000:CUDA:DefaultSequence:run_throughput
- v100:CUDA:DefaultSequence:run_throughput
- t4:CUDA:DefaultSequence:run_throughput
- x862630v4:CPU:DefaultSequence:run_throughput_cpu
# - gtx1080ti:CUDA:DefaultSequence:run_throughput
# - gtxtitanx:CUDA:DefaultSequence:run_throughput
# - gtx670:CUDA:DefaultSequence:run_throughput
# - gtx10606g:CUDA:DefaultSequence:run_throughput
# - gtx680:CUDA:DefaultSequence:run_throughput