-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRELEASE_PLAN.json
More file actions
1506 lines (1506 loc) · 50 KB
/
Copy pathRELEASE_PLAN.json
File metadata and controls
1506 lines (1506 loc) · 50 KB
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
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema": "hpcperf-release-plan-1",
"generated": "2026-09-12T01:34:59Z",
"provider": "GitHub Release assets of this repository (no mirror, bucket or paid service)",
"repository": "Deep-Learning-Profiling-Tools/HPC-Performance-AI",
"tag": "level3-source-hpcperf-l3-v1-rc1",
"target_commit": "16dcf18a605c21dfcfb4aaddb2a35aef39bff8ee",
"release_kind": "prerelease (source-artifact release candidate): does not assert that HIP, multi-node or every scientific configuration is validated",
"immutable_releases": {
"enabled": false,
"enforced_by_owner": false,
"probed": "2026-09-11 via GET /repos/{owner}/{repo}/immutable-releases (read-only); repository setting not changed"
},
"asset_policy": "assets are never overwritten or deleted after publication; a source change is a new source_version + new tag; every consumer verifies size + sha256 + source_tree_sha256 (prepare_benchmark.sh) -- platform immutability is NOT relied upon",
"publication_procedure": [
"draft release on the target commit (maintainer authorization required)",
"upload assets + SHA256SUMS + SOURCE_MANIFEST.<artifact>.json, re-download each asset and compare sha256/size",
"publish as prerelease",
"clean clone + empty cache + anonymous (no token) download through prepare_benchmark.sh, tree hash verified (tools/artifacts/remote_fetch_check.sh)",
"only then: locks primary.url = asset URL, status published; provenance/remote_fetch_verification*.yaml written; REMOTE_FETCH_VERIFIED"
],
"totals": {
"assets": 11,
"bytes": 1197001594,
"human": "1.1 GB"
},
"assets": [
{
"artifact": "lammps",
"application": "LAMMPS",
"variant": null,
"filename": "lammps-hpcperf-l3-v1.tar.zst",
"size_bytes": 115344817,
"sha256": "4f6e1096de3a6671326c9aaabd40510ee4a610df961b605633f8cffd2c2cbca1",
"source_tree_sha256": "d7549c2f6d1b5b6c76575b7bf3b0f528cfa69b9b057aa0b3ef0f03921bdf8e48",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/lammps/lammps.git",
"tag": "stable_22Jul2025_update6",
"commit": "9c5ab448c78a14fd534619622162ba418d6a1fb1"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/lammps-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "GPL-2.0-only",
"project": "LAMMPS"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 3,
"record": "level3/lammps/provenance/LICENSES.md",
"notes": [
"LAMMPS is GPL-2.0-only: redistributing the (unmodified) source in a source bundle is permitted; the bundle carries the upstream LICENSE and the complete corresponding source.",
"lib/kokkos (Apache-2.0 with LLVM exception) and the other lib/ components keep their own license files inside the tree.",
"No dataset outside the upstream repository is bundled; the benchmark inputs (bench/in.lj, bench/POTENTIALS, potentials/) are upstream repository files."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "lammps-hpcperf-l3-v1.tar.zst 115344817 B sha256 4f6e1096de3a6671..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "d7549c2f6d1b5b6c... vs d7549c2f6d1b5b6c..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "13893 vs 13893"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "4f6e1096de3a6671326c9aaabd40510ee4a610df961b605633f8cffd2c2cbca1 lammps-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/lammps/provenance/SOURCE_MANIFEST.json",
"sha256": "ba1c1b3a7ac23f2732f598294f5c01b74d0284b36c76d5a7cc8753e250054176",
"planned_asset": "SOURCE_MANIFEST.lammps.json"
},
"patches": [],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "bench/in.lj 32^3 lattice x 4 = 131,072 atoms, 100 steps, validated 1/2/4 GPUs (2026-09-07 regression fc4d2a1)",
"strong": "16.4M atoms, completed 1/4 GPU runs (no numerical acceptance beyond smoke criteria)",
"weak": "2.05M atoms per rank, completed 4-GPU run",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only (HPCPERF_DRY_RUN=1), never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78",
"provided_by": "node /usr/local/cuda (hpcperf_env.sh)"
},
{
"name": "GCC (nvcc_wrapper host compiler)",
"version": "13.3.0",
"provided_by": ".conda_env"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env (site profile gmu-hopper)"
},
{
"name": "CMake / Ninja",
"provided_by": ".conda_env"
},
{
"name": "Slurm",
"GPU driver": null,
"UCX": null,
"provided_by": "site"
}
],
"decision": "PLAN"
},
{
"artifact": "sparta",
"application": "SPARTA",
"variant": null,
"filename": "sparta-hpcperf-l3-v1.tar.zst",
"size_bytes": 21330629,
"sha256": "ea3be3032b3d6a41fa2130c08b0b3d49b1c7e223d87d45e93289d176130b3c09",
"source_tree_sha256": "63519f0e3e9ac974e1f5aff64446b5fcb9ffc1f9c113901249efe7fa2666d36c",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/sparta/sparta.git",
"tag": "27Aug2026",
"commit": "95b9abaa8bd548991cc3c3f1c58b34722f7ade74"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/sparta-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "GPL-2.0-only",
"project": "SPARTA"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 2,
"record": "level3/sparta/provenance/LICENSES.md",
"notes": [
"SPARTA is GPL-2.0-only; the unmodified source with its LICENSE is redistributed as a source bundle.",
"Benchmark inputs (bench/in.collide, bench/data.*, reference logs) are upstream repository files."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "sparta-hpcperf-l3-v1.tar.zst 21330629 B sha256 ea3be3032b3d6a41..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "63519f0e3e9ac974... vs 63519f0e3e9ac974..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "3084 vs 3084"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "ea3be3032b3d6a41fa2130c08b0b3d49b1c7e223d87d45e93289d176130b3c09 sparta-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/sparta/provenance/SOURCE_MANIFEST.json",
"sha256": "002aa452a41181718e9c90e28c5933c794854a281f30f5e07876a573a1772ccc",
"planned_asset": "SOURCE_MANIFEST.sparta.json"
},
"patches": [],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "bench/in.collide 10x10x10 cells, 10,000 particles, 30+100 steps, validated 1/2/4 GPUs (2026-09-07 regression fc4d2a1)",
"strong": "100^3 cells = 10M particles, completed 1/4 GPU runs",
"weak": "50^3 cells per rank (1.25M particles/rank), completed 4-GPU run",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only, never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78"
},
{
"name": "GCC (nvcc_wrapper host compiler)",
"version": "13.3.0",
"provided_by": ".conda_env"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env"
},
{
"name": "CMake / Ninja",
"provided_by": ".conda_env"
}
],
"decision": "PLAN"
},
{
"artifact": "warpx",
"application": "WarpX",
"variant": null,
"filename": "warpx-hpcperf-l3-v1.tar.zst",
"size_bytes": 14235980,
"sha256": "d4eca1ca57907dd238ee9391585acacaa60ff46c9f972ecd9024f05fe985f7d0",
"source_tree_sha256": "e90d20b2a7d82634313efff4bc23fb190fef8b12c607c5ffad94cf0f04a9b6a2",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/BLAST-WarpX/warpx.git",
"tag": "26.09",
"commit": "0c62c75e53a9ad08241535444bd7e53fd1deba88"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/warpx-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "BSD-3-Clause-LBNL",
"project": "WarpX"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 2,
"record": "level3/warpx/provenance/LICENSES.md",
"notes": [
"WarpX and AMReX carry the LBNL BSD-3-Clause license with NOTICE files; both files are kept in the bundle.",
"PICSAR-QED and openPMD are not part of this build (WarpX_QED=OFF, WarpX_OPENPMD=OFF) and are not bundled."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "warpx-hpcperf-l3-v1.tar.zst 14235980 B sha256 d4eca1ca57907dd2..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['deps', 'src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "e90d20b2a7d82634... vs e90d20b2a7d82634..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "4632 vs 4632"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "d4eca1ca57907dd238ee9391585acacaa60ff46c9f972ecd9024f05fe985f7d0 warpx-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/warpx/provenance/SOURCE_MANIFEST.json",
"sha256": "6f7da91d963e428325f4dfb5a9f4036951dfd89a5d75ec405c378ab87f10ebda",
"planned_asset": "SOURCE_MANIFEST.warpx.json"
},
"patches": [],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "uniform_plasma 64x32x32 cells (131,072 particles), 10 steps + langmuir_multi 64^3, 40 steps; validated 1/2/4 GPUs (2026-09-07 regression fc4d2a1)",
"strong": "uniform_plasma 256^3 cells (33.6M particles), completed 1/4 GPU runs",
"weak": "uniform_plasma 128^3 cells per rank (4.2M particles/rank), completed 4-GPU run",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only, never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78"
},
{
"name": "GCC (host compiler)",
"version": "13.3.0",
"provided_by": ".conda_env"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env"
},
{
"name": "CMake / Ninja",
"provided_by": ".conda_env"
}
],
"decision": "PLAN"
},
{
"artifact": "specfem3d",
"application": "SPECFEM3D",
"variant": null,
"filename": "specfem3d-hpcperf-l3-v1.tar.zst",
"size_bytes": 248289500,
"sha256": "62b9739b1440a1cb1d33c58d282b5f418f9f92f6c152cfde4697ee28c22eb316",
"source_tree_sha256": "9bdc4eed3a3593e4d87e57ed1802eff37d0a7b78a060e083cbcd3155592adc4f",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/SPECFEM/specfem3d.git",
"tag": "v4.1.1",
"commit": "c67d3ae7d4bfc5ac75cb9e5601d93afa262d3d8d"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/specfem3d-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "GPL-3.0-or-later",
"project": "SPECFEM3D Cartesian"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 2,
"record": "level3/specfem3d/provenance/LICENSES.md",
"notes": [
"SPECFEM3D is GPL (see LICENSE); redistribution of the complete source with the two back-ported devel patches (also GPL) is permitted; the diff is recorded in provenance/original_vs_baseline.diff.",
"SCOTCH 5.1.12b is bundled by upstream under CeCILL-C (LGPL-compatible free software license); its own license file stays in the tree.",
"EXAMPLES/ (meshes, reference seismograms used by validate.sh) are upstream repository content; doc/ is excluded (documentation only)."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "specfem3d-hpcperf-l3-v1.tar.zst 248289500 B sha256 62b9739b1440a1cb..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "9bdc4eed3a3593e4... vs 9bdc4eed3a3593e4..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "6205 vs 6205"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "62b9739b1440a1cb1d33c58d282b5f418f9f92f6c152cfde4697ee28c22eb316 specfem3d-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/specfem3d/provenance/SOURCE_MANIFEST.json",
"sha256": "c3ff181884e9ee49942631cc55b05b792c770f5a3d5e2276631451968a8e1e61",
"planned_asset": "SOURCE_MANIFEST.specfem3d.json"
},
"patches": [
"patches/0001-cuda13-deviceOverlap-guard.patch",
"patches/0002-blackwell-device-block.patch"
],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "EXAMPLES/applications/homogeneous_halfspace as shipped (20,736 HEX8, NSTEP 5000), validated 1/2/4 GPUs (2026-09-07 regression fc4d2a1)",
"strong": "xmeshfem3D refined domain, 165,888 elements, completed 1/4 GPU runs",
"weak": "165,888 elements per rank (domain extended), completed 4-GPU run",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only, never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78"
},
{
"name": "GCC 13.3.0 (conda",
"C + nvcc host) and system gfortran 14.2.1": null,
"provided_by": ".conda_env / node"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env"
}
],
"decision": "PLAN"
},
{
"artifact": "nekrs.hypregpu",
"application": "nekRS",
"variant": "hypregpu",
"filename": "nekrs-hypregpu-hpcperf-l3-v1.tar.zst",
"size_bytes": 48167250,
"sha256": "83c721f69eb47bea9cfb53b2236dcf046c05b97864b066cce0f4d03adace85f2",
"source_tree_sha256": "76e6ad3cdd624a90c5057d07674219004155ef17d8078553d9b0c587bb6a8b01",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/Nek5000/nekRS.git",
"tag": "v26.0",
"commit": "96b3cf9e5bacede16568826c04a21bc0fe50dc7d"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/nekrs-hypregpu-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "BSD-3-Clause",
"project": "nekRS"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 8,
"record": "level3/nekrs/provenance/LICENSES.hypregpu.md",
"notes": [
"nekRS vendors its third-party libraries as squashed subtrees with their license files; all are permissive (BSD/MIT/Apache).",
"The three hypre patches modify vendored hypre device sources (class B/D); the diff is in provenance/original_vs_baseline.hypregpu.diff."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "nekrs-hypregpu-hpcperf-l3-v1.tar.zst 48167250 B sha256 83c721f69eb47bea..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "76e6ad3cdd624a90... vs 76e6ad3cdd624a90..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "14447 vs 14447"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "83c721f69eb47bea9cfb53b2236dcf046c05b97864b066cce0f4d03adace85f2 nekrs-hypregpu-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/nekrs/provenance/SOURCE_MANIFEST.hypregpu.json",
"sha256": "a614b51ba7cd8540298030dc0b51e41684db0e29177066fe31419445b075b825",
"planned_asset": "SOURCE_MANIFEST.nekrs.hypregpu.json"
},
"patches": [
"patches/0001-hypre-cuda-sm100.patch",
"patches/0002-hypre-cuda13-thrust-pair.patch",
"patches/0003-hypre-cuda13-thrust3-compat.patch"
],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "examples/ethier (32 elements, N=9, 100 steps), 9/9 CI checks; validated 1/2/4 GPUs for hypregpu cimode 2 and 3 and cpucoarse cimode 2 (2026-09-07 regression fc4d2a1)",
"strong": "ethierRefine hrefine=10 (32,000 elements, N=7), completed 1/4 GPU runs",
"weak": "~8,000 elements per rank, completed 4-GPU run",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only, never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78"
},
{
"name": "GCC 13.3.0 (conda",
"C/C++) + system gfortran 14.2.1": null,
"provided_by": ".conda_env / node"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env"
},
{
"name": "CMake",
"provided_by": ".conda_env"
}
],
"decision": "PLAN"
},
{
"artifact": "nekrs.cpucoarse",
"application": "nekRS",
"variant": "cpucoarse",
"filename": "nekrs-cpucoarse-hpcperf-l3-v1.tar.zst",
"size_bytes": 48167029,
"sha256": "a0b1d0a9a8a45edb6cf108373c7a79e06fdb3d1d08405100c8b024f8253db169",
"source_tree_sha256": "6bde03184c09b236179b2ff4c8200e8489666ed68aebbbdc11462bfb050b1c0e",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/Nek5000/nekRS.git",
"tag": "v26.0",
"commit": "96b3cf9e5bacede16568826c04a21bc0fe50dc7d"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/nekrs-cpucoarse-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "BSD-3-Clause",
"project": "nekRS"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 8,
"record": "level3/nekrs/provenance/LICENSES.cpucoarse.md",
"notes": [
"Exact upstream v26.0 tree (no patch); the same vendored third-party licenses as the hypregpu variant."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "nekrs-cpucoarse-hpcperf-l3-v1.tar.zst 48167029 B sha256 a0b1d0a9a8a45edb..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "6bde03184c09b236... vs 6bde03184c09b236..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "14447 vs 14447"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "a0b1d0a9a8a45edb6cf108373c7a79e06fdb3d1d08405100c8b024f8253db169 nekrs-cpucoarse-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/nekrs/provenance/SOURCE_MANIFEST.cpucoarse.json",
"sha256": "ca98806e6ce94dab11dc484b7ca8aae1973b3b95fad715ec6387975310471fda",
"planned_asset": "SOURCE_MANIFEST.nekrs.cpucoarse.json"
},
"patches": [],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "examples/ethier (32 elements, N=9, 100 steps), 9/9 CI checks; validated 1/2/4 GPUs for hypregpu cimode 2 and 3 and cpucoarse cimode 2 (2026-09-07 regression fc4d2a1)",
"strong": "ethierRefine hrefine=10 (32,000 elements, N=7), completed 1/4 GPU runs",
"weak": "~8,000 elements per rank, completed 4-GPU run",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only, never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78"
},
{
"name": "GCC 13.3.0 (conda",
"C/C++) + system gfortran 14.2.1": null,
"provided_by": ".conda_env / node"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env"
},
{
"name": "CMake",
"provided_by": ".conda_env"
}
],
"decision": "PLAN"
},
{
"artifact": "nyx",
"application": "Nyx",
"variant": null,
"filename": "nyx-hpcperf-l3-v1.tar.zst",
"size_bytes": 79400559,
"sha256": "218ba208e5d270abbc880a6f50fccd167f6f144361e3ef6e68e2677abd7dff36",
"source_tree_sha256": "71b64ddffc1e5c5fe9cd49173aba10d955f26082c6079a3a4548f2d9a6002120",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/AMReX-Astro/Nyx.git",
"tag": "26.09",
"commit": "e06eabc1b9dbcad5612db9529aced682402daede"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/nyx-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "BSD-3-Clause-LBNL",
"project": "Nyx"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 3,
"record": "level3/nyx/provenance/LICENSES.md",
"notes": [
"All three components are BSD-3-Clause (LBNL variant for Nyx/AMReX); license and notice files are kept in the bundle.",
"Initial-condition files inside the Nyx repository (Exec/MiniSB/ic_sb_32.ascii, Exec/LyA/32.nyx, 64sssss_20mpc.nyx) are upstream repository content under the same license; no external dataset is bundled."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "nyx-hpcperf-l3-v1.tar.zst 79400559 B sha256 218ba208e5d270ab..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{
"check": 4,
"name": "restricted extraction (no absolute path, '..', hard link, device)",
"status": "PASS",
"detail": ""
},
{
"check": 5,
"name": "top-level layout == lock",
"status": "PASS",
"detail": "['deps', 'src']"
},
{
"check": 6,
"name": "source_tree_sha256 == lock",
"status": "PASS",
"detail": "71b64ddffc1e5c5f... vs 71b64ddffc1e5c5f..."
},
{
"check": 7,
"name": "entry count == lock",
"status": "PASS",
"detail": "5933 vs 5933"
},
{
"check": 8,
"name": "no symlink escaping the tree",
"status": "PASS",
"detail": ""
},
{
"check": 9,
"name": "secret / build-output scan (paths + rules only)",
"status": "PASS",
"detail": ""
}
],
"mode": "full re-extraction"
},
"sha256sums_line": "218ba208e5d270abbc880a6f50fccd167f6f144361e3ef6e68e2677abd7dff36 nyx-hpcperf-l3-v1.tar.zst",
"source_manifest": {
"path": "level3/nyx/provenance/SOURCE_MANIFEST.json",
"sha256": "8b785a644703785c07fce4c1b5e3547449a61f9e036d849ca9b55b047eb9d23d",
"planned_asset": "SOURCE_MANIFEST.nyx.json"
},
"patches": [],
"scientific_status": {
"validated_backends": [
"cuda"
],
"smoke": "MiniSB (32^3, 10 steps) and LyA-adiabatic (32^3, 10 steps) PASS at 1/2/4 GPUs (2026-09-07 regression fc4d2a1); LyA heat/cool 1/2/4 GPUs STATE_AND_PARTICLES_PASS; I_R_CHECK_PENDING (exit 3, not a pass)",
"strong": "LyA 64^3 adiabatic derivative + synthetic 256^3, completed 1/2/4 GPU runs (too small to scale, completeness records)",
"weak": "synthetic 64^3 cells per rank (RandomPerCell), completed runs, labelled synthetic",
"multi_node": "BLOCKED/UNVERIFIED on this site",
"gpu_40_80": "DRY-RUN only (8 planned, 40 IMBALANCED, 80 refused as designed), never executed",
"known_limits": null,
"admission": null
},
"build_prerequisites": [
{
"name": "CUDA Toolkit",
"version": "13.2.78"
},
{
"name": "GCC (host compiler)",
"version": "13.3.0",
"provided_by": ".conda_env"
},
{
"name": "Open MPI",
"version": "5.0.10",
"provided_by": ".conda_env"
},
{
"name": "CMake / Ninja",
"provided_by": ".conda_env"
}
],
"decision": "PLAN"
},
{
"artifact": "cp2k",
"application": "CP2K",
"variant": null,
"filename": "cp2k-hpcperf-l3-v1.tar.zst",
"size_bytes": 210932689,
"sha256": "d6776dd4fa3107d4323d6f75144d047f28776bb9e87adc03597bd69a5dcc02b2",
"source_tree_sha256": "d877d2d4de4643ce90c1ced68b0cc5d18e389f5055efbf3309cbeba059ef6fa2",
"source_version": "hpcperf-l3-v1",
"upstream": {
"repository": "https://github.com/cp2k/cp2k.git",
"tag": "v2026.2",
"commit": "67b5da876dd6a76b8b021d5a04d1c81ba79a4c50"
},
"planned_url": "https://github.com/Deep-Learning-Profiling-Tools/HPC-Performance-AI/releases/download/level3-source-hpcperf-l3-v1-rc1/cp2k-hpcperf-l3-v1.tar.zst",
"planned_url_status": "PLANNED (not published; lock primary stays url null / unpublished)",
"application_license": {
"spdx": "GPL-2.0-or-later",
"project": "CP2K"
},
"bundle_dependency_and_data_license_review": {
"status": "cleared",
"components_reviewed": 11,
"record": "level3/cp2k/provenance/LICENSES.md",
"notes": [
"CP2K, DBCSR and FFTW are GPL-2.0-or-later: the bundle redistributes their complete, unmodified source (the toolchain scripts of CP2K carry the class-B B200 back-port, recorded in provenance/original_vs_baseline.diff).",
"The toolchain tarballs are the exact files CP2K's installer downloads from cp2k.org (same sha256 as recorded in tools/toolchain/scripts/*/install_*.sh); they are redistributable under their own licenses (BSD/MPL/LGPL/GPL).",
"data/ (basis sets, potentials) and benchmarks/ are upstream repository content under the CP2K license."
]
},
"verification": {
"verdict": "PASS",
"checks": [
{
"check": 1,
"name": "source lock valid",
"status": "PASS",
"detail": ""
},
{
"check": 2,
"name": "artifact file: size, zstd magic, sha256",
"status": "PASS",
"detail": "cp2k-hpcperf-l3-v1.tar.zst 210932689 B sha256 d6776dd4fa3107d4..."
},
{
"check": 3,
"name": "staging metadata consistent",
"status": "PASS",
"detail": "artifact.json entry + SHA256SUMS line agree"
},
{