forked from sogno-platform/dpsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
559 lines (522 loc) · 15.1 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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
variables:
GIT_STRATEGY: fetch
GIT_SUBMODULE_STRATEGY: recursive
RSYNC_OPTS: --recursive --ignore-missing-args --chown ${DEPLOY_USER}:${DEPLOY_USER}
DOCKER_IMAGE: sogno/dpsim
DOCKER_IMAGE_DEV: sogno/dpsim-dev
DOCKER_IMAGE_DEV_ROCKY: sogno/dpsim-dev-rocky
MAKE_OPTS: -j16 # for HYPER buildbots
stages:
- prepare
- build
- test
- generate
# - deploy
# moved to github actions
#.docker-fedora-template: &docker-fedora-template
# stage: prepare
# image: docker:20.10
# needs: []
# script:
# - docker build
# --build-arg MAKE_OPTS=${MAKE_OPTS}
# --file packaging/Docker/Dockerfile.dev
# ${TAGS}
# ${BUILD_ARGS} .
# tags:
# - docker
#
#docker:fedora-cgmes:
# <<: *docker-fedora-template
# variables:
# TAGS: --tag ${DOCKER_IMAGE_DEV}:${CI_COMMIT_REF_NAME}-cgmes --tag ${DOCKER_IMAGE_DEV}:latest
# BUILD_ARGS: --build-arg CIM_VERSION=CGMES_2.4.15_16FEB2016
# CGMES is the preferred CIM flavor
#docker:fedora-cim:
# <<: *docker-fedora-template
# variables:
# TAGS: --tag ${DOCKER_IMAGE_DEV}:${CI_COMMIT_REF_NAME}-cim
# BUILD_ARGS: --build-arg CIM_VERSION=IEC61970_16v29a
docker:rocky:
stage: prepare
needs: []
script:
- docker build .
--build-arg MAKE_OPTS=${MAKE_OPTS}
--file packaging/Docker/Dockerfile.dev-rocky
--tag ${DOCKER_IMAGE_DEV_ROCKY}:${CI_COMMIT_REF_NAME}
tags:
- docker
# moved to github actions
#build:linux-cgmes:
# stage: build
# needs: ["docker:fedora-cgmes"]
# script:
# - mkdir -p build
# - cd build
# - cmake -DCIM_VERSION=CGMES_2.4.15_16FEB2016 ..
# - make -j 32
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}-cgmes
# cache:
# artifacts:
# paths:
# - build
# tags:
# - docker
# CGMES is the preferred CIM flavor
#build:linux-cim:
# stage: build
# needs: ["docker:fedora-cim"]
# script:
# - mkdir -p build
# - cd build
# - cmake -DCIM_VERSION=IEC61970_16v29a ..
# - make -j 32
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}-cim
# cache:
# paths:
# - build
# key: build-linux
# tags:
# - docker
# moved to github actions
#build:linux-profiling:
# stage: build
# needs: ["docker:centos"]
# script:
# - mkdir -p build
# - cd build
# - cmake -DWITH_PROFILING=ON -DWITH_ASAN=ON -DWITH_CUDA=OFF -DFETCH_SPDLOG=ON ..
# - make -j 32
# image: ${DOCKER_IMAGE_DEV}-centos:${DOCKER_TAG}
# cache:
# artifacts:
# paths:
# - build
# tags:
# - docker
build:linux-cuda:
stage: build
needs: ["docker:rocky"]
image: ${DOCKER_IMAGE_DEV_ROCKY}:${CI_COMMIT_REF_NAME}
artifacts:
paths:
- build
tags:
- docker
script:
- mkdir -p build
- cd build
- cmake -DWITH_CUDA=ON -DWITH_SPARSE=ON -DFETCH_SPDLOG=ON -DWITH_MAGMA=ON ..
- make ${MAKE_OPTS}
cache:
# moved to GitHub actions
#build:windows:
# stage: build
# needs: []
# script:
# - New-Item -ItemType Directory -Force -Path build
# - Set-Location -Path build
# - cmake ..
# - cmake --build . -j 24
# moved to GitHub actions
#build:docker:
# stage: build
# needs: []
# script:
# - docker build
# --file packaging/Docker/Dockerfile
# --build-arg DOCKER_TAG=${DOCKER_TAG}
# --build-arg MAKE_OPTS=${MAKE_OPTS}
# --tag ${DOCKER_IMAGE}:${DOCKER_TAG}
# --tag ${DOCKER_IMAGE}:latest .
# tags:
# - docker
# only:
# - tags
#build:macos:
# stage: build
# script:
# - mkdir -p build
# - cd build
# - cmake -DCMAKE_C_COMPILER=/usr/local/bin/gcc-9
# -DCMAKE_CXX_COMPILER=/usr/local/bin/g++-9
# -DFETCH_CIMPP=ON
# -DWITH_SUNDIALS=OFF ..
# - make -j $(sysctl -n hw.ncpu)
# cache:
# paths:
# - build
# key: build-macos
# artifacts:
# paths:
# - build
# tags:
# - mac
#test:pytest:
# stage: test
# variables:
# PYTHONPATH: "build/Source/Python:Source/Python"
# script:
# - pytest -v examples/CIM/test_CIM.yml
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}
# dependencies:
# - build:linux
# tags:
# - docker
##############################################################################
# Stage test
##############################################################################
# moved to GitHub actions
#test:jupyter-cgmes:
# stage: test
# needs: ["build:linux-cgmes"]
# variables:
# PYTHONPATH: "build:build/Source/Python:Source/Python"
# script:
# - pytest -v examples/Notebooks
# dependencies:
# - build:linux-cgmes
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}-cgmes
# tags:
# - docker
# artifacts:
# paths:
# - outputs/examples/Notebooks/
#
#test:cppcheck 1/2:
# stage: test
# needs: ["docker:centos"]
# script:
# - set -o pipefail
# - cppcheck --max-configs=32 -j 32 --error-exitcode=1 -q --std=c++11 -I Include/ -I models/Include/ Source/ examples/ models/Source/ | tee cppcheck-error.log
# image: ${DOCKER_IMAGE_DEV}-centos:${DOCKER_TAG}
# dependencies:
# - docker:centos
# tags:
# - docker
# artifacts:
# when: on_failure
# paths:
# - cppcheck-error.log
# expose_as: 'cppcheck-error'
#
#test:cppcheck 2/2:
# stage: test
# needs: ["docker:centos"]
# allow_failure: true
# script:
# - set -o pipefail
# - cppcheck --max-configs=32 -j 32 --error-exitcode=1 -q --enable=warning,performance,portability,information,missingInclude --std=c++11 -I Include/ -I models/Include/ Source/ examples/ models/Source/ | tee cppcheck-warn.log
# image: ${DOCKER_IMAGE_DEV}-centos:${DOCKER_TAG}
# dependencies:
# - docker:centos
# tags:
# - docker
# artifacts:
# when: on_failure
# paths:
# - cppcheck-warn.log
# expose_as: 'cppcheck-warn'
#
#.test-examples:
# stage: test
# needs: ["build:linux-profiling"]
# script:
# - $TEST_BINARY_PATH/$TEST_BINARY $TEST_PARAM 2>&1 | tee output.log
# - cat output.log |
# sed -n -E -e 's/^.*Average step time. ([0-9]+\.[0-9]+)$/step-time \1/p' |
# tee -a metrics.txt
# - gprof $TEST_BINARY_PATH/$TEST_BINARY | gprof2dot -s | dot -Tpng -o profiling.png || true
# image: ${DOCKER_IMAGE_DEV}-centos:${DOCKER_TAG}
# dependencies:
# - build:linux-profiling
# tags:
# - docker
# artifacts:
# reports:
# metrics: metrics.txt
# paths:
# - profiling.png
# expose_as: 'test-examples'
#
#test:examples 1/2:
# extends: .test-examples
# variables:
## Name of the test binary
# TEST_BINARY: 'WSCC_9bus_mult_decoupled'
## Path where the test binary is located
# TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
## Command line parameters for the test binary
# TEST_PARAM: ''
#
#test:examples 2/2:
# extends: .test-examples
# variables:
## Name of the test binary
# TEST_BINARY: 'WSCC_9bus_mult_coupled'
## Path where the test binary is located
# TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
## Command line parameters for the test binary
# TEST_PARAM: ''
.benchmark-script: &benchmark-script |
for ((copies=0;copies<=$TEST_NUM_COPIES;copies++))
do
echo "Running with $copies copies"
$TEST_BINARY_PATH/$TEST_BINARY $TEST_PARAM -o copies=$copies 2>&1 | tee output.log
cat output.log |
sed -n -E -e 's/^.*Average step time. ([0-9]+\.[0-9]+)$/\1/p' |
tee -a ${METRICS_ID}-metrics.txt
done
.benchmark-step-times:
stage: test
script:
- *benchmark-script
image: ${DOCKER_IMAGE_DEV_ROCKY}:${CI_COMMIT_REF_NAME}
tags:
- docker
test:solver-benchmark 1/2:
extends: .benchmark-step-times
needs: ["build:linux-cuda"]
dependencies:
- build:linux-cuda
variables:
# Metrics-filename
METRICS_ID: 'cpu-dense'
# Name of the test binary
TEST_BINARY: 'WSCC_9bus_mult_coupled'
# Path where the test binary is located
TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
# Up to how many copies should be benchmarked (WSCC_9bus - Example)
TEST_NUM_COPIES: 6
TEST_PARAM: "-U EigenDense"
artifacts:
reports:
metrics: cpu-dense-metrics.txt
paths:
- cpu-dense-metrics.txt
expose_as: 'step-times-benchmark'
test:solver-benchmark 2/2:
extends: .benchmark-step-times
needs: ["build:linux-cuda"]
dependencies:
- build:linux-cuda
variables:
# Metrics-filename
METRICS_ID: 'cpu-sparse'
# Name of the test binary
TEST_BINARY: 'WSCC_9bus_mult_coupled'
# Path where the test binary is located
TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
# Up to how many copies should be benchmarked (WSCC_9bus - Example)
TEST_NUM_COPIES: 6
TEST_PARAM: "-U EigenSparse"
artifacts:
reports:
metrics: cpu-sparse-metrics.txt
paths:
- cpu-sparse-metrics.txt
expose_as: 'step-times-benchmark'
.gpu-init-script: &gpu-init-script |
mkdir ~/.ssh &&
echo "-----BEGIN OPENSSH PRIVATE KEY-----" > ~/.ssh/id_rsa &&
echo $SSH_PRIVATE | sed "s/\S\{64\}/&\n/g" >> ~/.ssh/id_rsa &&
echo "-----END OPENSSH PRIVATE KEY-----" >> ~/.ssh/id_rsa &&
echo $SSH_PUBLIC > ~/.ssh/id_rsa.pub &&
echo $KNOWN_HOSTS > ~/.ssh/known_hosts && chmod 600 ~/.ssh/id_rsa
echo "$TEST_BINARY_PATH/$TEST_BINARY $TEST_FILES" | tr -d '\n' | xargs -r -d " " -I % cp % $LDIR
ldd $LDIR/$TEST_BINARY |
sed -n -E -e 's/^\s+\S+ => (\S+) \S+$/\1/p' |
grep -Ev "$(echo $REMOTE_LIBS | tr ' ' '|')|not" |
xargs -I % cp % $LDIR/
ssh $GPU_TARGET mkdir -p $RDIR
scp -r $LDIR/* $GPU_TARGET:$RDIR/
.gpu-run-script: &gpu-run-script |
ssh $GPU_TARGET "LD_LIBRARY_PATH=$RDIR:${LD_LIBRARY_PATH} LD_PRELOAD=$RDIR/cricket-server.so $RDIR/$TEST_BINARY" &
sleep 2
PATH=$LDIR:${PATH} REMOTE_GPU_ADDRESS=ghost.acs-lab.eonerc.rwth-aachen.de LD_PRELOAD=$LDIR/cricket-client.so $TEST_BINARY_PATH/$TEST_BINARY $TEST_PARAM 2>&1 | tee output.log
cat output.log |
sed -n -E -e 's/^.*Average step time. ([0-9]+\.[0-9]+)$/\1/p' |
tee -a ${METRICS_ID}-metrics.txt
.remote-gpu:
stage: test
variables:
GPU_TARGET: 'gitlab-runner@ghost'
RDIR: '/tmp/gitlab-jobs/$CI_PROJECT_NAME/$CI_JOB_ID'
CI_DIR: '$CI_BUILDS_DIR/$CI_PROJECT_PATH'
LDIR: '/cricket/bin'
TEST_FILES: ''
TEST_PARAM: ''
REMOTE_LIBS: 'linux-vdso.so.1
librt.so.1
libdl.so.2
libcudart.so.10.2
libcusolver.so.10
libstdc\+\+.so.6
libm.so.6
libgcc_s.so.1
libc.so.6
/lib64/ld-linux-x86-64.so.2
libutil.so.1
libpthread.so.0'
script:
- *gpu-init-script
- *gpu-run-script
after_script:
- ssh $GPU_TARGET rm -rf $RDIR
- ssh $GPU_TARGET pkill -fe -2 $RDIR/$TEST_BINARY
image: ${DOCKER_IMAGE_DEV_ROCKY}:${CI_COMMIT_REF_NAME}
tags:
- docker
test:cuda 1/3:
extends: .remote-gpu
needs: ["build:linux-cuda"]
dependencies:
- build:linux-cuda
variables:
# Metrics-filename
METRICS_ID: 'cuda'
# Name of the test binary
TEST_BINARY: 'WSCC_9bus_mult_coupled'
# Path where the test binary is located
TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
# Additional files that are necessary to run the application on the GPU node
TEST_FILE: ''
# Command line parameters for the test binary
TEST_PARAM: "-U CUDADense"
artifacts:
reports:
metrics: cuda-metrics.txt
paths:
- cuda-metrics.txt
expose_as: 'step-times-benchmark'
test:cuda 2/3:
extends: .remote-gpu
needs: ["build:linux-cuda"]
dependencies:
- build:linux-cuda
allow_failure: true
variables:
# Metrics-filename
METRICS_ID: 'cuda'
# Name of the test binary
TEST_BINARY: 'WSCC_9bus_mult_coupled'
# Path where the test binary is located
TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
# Additional files that are necessary to run the application on the GPU node
TEST_FILE: ''
# Command line parameters for the test binary
TEST_PARAM: '-U CUDASparse'
artifacts:
reports:
metrics: cuda-metrics.txt
paths:
- cuda-metrics.txt
expose_as: 'step-times-benchmark'
test:cuda 3/3:
extends: .remote-gpu
needs: ["build:linux-cuda"]
allow_failure: true
dependencies:
- build:linux-cuda
variables:
# Metrics-filename
METRICS_ID: 'cuda'
# Name of the test binary
TEST_BINARY: 'WSCC_9bus_mult_coupled'
# Path where the test binary is located
TEST_BINARY_PATH: 'build/dpsim/examples/cxx'
# Additional files that are necessary to run the application on the GPU node
TEST_FILE: ''
# Command line parameters for the test binary
TEST_PARAM: '-U CUDAMagma'
artifacts:
reports:
metrics: cuda-metrics.txt
paths:
- cuda-metrics.txt
expose_as: 'step-times-benchmark'
##############################################################################
# Stage generate
##############################################################################
# moved to GitHub actions
#generate:docs:
# stage: generate
# needs: ["build:linux-cgmes"]
# script:
# - make ${MAKE_OPTS} -C build docs
# - make ${MAKE_OPTS} -C build docs_cxx
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}-cgmes
# dependencies:
# - build:linux-cgmes
# artifacts:
# paths:
# - build/docs/sphinx/html
# - build/docs/doxygen/html
# tags:
# - docker
#
#generate:packages:
# stage: generate
# needs: ["build:linux-cgmes"]
# script:
# - make ${MAKE_OPTS} -C build package
# only:
# - tags
# tags:
# - docker
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}-cgmes
# dependencies:
# - build:linux-cgmes
# artifacts:
# paths:
# - build/*.rpm
# - build/*.tar.gz
generate:metrics:
stage: generate
needs: ["test:solver-benchmark 1/2", "test:solver-benchmark 2/2"]
script:
- echo "set terminal svg size 800, 500; set output 'metrics.svg'; set title 'Speed of different Solver-Configurations'; set style data lines; set key outside; set xlabel \"Copies (WSCC-9bus Example)\"; set ylabel \"Average steptime (µs)\"; set xtics 1; set xtics nomirror; set ytics nomirror; set grid; plot \"cpu-dense-metrics.txt\" using (\$1 * 1000000) title \"Solving with CPU and dense matrices\", \"gpu-dense-metrics.txt\" using (\$1 * 1000000) title \"Solving with GPU and dense matrices\", \"cpu-sparse-metrics.txt\" using (\$1 * 1000000) title \"Solving with CPU and sparse matrices\"" > script.p
- gnuplot script.p
image: ${DOCKER_IMAGE_DEV_ROCKY}:${CI_COMMIT_REF_NAME}
artifacts:
reports:
metrics: metrics.svg
paths:
- metrics.svg
expose_as: 'WSCC-9bus-benchmark'
tags:
- docker
##############################################################################
# Stage deploy
##############################################################################
# moved to GitHub actions
#pages:
# stage: deploy
# needs: ["generate:docs"]
# script:
# - cp -r build/docs/sphinx/html/. public/sphinx
# - cp -r build/docs/doxygen/html/. public/doxygen
# artifacts:
# paths:
# - public
# dependencies:
# - generate:docs
# only:
# - deploy
# tags:
# - docker
#
#deploy:docker:
# stage: deploy
# script:
# - docker push ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}-cgmes
# - docker push ${DOCKER_IMAGE_DEV}:latest
# - docker push ${DOCKER_IMAGE}:${DOCKER_TAG}-cgmes
# - docker push ${DOCKER_IMAGE}:latest
# dependencies:
# - build:docker
# tags:
# - docker
# only:
# - tags