-
Notifications
You must be signed in to change notification settings - Fork 28
781 lines (694 loc) · 30.4 KB
/
run.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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
name: Run Benchpark and Simple Benchmark Suite
on:
workflow_call:
jobs:
saxpy:
runs-on: ubuntu-22.04
steps:
- name: Checkout Benchpark
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Add needed Python libs
run: |
pip install -r ./requirements.txt
- name: Build Saxpy Workspace
run: |
./bin/benchpark setup saxpy/openmp nosite-x86_64 workspace/
- name: Setup Ramble & Spack
run: |
. workspace/setup.sh
spack mirror add ci-buildcache oci://ghcr.io/llnl/benchpark-binary-cache
spack config add "packages:all:target:[x86_64_v3]"
env | grep SPACK >> "$GITHUB_ENV"
env | grep RAMBLE >> "$GITHUB_ENV"
echo "PATH=$PATH" >> "$GITHUB_ENV"
- name: Setup Saxpy Workspace
working-directory: ./workspace/saxpy/openmp/nosite-x86_64/workspace/
run: |
ramble \
--workspace-dir . \
--disable-progress-bar \
--disable-logger \
-c config:spack_flags:install:'--no-check-signature' \
workspace setup
- name: Run Saxpy Experiments
working-directory: ./workspace/saxpy/openmp/nosite-x86_64/workspace/
run: |
ramble \
--workspace-dir . \
--disable-progress-bar \
--disable-logger \
on \
--executor '{execute_experiment}' \
--where '{n_nodes} == 1'
- name: Analyze Saxpy Results
working-directory: ./workspace/saxpy/openmp/nosite-x86_64/workspace/
run: |
ramble \
--workspace-dir . \
--disable-progress-bar \
--disable-logger \
workspace analyze
- name: Archive Experiment Workspace
working-directory: ./workspace/saxpy/openmp/nosite-x86_64/workspace/
if: always()
run: |
ramble \
--workspace-dir . \
--disable-progress-bar \
--disable-logger \
workspace archive
- name: Upload Workspace Archive as CI Artifact
if: always()
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
with:
name: workspace-archive
path: './workspace/saxpy/openmp/nosite-x86_64/workspace/archive/**'
- name: Upload Binaries to CI Cache
if: github.ref == 'refs/heads/develop'
run: |
spack mirror set \
--push \
--oci-username ${{ github.actor }} \
--oci-password "${{ secrets.GITHUB_TOKEN }}" \
ci-buildcache
spack buildcache push \
-j $(($(nproc) + 1)) \
--base-image ubuntu:22.04 \
--unsigned \
--update-index ci-buildcache \
$(spack find --format '/{hash}')
dryrunexperiments:
runs-on: ubuntu-22.04
steps:
- name: Checkout Benchpark
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Add needed Python libs
run: |
pip install -r ./requirements.txt
- name: Dry run amg2023/openmp on Dane with allocation modifier
run: |
./bin/benchpark setup amg2023/openmp LLNL-Dane-DELL-sapphirerapids-OmniPath workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/amg2023/openmp/LLNL-Dane-DELL-sapphirerapids-OmniPath/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic amg2023-openmp on Dane with allocation modifier
run: |
./bin/benchpark experiment init --dest=amg2023-openmp amg2023+openmp
./bin/benchpark setup ./amg2023-openmp LLNL-Dane-DELL-sapphirerapids-OmniPath workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/amg2023-openmp/LLNL-Dane-DELL-sapphirerapids-OmniPath/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run amg2023/cuda on Sierra with allocation modifier
run: |
./bin/benchpark setup amg2023/cuda LLNL-Sierra-IBM-power9-V100-Infiniband workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/amg2023/cuda/LLNL-Sierra-IBM-power9-V100-Infiniband/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run amg2023/cuda on Pascal with allocation modifier
run: |
./bin/benchpark setup amg2023/cuda LLNL-Pascal-Penguin-broadwell-P100-OmniPath workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/amg2023/cuda/LLNL-Pascal-Penguin-broadwell-P100-OmniPath/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic kripke-openmp on nosite-x86_64 with allocation modifier
run: |
./bin/benchpark experiment init --dest=kripke-openmp kripke+openmp caliper=mpi,time
./bin/benchpark setup ./kripke-openmp nosite-x86_64 workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/kripke-openmp/nosite-x86_64/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic kripke-rocm on LLNL-Tioga-HPECray-zen3-MI250X-Slingshot with allocation modifier
run: |
./bin/benchpark experiment init --dest=kripke-rocm kripke+rocm
./bin/benchpark setup ./kripke-openmp LLNL-Tioga-HPECray-zen3-MI250X-Slingshot workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/kripke-openmp/LLNL-Tioga-HPECray-zen3-MI250X-Slingshot/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run kripke/cuda on Sierra with allocation modifier
run: |
./bin/benchpark setup kripke/cuda LLNL-Sierra-IBM-power9-V100-Infiniband workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/kripke/cuda/LLNL-Sierra-IBM-power9-V100-Infiniband/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run kripke/rocm on dynamic Tioga with allocation modifier
run: |
./bin/benchpark system init --dest=tioga-system llnl-elcapitan rocm=5.5.1 compiler=cce ~gtl
./bin/benchpark setup kripke/rocm ./tioga-system workspace/
system_id=$(./bin/benchpark system id ./tioga-system)
. workspace/setup.sh
ramble \
--workspace-dir "workspace/kripke/rocm/$system_id/workspace" \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic saxpy/rocm with static Tioga
run: |
./bin/benchpark experiment init --dest=saxpy-rocm saxpy+rocm
./bin/benchpark setup ./saxpy-rocm LLNL-Tioga-HPECray-zen3-MI250X-Slingshot workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/saxpy-rocm/LLNL-Tioga-HPECray-zen3-MI250X-Slingshot/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run lammps/openmp with static Ruby
run: |
./bin/benchpark setup lammps/openmp LLNL-Ruby-icelake-OmniPath workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/lammps/openmp/LLNL-Ruby-icelake-OmniPath/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run lammps/rocm with static Tioga
run: |
./bin/benchpark setup lammps/rocm LLNL-Tioga-HPECray-zen3-MI250X-Slingshot workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/lammps/rocm/LLNL-Tioga-HPECray-zen3-MI250X-Slingshot/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic lammps/openmp on static Ruby
run: |
./bin/benchpark experiment init --dest=lammps-openmp lammps+openmp
./bin/benchpark setup ./lammps-openmp LLNL-Ruby-icelake-OmniPath workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/lammps-openmp/LLNL-Ruby-icelake-OmniPath/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic lammps/rocm on static Tioga
run: |
./bin/benchpark experiment init --dest=lammps-rocm lammps+rocm
./bin/benchpark setup ./lammps-rocm LLNL-Tioga-HPECray-zen3-MI250X-Slingshot workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/lammps-rocm/LLNL-Tioga-HPECray-zen3-MI250X-Slingshot/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run hpl/openmp with Caliper-topdown modifier on Magma
run: |
./bin/benchpark setup hpl/openmp --modifier=caliper-topdown LLNL-Magma-Penguin-icelake-OmniPath workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/hpl/openmp/LLNL-Magma-Penguin-icelake-OmniPath/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic quicksilver-openmp on nosite-x86_64 with allocation modifier
run: |
./bin/benchpark experiment init --dest=quicksilver-openmp quicksilver+openmp +weak~single_node
./bin/benchpark setup ./quicksilver-openmp nosite-x86_64 workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/quicksilver-openmp/nosite-x86_64/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run phloem/mpi-only on nosite-x86_64 with allocation modifier
run: |
./bin/benchpark setup phloem/mpi-only nosite-x86_64 workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/phloem/mpi-only/nosite-x86_64/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run salmon/openmp with allocation modifier on Fugaku
run: |
./bin/benchpark setup salmon/openmp RCCS-Fugaku-Fujitsu-A64FX-TofuD workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/salmon/openmp/RCCS-Fugaku-Fujitsu-A64FX-TofuD/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run qws/openmp with allocation modifier on Fugaku
run: |
./bin/benchpark setup qws/openmp RCCS-Fugaku-Fujitsu-A64FX-TofuD workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/qws/openmp/RCCS-Fugaku-Fujitsu-A64FX-TofuD/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run qws/openmp with allocation modifier on nosite-x86_64
run: |
./bin/benchpark setup qws/openmp nosite-x86_64 workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/qws/openmp/nosite-x86_64/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic gpcnet/mpi-only with dynamic CTS ruby
run: |
./bin/benchpark experiment init --dest=gpcnet-mpi gpcnet
./bin/benchpark setup ./gpcnet-mpi ./ruby-system workspace/
system_id=$(./bin/benchpark system id ./ruby-system)
. workspace/setup.sh
ramble \
--workspace-dir "workspace/gpcnet-mpi/$system_id/workspace" \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run gpcnet/mpi-only on dynamic Tioga with allocation modifier
run: |
./bin/benchpark experiment init --dest=gpcnet-mpi-only2 gpcnet
./bin/benchpark setup gpcnet-mpi-only2 ./tioga-system workspace/
system_id=$(./bin/benchpark system id ./tioga-system)
. workspace/setup.sh
ramble \
--workspace-dir "workspace/gpcnet-mpi-only2/$system_id/workspace" \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
/- name: Dry run gpcnet/mpi-only on nosite-x86_64 with allocation modifier
run: |
./bin/benchpark experiment init --dest=gpcnet-mpi-only1 gpcnet
./bin/benchpark setup gpcnet-mpi-only1 nosite-x86_64 workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/gpcnet-mpi-only1/nosite-x86_64/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
dynamicdryrunexperiments:
runs-on: ubuntu-22.04
steps:
- name: Checkout Benchpark
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Add needed Python libs
run: |
pip install -r ./requirements.txt
- name: Dry run dynamic genesis/openmp with dynamic fugaku
run: |
system_id=$(./bin/benchpark system id ./fugaku-system)
./bin/benchpark experiment init --dest=genesis-openmp-fugaku genesis+openmp
./bin/benchpark setup ./genesis-openmp-fugaku ./fugaku-system workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/genesis-openmp-fugaku/$system_id/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: saxpy/openmp ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: openmp
benchmark_spec: saxpy+openmp
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: saxpy/openmp dane llnl-cluster cluster=dane
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: openmp
benchmark_spec: saxpy+openmp
system_name: dane
system_spec: llnl-cluster cluster=dane
- name: saxpy/openmp magma llnl-cluster cluster=magma
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: openmp
benchmark_spec: saxpy+openmp
system_name: magma
system_spec: llnl-cluster cluster=magma
- name: saxpy/openmp aws aws-pcluster instance_type=hpc6a.48xlarge
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: openmp
benchmark_spec: saxpy+openmp
system_name: aws
system_spec: aws-pcluster instance_type=hpc6a.48xlarge
- name: saxpy/openmp venado lanl-venado cuda=12.5 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: openmp
benchmark_spec: saxpy+openmp
system_name: venado
system_spec: lanl-venado cuda=12.5 compiler=cce +gtl
- name: saxpy/cuda lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: cuda
benchmark_spec: saxpy+cuda
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: saxpy/cuda venado lanl-venado cuda=12.5 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: cuda
benchmark_spec: saxpy+cuda
system_name: venado
system_spec: lanl-venado cuda=12.5 compiler=cce +gtl
- name: saxpy/rocm tioga llnl-elcapitan rocm=5.5.1 compiler=cce ~gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: rocm
benchmark_spec: saxpy+rocm
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce ~gtl
- name: saxpy/openmp fugaku riken-fugaku
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: saxpy
benchmark_mode: openmp
benchmark_spec: saxpy+openmp
system_name: fugaku
system_spec: riken-fugaku
- name: amg2023/openmp caliper=mpi,time generic-x86 generic-x86
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: amg2023
benchmark_mode: openmp
benchmark_spec: amg2023+openmp caliper=mpi,time
system_name: generic-x86
system_spec: generic-x86
- name: amg2023/openmp caliper=topdown-all,time ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: amg2023
benchmark_mode: openmp
benchmark_spec: amg2023+openmp caliper=mpi,time
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: amg2023/cuda caliper=cuda,time lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: amg2023
benchmark_mode: cuda
benchmark_spec: amg2023+cuda caliper=cuda,time
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: amg2023/rocm caliper=mpi,time tioga llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: amg2023
benchmark_mode: rocm
benchmark_spec: amg2023+rocm caliper=mpi,time
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
- name: ior/mpi ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: ior
benchmark_mode: mpi
benchmark_spec: ior
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: qws/openmp ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: qws
benchmark_mode: openmp
benchmark_spec: qws+openmp
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: smb/mpi ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: smb
benchmark_mode: mpi
benchmark_spec: smb
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: smb/mpi workload=msgrate ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: smb
benchmark_mode: mpi
benchmark_spec: smb workload=msgrate
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: phloem/mpi ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: phloem
benchmark_mode: mpi
benchmark_spec: phloem
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: osu-micro-benchmarks/mpi ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: osu-micro-benchmarks
benchmark_mode: mpi
benchmark_spec: osu-micro-benchmarks workload=all
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: laghos/mpi caliper=mpi,time ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: laghos
benchmark_mode: mpi
benchmark_spec: laghos caliper=mpi,time
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: laghos/mpi caliper=mpi,time magma llnl-cluster cluster=magma
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: laghos
benchmark_mode: mpi
benchmark_spec: laghos caliper=mpi,time
system_name: magma
system_spec: llnl-cluster cluster=magma
- name: laghos/cuda caliper=cuda,time lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: laghos
benchmark_mode: cuda
benchmark_spec: laghos+cuda caliper=cuda,time
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: laghos/rocm caliper=mpi,time llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: laghos
benchmark_mode: rocm
benchmark_spec: laghos+rocm caliper=mpi,time
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
- name: raja-perf/mpi caliper=mpi,time ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: raja-perf
benchmark_mode: mpi
benchmark_spec: raja-perf caliper=mpi,time
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: raja-perf/mpi caliper=mpi,time lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: raja-perf
benchmark_mode: mpi
benchmark_spec: raja-perf
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: raja-perf/mpi caliper=mpi,time tioga llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: raja-perf
benchmark_mode: mpi
benchmark_spec: raja-perf
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
- name: gromacs/openmp gpu-aware-mpi=off ruby llnl-cluster cluster=ruby compiler=gcc
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: gromacs
benchmark_mode: openmp
benchmark_spec: gromacs+openmp~cuda~rocm gpu-aware-mpi=off
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=gcc
- name: gromacs/cuda gpu-aware-mpi=on lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm lapack=cusolver blas=cublas
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: gromacs
benchmark_mode: cuda
benchmark_spec: gromacs+openmp+cuda~rocm gpu-aware-mpi=on
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm lapack=cusolver blas=cublas
- name: gromacs/rocm gpu-aware-mpi=force llnl-elcapitan rocm=5.5.1 compiler=cce +gtl lapack=intel-oneapi-mkl blas=intel-oneapi-mkl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: gromacs
benchmark_mode: rocm
benchmark_spec: gromacs+openmp+rocm~cuda gpu-aware-mpi=force
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl lapack=intel-oneapi-mkl blas=intel-oneapi-mkl
- name: remhos/mpi caliper=mpi,time ruby llnl-cluster cluster=ruby compiler=gcc
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: remhos
benchmark_mode: mpi
benchmark_spec: remhos~cuda~rocm caliper=mpi,time
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=gcc
- name: remhos/mpi caliper=mpi,time tioga llnl-elcapitan rocm=5.5.1 compiler=cce +gtl lapack=intel-oneapi-mkl blas=intel-oneapi-mkl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: remhos
benchmark_mode: mpi
benchmark_spec: remhos~cuda~rocm caliper=mpi,time
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl lapack=intel-oneapi-mkl blas=intel-oneapi-mkl
- name: remhos/cuda caliper=cuda,time lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm lapack=essl blas=cublas
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: remhos
benchmark_mode: cuda
benchmark_spec: remhos+cuda~rocm caliper=cuda,time
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm lapack=essl blas=cublas
- name: remhos/rocm caliper=mpi,time llnl-elcapitan rocm=5.5.1 compiler=cce +gtl lapack=cray-libsci blas=rocblas
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: remhos
benchmark_mode: rocm
benchmark_spec: remhos~cuda+rocm caliper=mpi,time
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl lapack=cray-libsci blas=rocblas
- name: genesis/openmp llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: genesis
benchmark_mode: openmp
benchmark_spec: genesis+openmp
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: genesis/openmp fugaku riken-fugaku
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: genesis
benchmark_mode: openmp
benchmark_spec: genesis+openmp
system_name: fugaku
system_spec: riken-fugaku
- name: babelstream/openmp caliper=mpi,time ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: babelstream
benchmark_mode: openmp
benchmark_spec: babelstream+openmp caliper=mpi,time
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: babelstream/cuda caliper=cuda,time lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: babelstream
benchmark_mode: cuda
benchmark_spec: babelstream+cuda caliper=cuda,time
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: babelstream/rocm caliper=mpi,time llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: babelstream
benchmark_mode: rocm
benchmark_spec: babelstream+rocm caliper=mpi,time
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
- name: lammps/openmp ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: lammps
benchmark_mode: openmp
benchmark_spec: lammps+openmp
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: lammps/openmp lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: lammps
benchmark_mode: openmp
benchmark_spec: lammps+openmp
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: lammps/openmp llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: lammps
benchmark_mode: openmp
benchmark_spec: lammps+openmp
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
- name: lammps/cuda lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: lammps
benchmark_mode: cuda
benchmark_spec: lammps+cuda
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: lammps/rocm llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: lammps
benchmark_mode: rocm
benchmark_spec: lammps+rocm
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
- name: kripke/openmp caliper=mpi,time generic-x86 generic-x86
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: kripke
benchmark_mode: openmp
benchmark_spec: kripke+openmp caliper=mpi,time
system_name: generic-x86
system_spec: generic-x86
- name: kripke/openmp caliper=mpi,time ruby llnl-cluster cluster=ruby compiler=intel
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: kripke
benchmark_mode: openmp
benchmark_spec: kripke+openmp caliper=mpi,time
system_name: ruby
system_spec: llnl-cluster cluster=ruby compiler=intel
- name: kripke/cuda caliper=cuda,time lassen llnl-sierra cuda=11-8-0 compiler=clang-ibm
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: kripke
benchmark_mode: cuda
benchmark_spec: kripke+cuda caliper=cuda,time
system_name: lassen
system_spec: llnl-sierra cuda=11-8-0 compiler=clang-ibm
- name: kripke/rocm caliper=mpi,time tioga llnl-elcapitan rocm=5.5.1 compiler=cce +gtl
uses: ./.github/actions/dynamic-dry-run
with:
benchmark_name: kripke
benchmark_mode: rocm
benchmark_spec: kripke+rocm caliper=mpi,time
system_name: tioga
system_spec: llnl-elcapitan rocm=5.5.1 compiler=cce +gtl