-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1104 lines (1033 loc) · 55.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Community Workshop on Practical Reproducibility in HPC - November 18, 2024</title>
<style>
.agenda-toc {
background: #f8f9fa;
padding: 1.5em;
border-radius: 8px;
margin-bottom: 2em;
border-left: 5px solid #2c3e50;
}
.agenda-toc h3 {
color: #2c3e50;
margin-bottom: 1em;
}
.agenda-toc-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 0.5em 1.5em;
align-items: baseline;
}
.agenda-toc-time {
color: #3498db;
font-weight: bold;
white-space: nowrap;
}
.agenda-toc-item {
color: #2c3e50;
}
@media (max-width: 768px) {
.agenda-toc-grid {
grid-template-columns: 1fr;
gap: 0.75em;
}
.agenda-toc-time {
color: #3498db;
font-size: 0.9em;
}
}
.content-image-container {
margin: 2em 0;
text-align: center;
}
.image-caption {
font-style: italic;
color: #666;
margin-top: 0.5em;
}
.agenda-section {
margin: 2em 0;
padding: 1.5em;
background: #f8f9fa;
border-left: 5px solid #3498db;
border-radius: 0 8px 8px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.agenda-section h3 {
color: #2c3e50;
margin-bottom: 1em;
padding-bottom: 0.5em;
border-bottom: 2px solid #3498db;
}
.agenda-item {
display: flex;
margin-bottom: 1.5em;
gap: 1.5em;
align-items: flex-start;
}
.agenda-time {
min-width: 140px;
font-weight: bold;
color: #3498db;
}
.agenda-content {
flex: 1;
}
.agenda-content h4 {
color: #2c3e50;
margin: 0 0 0.5em 0;
}
.presentation-list {
display: flex;
flex-direction: column;
gap: 1.5em;
}
.presentation-item {
padding: 1.5em;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
border-left: 3px solid #3498db;
}
.presentation-item h4 {
color: #2c3e50;
margin: 0 0 0.5em 0;
}
.presentation-description {
color: #666;
margin-top: 0.5em;
font-size: 0.95em;
line-height: 1.5;
}
.session-note {
font-style: italic;
color: #666;
margin: 1em 0;
padding: 0.5em 1em;
background: rgba(52, 152, 219, 0.1);
border-radius: 4px;
}
@media (max-width: 768px) {
.agenda-item {
flex-direction: column;
gap: 0.5em;
}
.agenda-time {
min-width: auto;
}
.presentation-item {
padding: 1em;
}
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #333;
}
header {
background-image: url('./assets/img/reproduciblehpcbackground.jpg');
background-size: contain;
background-position: bottom;
color: #fff;
text-align: center;
padding: 2rem 1rem;
position: relative;
}
nav {
background-color: #34495e;
padding: 0.5rem;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 0.5rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
padding: 0.5rem;
border-radius: 5px;
transition: background-color 0.3s;
display: inline-block;
}
nav ul li a:hover, nav ul li a.active {
background-color: #2c3e50;
}
.menu-icon {
display: none;
cursor: pointer;
padding: 0.5rem;
color: #fff;
}
main {
background-color: #f9f9f9;
padding: 2rem;
max-width: 60%;
margin: 0 auto;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 8px;
}
.section {
display: none;
}
.section.active {
display: block;
}
h1, h2 {
color: #2c3e50;
}
.cta-button {
display: inline-block;
background-color: #3498db;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
margin: 1rem 0;
}
.header-image {
width: 100%;
max-height: 200px;
object-fit: cover;
}
.speakers {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
margin-top: 2rem;
}
.speaker {
margin: 10px;
padding: 10px;
border: 1px solid #2c3e50;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
max-width: 100%;
}
.speaker-image {
width: 100%;
max-height: 200px;
object-fit: contain;
border-radius: 8px;
margin-bottom: 15px;
}
.speaker h3 {
margin: 0;
color: #333;
}
.speaker h4 {
margin: 10px 0;
color: #666;
}
.abstract {
font-size: 0.9em;
line-height: 1.6;
color: #444;
}
.venue-image, .map-image {
width: 40%;
object-fit: cover;
margin-top: 1rem;
border-radius: 8px;
}
footer {
background-color: #2c3e50;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem 0;
margin-top: auto;
}
footer h2 {
color: #fff;
}
.sponsor-logo {
max-width: 200px;
margin: 1rem;
}
.content-image {
max-width: 100%;
object-fit: cover;
margin: 1rem 1rem 1rem 1rem;
border-radius: 8px;
}
.venue-images {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin-top: 1rem;
}
.registration-image {
width: 200px;
height: 200px;
margin: 1rem auto;
border-radius: 50%;
display: block;
}
.registration-header {
display: flex;
flex-direction: column-reverse;
align-items: center;
}
.callout {
background-color: #f8f9fa;
border-left: 5px solid #4a90e2;
width: 50%;
padding-left: 20px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 10px;
margin: 25px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 0 8px 8px 0;
transition: all 0.3s ease;
}
.callout:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.callout h3 {
color: #4a90e2;
margin-top: 0;
font-size: 1.4em;
border-bottom: 2px solid #4a90e2;
padding-bottom: 10px;
margin-bottom: 15px;
}
.callout h4 {
margin-bottom: 10px;
color: #333;
font-size: 1.2em;
}
.callout p {
margin-bottom: 10px;
line-height: 1.6;
}
.callout-update {
background-color: #f8f9fa;
border-left: 5px solid #e74c3c;
width: 90%;
padding-left: 20px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 10px;
margin: 25px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 0 8px 8px 0;
transition: all 0.3s ease;
}
.callout-update:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.callout-update h3 {
color: #4a90e2;
margin-top: 0;
font-size: 1.4em;
border-bottom: 2px solid #4a90e2;
padding-bottom: 10px;
margin-bottom: 15px;
}
.callout-update h4 {
margin-bottom: 10px;
color: #333;
font-size: 1.2em;
}
.callout-update p {
margin-bottom: 10px;
line-height: 1.6;
}
.gantt-chart {
width: 100%;
max-width: 100%;
margin: 20px auto;
overflow-x: auto;
display:none
}
.gantt-chart svg {
display: block;
width: 800px;
height: auto;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 20px;
}
.gallery-item {
width: 200px;
text-decoration: none;
color: inherit;
transition: transform 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.05);
}
.gallery-item img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 8px;
}
.gallery-caption {
margin-top: 8px;
text-align: center;
font-size: 14px;
}
@media (max-width: 768px) {
.speakers {
flex-direction: column;
align-items: center;
}
.speaker {
max-width: 100%;
}
.venue-images {
flex-direction: column;
}
.venue-image, .map-image {
width: 100%;
}
.registration-header {
flex-direction: column-reverse;
}
}
@media screen and (max-width: 768px) {
nav ul {
display: none;
flex-direction: column;
width: 100%;
}
nav ul.show {
display: flex;
}
nav ul li {
margin: 0.5rem 0;
}
.menu-icon {
display: block;
}
}
.committee-members {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin-top: 2rem;
}
.committee-member {
margin: 10px;
padding: 10px;
border: 1px solid #2c3e50;
border-radius: 8px;
width: 200px;
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.committee-photo {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
}
.committee-member h3 {
margin: 0;
color: #333;
}
.committee-member p {
color: #666;
}
</style>
<link rel="icon" type="image/png" sizes="32x32" href="./assets/img/reproduciblehpcbackground_mini.jpg">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JBCR9NZSQQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JBCR9NZSQQ');
</script>
<body>
<header>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200" class="header-image">
<rect width="800" height="200" fill="#2c3e50"/>
<text x="400" y="60" font-family="Arial, sans-serif" font-size="24" fill="white" text-anchor="middle">Community Workshop on</text>
<text x="400" y="100" font-family="Arial, sans-serif" font-size="32" font-weight="bold" fill="white" text-anchor="middle">Practical Reproducibility in HPC</text>
<text x="400" y="130" font-family="Arial, sans-serif" font-size="16" fill="#3498db" text-anchor="middle">The 5th Chameleon User Meeting</text>
<text x="400" y="170" font-family="Arial, sans-serif" font-size="20" fill="white" text-anchor="middle">November 18, 2024 - Terminus 330, Atlanta, GA</text>
</svg>
</header>
<nav>
<div class="menu-icon">☰ Menu</div>
<ul>
<li><a href="#about" class="active">About</a></li>
<li><a href="#registration">Registration</a></li>
<li><a href="#call-for-presentations">Calls</a></li>
<li><a href="#agenda">Agenda</a></li>
<li><a href="#keynotes">Keynotes</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#organizers">Who We Are/Contact</a></li>
</ul>
</nav>
<main>
<section id="about" class="section active">
<div style="display: flex; flex-direction: column; justify-content: center; align-items: center;">
<h2 style="text-align: center; margin: 5px;">What do we need to make reproducibility for HPC experiments practical?</h2>
<h3 style="text-align: center; margin: 0px;">Come debate with authors and reviewers of artifact evaluation initiatives at HPC conferences, community practitioners, and infrastructure providers!</h3>
<p style="text-align: center; margin: 10px;">Special keynotes from <strong>Dr. Torsten Hoefler</strong> and <strong>Dr. Kate Keahey</strong>.</p>
<div style="display: flex; justify-content: center; align-items: center; gap: 15px; max-width: 600px;">
<img src="assets/img/hoefler_dinfk-2.jpg" alt="Torsten Hoefler" class="speaker-image">
<img src="assets/img/16x9_Keahey Katarzyna 33455D20_web 1.jpg" alt="Kate Keahey" class="speaker-image">
</div>
</div>
<div style="display: flex; flex-direction: column; justify-content: center; align-items: center;">
<a href="#registration" class="cta-button">Register Now</a>
<p style="margin: 0.5em 0;">Questions? Contact event coordinator Marc Richardson (<a href="mailto:[email protected]">[email protected]</a>)</p>
<p style="margin: 0.5em 0;"><strong>Note:</strong> This workshop is not an official workshop of the SC24 conference. Separate registration is required.</p>
</div>
<h2>About the Workshop</h2>
<p>Reproducibility in High-Performance Computing (HPC) and systems
research presents <em>unique challenges</em>. The requirements for
<strong>specialized hardware, scale, and deep
reconfigurability</strong> often make experiments extremely
difficult to reproduce. The diverse nature of HPC research further
complicates matters, with some experiments being relatively
straightforward and low-cost to replicate, while others remain
practically unfeasible. Despite these challenges, the
<strong>potential benefits of reproducibility in HPC are
immense</strong>. Examining experiments from various angles can
yield significant insights, fostering collaboration by allowing
researchers to <em>explore each other's results not just through
reading, but through hands-on experimentation</em>.</p>
<p>Our workshop, colocated in Atlanta with the <strong>premier <a
href="https://sc24.supercomputing.org/">annual conference
showcasing the latest innovations in supercomputing
technology</a></strong>, aims to advance the concept of
<em>practical reproducibility in HPC</em> - a practice where
<strong>reproducing results becomes a mainstream method of
scientific exploration</strong>. We will provide a forum for debate
on the tools, services, and approaches that best support
reproducibility in HPC and systems science, concluding with a
<strong>comprehensive report that captures the community's
collective knowledge and recommendations</strong> for advancing
practical reproducibility in HPC and systems research.</p>
<p>This workshop is supported by the <a
href="https://chameleoncloud.org"><strong>Chameleon
project</strong></a>, a cutting-edge cloud platform designed for
computer science research. Chameleon has been instrumental as a
platform for reproducibility in major conferences, including most
<strong>recently serving as the default platform for the <a
href="https://sc24.supercomputing.org/program/papers/reproducibility-initiative/#infrastructure-for-artifact-evaluation">SC24
Reproducibility Initiative</a></strong> as well as supporting
others like ICPE, ACM CSS, EuroSys, FAST, OSDI/ATC, and more.</p>
<p>We are excited to announce our featured keynotes from
distinguished speakers including <strong>Torsten Hoefler, Professor
of Computer Science at ETH Zurich, and Kate Keahey, Senior Computer
Scientist at Argonne National Laboratory and PI of
Chameleon</strong>. These talks will provide valuable insights into
the <em>state-of-the-art in HPC reproducibility and future
directions</em>.</p>
<h3>Workshop Objectives</h3>
<ul>
<li>Bring together authors and reviewers participating in
reproducibility initiatives associated with HPC and systems
conferences, particularly those leveraging the Chameleon
platform</li>
<li>Share experiences and discuss challenges in implementing
reproducibility in HPC environments</li>
<li>Propose and evaluate features for platforms, tools, and
services that would facilitate easier reproducibility</li>
<li>Explore innovative solutions for reproducible HPC
experiments and enabling platforms</li>
<li>Foster community practices that integrate reproducibility
into mainstream research and education</li>
<li>Establish a repository of exemplar reproducibility
artifacts in HPC</li>
</ul>
<h3>Who Should Attend</h3>
<ul>
<li>HPC researchers and practitioners</li>
<li>Participants in SC's Reproducibility Initiative and similar
programs</li>
<li>Educators interested in reproducibility in HPC
education</li>
<li>Students and early-career researchers in HPC</li>
<li>Tool and platform developers focused on
reproducibility</li>
<li>Anyone interested in advancing reproducibility in
computational science</li>
</ul>
<p>Join us for this full-day workshop as we work together to bridge
the gap between theoretical reproducibility and its practical
application in HPC research.</p>
<h3>Prior Chameleon User Meetings</h3>
<div class="gallery">
<a href="https://www.chameleoncloud.org/chameleon-cloud-users-meeting/user-meeting-2023/" class="gallery-item">
<img src="./assets/img/teaching_with_testbeds.jpg" alt="2023 4th Chameleon User Meeting">
<div class="gallery-caption">2023 4th Chameleon User Meeting</div>
</a>
<a href="https://chameleoncloud.org/chiedge-community-workshop/" class="gallery-item">
<img src="./assets/img/chi_edge.jpg" alt="2021 3rd Chameleon User Meeting">
<div class="gallery-caption">2021 3rd Chameleon User Meeting</div>
</a>
<a href="https://www.chameleoncloud.org/user-meeting-2019/" class="gallery-item">
<img src="./assets/img/Chameleon-youtube(1).png" alt="2019 2nd Chameleon User Meeting">
<div class="gallery-caption">2019 2nd Chameleon User Meeting</div>
</a>
</div>
</section>
<section id="call-for-presentations" class="section">
<h2>Call for Presentations</h2>
<p><strong>As in previous Chameleon User Meetings, the organizers will reimburse travel expenses of up to $1,500 for the presenting authors of the top 10 selected presentation abstracts (one author per abstract). Please, take a look at the Call For Presentations below for details.</strong></p>
<div class="callout">
<h3>Important Dates and Actions</h3>
<p><strong>Submission due date:</strong> NOW: October 21, 2024 at 11:59 PM any time on earth<br>
<strong>Acceptance notification date:</strong> NOW: October 26, 2024<br>
<strong>Send submissions to:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<h3>Presentation Proposal Guidelines</h3>
<p>Presentation proposals should be in PDF format, no longer than 2 pages, and include the following:</p>
<ul>
<li><strong>Project Description:</strong> (One paragraph or less) <br> A brief but clear description of the Computer Science experiment you are packaging or reproducing: What research problem does it address? (What is the hypothesis? What is the challenge/trade-off? Why is it significant?) How does the experiment capture this research problem?</li>
<li><strong>Reproducibility Approach: What is the description of the experiment you are either packaging or reproducing?</strong> (One paragraph or less) <br> What resources does it need and how many? How do those resources need to be configured? What is the experimental environments in which the experiment should run? How are they configured? What does the experiment body consist of? How long and in what manner is the experiment run? What types of data does it produce and how much? How is the data analyzed? What platforms or tools did you use in your experiment? </li>
<li><strong>Lessons Learned:</strong> <br> Good and bad: What were the most important obstacles to either packaging for reproducibility or reproducing the experiment you encountered – and how did you overcome them? Were they on the infrastructure level (hardware availability), configuration level (how the hardware is configured, i.e., “creating an MPI cluster”), executing the experimental workflow, managing or analyzing data? What strategies were effective? How did you decide (or what guidelines did you give to reviewers) as to when the experiment is reproduced? What suggestions or wishes do you have on how support for reproducibility should improve? Specifically, what should improve in (1) the ability to set up an experimental environment, (2) the ability to manage the experiment body, and (3) data analysis? Which of those desired capabilities are the most important ones? Any procedural insights on how to organize reproducibility initiatives?</li>
<li><strong>Impact and Future Directions:</strong> (One paragraph or less) <br> How has prioritizing reproducibility influenced your HPC research or applications? How can the HPC community better integrate reproducibility into mainstream research and education?</li>
</ul>
<h3>Selection Criteria</h3>
<p>Presentations will be selected based on their relevance to HPC-specific reproducibility challenges, the potential to foster discussion, and the insights they offer. We especially encourage submissions with detailed lessons learned, discussion of reproducibility challenges, and experience in reproducibility initiatives.</p>
<p>We particularly encourage submissions that:</p>
<ul>
<li>Have an insightful, detailed, and well-communicated "lessons learned" section</li>
<li>Have a good discussion/analysis of specific reproducibility challenges in HPC</li>
<li>Share experiences from HPC-focused reproducibility initiatives</li>
</ul>
<h3>Travel Support</h3>
<p>For the top 10 selected abstracts, we will reimburse travel expenses of up to $1,500 for the presenting authors (one per abstract). Submitting the presentation proposal doubles as travel support application.</p>
<h3>Workshop Outcomes</h3>
<p>This workshop aims to produce a report capturing the community's collective knowledge and recommendations for advancing practical reproducibility in HPC. Your presentations and participation will directly contribute to this valuable resource.</p>
<p>If you have any questions, please contact us at <a href="mailto:[email protected]">[email protected]</a> or via the Chameleon users list.</p>
</section>
<section id="agenda" class="section">
<h2>Workshop Agenda</h2>
<div class="agenda-toc">
<h3>Schedule Overview</h3>
<em>Times are in local Atlanta time</em>
<div class="agenda-toc-grid">
<div class="agenda-toc-time">8:30 AM - 9:00 AM</div>
<div class="agenda-toc-item">Welcome Reception and Breakfast</div>
<div class="agenda-toc-time">9:00 AM - 10:00 AM</div>
<div class="agenda-toc-item">Introduction and Morning Keynote: Dr. Kate Keahey</div>
<div class="agenda-toc-time">10:00 AM - 10:30 AM</div>
<div class="agenda-toc-item">Morning Break</div>
<div class="agenda-toc-time">10:30 AM - 12:00 PM</div>
<div class="agenda-toc-item">Morning Presentations - Session 1</div>
<div class="agenda-toc-time">12:00 PM - 12:30 PM</div>
<div class="agenda-toc-item">Morning Panel Discussion</div>
<div class="agenda-toc-time">12:30 PM - 1:30 PM</div>
<div class="agenda-toc-item">Lunch Break</div>
<div class="agenda-toc-time">1:30 PM - 2:30 PM</div>
<div class="agenda-toc-item">Afternoon Keynote: Dr. Torsten Hoefler</div>
<div class="agenda-toc-time">2:30 PM - 3:00 PM</div>
<div class="agenda-toc-item">Afternoon Break</div>
<div class="agenda-toc-time">3:00 PM - 4:30 PM</div>
<div class="agenda-toc-item">Afternoon Presentations - Session 2</div>
<div class="agenda-toc-time">4:30 PM - 5:00 PM</div>
<div class="agenda-toc-item">Afternoon Panel Discussion</div>
<div class="agenda-toc-time">5:00 PM - 6:30 PM</div>
<div class="agenda-toc-item">Concluding Remarks & Rooftop Happy Hour</div>
</div>
</div>
<section class="agenda-section">
<h3>Introduction/Morning Keynote (9:00 AM - 10:00 AM)</h3>
<div class="agenda-item">
<div class="agenda-time">8:30 AM - 9:00 AM</div>
<div class="agenda-content">
<h4>Welcome Reception and Breakfast</h4>
</div>
</div>
<div class="agenda-item">
<div class="agenda-time">9:00 AM - 9:15 AM</div>
<div class="agenda-content">
<h4>Introduction/Welcoming Remarks</h4>
<p>Kate Keahey</p>
</div>
</div>
<div class="agenda-item">
<div class="agenda-time">9:15 AM - 10:00 AM</div>
<div class="agenda-content">
<h4>Keynote Address: Adaptable Infrastructures for Reproducible Science - The Chameleon 4 Approach</h4>
<p><strong>Kate Keahey</strong>, Senior Computer Scientist, Argonne National Laboratory</p>
<p class="agenda-description">The landscape of computer science research is evolving at an unprecedented pace, with innovations in AI, data science, edge computing, and beyond. These advancements demand a flexible, powerful infrastructure capable of supporting a wide array of experiments while facilitating reproducibility and collaboration. Dr. Keahey will unveil how Chameleon 4 extends its deeply reconfigurable edge-to-cloud architecture to support emerging research needs, describing enhanced virtualization capabilities, expanded edge computing functionalities, and advanced mechanisms for sharing digital artifacts.</p>
</div>
</div>
</section>
<section class="agenda-section">
<h3>Morning Break (10:00 AM - 10:30 AM)</h3>
</section>
<section class="agenda-section">
<h3>Morning Presentations - Session 1 (10:30 AM - 12:00 PM)</h3>
<p class="session-note">Each presenter will have approximately 15 minutes for their presentation, followed by 2-3 minutes for questions.</p>
<div class="presentation-list">
<div class="presentation-item">
<h4>Artifact Evaluations as Authors and Reviewers: Lessons, Questions, and Frustrations</h4>
<p><strong>Quentin Guilloteau</strong>, University of Basel</p>
<p class="presentation-description">Insights and recommendations from extensive experience with artifact evaluation processes across major conferences.</p>
</div>
<div class="presentation-item">
<h4>Packaging a Testbed for Reproducibility Workflows</h4>
<p><strong>Sam Grayson</strong>, University of Illinois Urbana-Champaign</p>
<p class="presentation-description">An exploration of reproducible package management approaches for workflow systems, with insights on shared system considerations and incremental computation strategies.</p>
</div>
<div class="presentation-item">
<h4>Reproducing C++ Multicore and GPU Benchmark Results on Chameleon Cloud</h4>
<p><strong>Ruben Laso</strong>, University of Vienna</p>
<p class="presentation-description">A detailed examination of STL implementation reproducibility across various compilers and architectures, featuring practical demonstrations using Chameleon Cloud.</p>
</div>
<div class="presentation-item">
<h4>Assessing Visualization Reproducibility in HPC</h4>
<p><strong>Triveni Gurram</strong> and <strong>David Koop</strong>, Northern Illinois University</p>
<p class="presentation-description">Novel approaches for evaluating and ensuring reproducibility in scientific visualizations, with emphasis on meaningful difference detection and validation methods.</p>
</div>
<div class="presentation-item">
<h4>Performance and Power Optimization Strategies Concerning HPC Nodes</h4>
<p><strong>Akhilesh Raj</strong>, Vanderbilt University</p>
<p class="presentation-description">Strategies for real-time monitoring and optimization of power usage in HPC systems using machine learning approaches.</p>
</div>
</div>
</section>
<section class="agenda-section">
<h3>Morning Panel Discussion (12:00 PM - 12:30 PM)</h3>
<p>Featuring morning session 1 presenters</p>
</section>
<section class="agenda-section">
<h3>Lunch Break (12:30 PM - 1:30 PM)</h3>
<p>Complimentary lunch served in the main event room.</p>
</section>
<section class="agenda-section">
<h3>Afternoon Keynote (1:30 PM - 2:30 PM)</h3>
<div class="agenda-item">
<div class="agenda-content">
<h4>Reproducing Performance - The Good, the Bad, and the Ugly</h4>
<p><strong>Torsten Hoefler</strong>, Professor, ETH Zürich</p>
<p class="agenda-description">While containers and Jupyter notebooks are useful tools for reproducing computational results, performance reproducibility presents unique challenges. Dr. Hoefler will outline techniques to facilitate performance reproducibility across various settings, addressing challenges with system-specific results and configurations. The talk will provide guidelines for reproducible science in performance benchmarking, including considerations for performance-accuracy tradeoffs in data science and artificial intelligence contexts.</p>
</div>
</div>
</section>
<section class="agenda-section">
<h3>Afternoon Break (2:30 PM - 3:00 PM)</h3>
</section>
<section class="agenda-section">
<h3>Afternoon Presentations - Session 2 (3:00 PM - 4:30 PM)</h3>
<p class="session-note">Each presenter will have approximately 15 minutes for their presentation, followed by 2-3 minutes for questions.</p>
<div class="presentation-list">
<div class="presentation-item">
<h4>FAIR Assessment of Cloud-based Experiments</h4>
<p><strong>Tanu Malik</strong>, DePaul University</p>
<p class="presentation-description">An analysis of 100+ Chameleon cloud experiments across different categories (tutorials, research, bug reproduction, and coursework) found that while most were reproducible on Chameleon's infrastructure, additional effort was needed to reproduce them on other public cloud platforms.</p>
</div>
<div class="presentation-item">
<h4>AutoAppendix: Towards One-Click Reproducibility of Computational Artifacts Using Chameleon Cloud</h4>
<p><strong>Klaus Kraßnitzer</strong>, IST Austria</p>
<p class="presentation-description">A survey of reproducibility in SC24 submissions, presenting guidelines and best practices for artifact evaluation using Chameleon Cloud.</p>
</div>
<div class="presentation-item">
<h4>Understanding Scalability Bugs in Large-Scale Software Systems</h4>
<p><strong>Bogdan Stoica</strong>, University of Chicago</p>
<p class="presentation-description">Analysis of reproducibility challenges in scalability bugs, examining root causes and proposing improved testing methodologies.</p>
</div>
<div class="presentation-item">
<h4>Hierarchical Federated Learning Based Smart Home System Using Chameleon Testbed</h4>
<p><strong>Kevin Kostage</strong>, Florida Gulf Coast University</p>
<p class="presentation-description">Implementation of privacy-preserving learning systems using Chameleon testbed's infrastructure.</p>
</div>
<div class="presentation-item">
<h4>Energy Consumption as a Metric for HPC Workload Reproducibility</h4>
<p><strong>Adithya Raman</strong>, University at Buffalo</p>
<p class="presentation-description">Development of hardware-agnostic energy profiling approaches for HPC workloads.</p>
</div>
</div>
</section>
<section class="agenda-section">
<h3>Afternoon Panel Discussion (4:30 PM - 5:00 PM)</h3>
<p>Featuring afternoon session 2 presenters</p>
</section>
<section class="agenda-section">
<h3>Concluding Remarks & Happy Hour 🍺 (5:00 PM - 6:30 PM)</h3>
<div class="agenda-item">
<div class="agenda-time">5:00 PM - 5:15 PM</div>
<div class="agenda-content">
<h4>Concluding Summary & Remarks</h4>
</div>
</div>
<div class="agenda-item">
<div class="agenda-time">5:15 PM - 6:30 PM</div>
<div class="agenda-content">
<h4>Rooftop Happy Hour</h4>
</div>
</div>
</section>
<div class="content-image-container">
<img src="https://static.showit.co/1600/KVQJAP3tQE-dvur-G5pIVw/205151/rooftop_3.jpg"
alt="Terminus 330 Rooftop Terrace"
class="content-image">
<p class="image-caption">Join us for a rooftop happy hour at the beautiful Terminus 330</p>
</div>
</section>
<section id="keynotes" class="section">
<h2>Keynotes</h2>
<p>The workshop will feature keynotes on the state of
reproducibility in HPC from our distinguished speakers.
Additionally, panel discussions with authors and reviewers who have
participated in reproducibility initiatives at HPC
and systems conferences, such as SC, will share their experiences
in creating, evaluating, and ranking HPC artifacts to support
reproducibility.</p>
<div class="speakers">
<div class="speaker">
<img src="./assets/img/hoefler_dinfk-2.jpg" alt="Torsten Hoefler" class="speaker-image">
<h3>Torsten Hoefler</h3>
<h4>Keynote: Reproducing Performance - The Good, the Bad, and the Ugly</h4>
<p class="abstract">Containers and Jupyter notebooks are useful tools for reproducing computational results of any packaged application. However, if the execution performance or efficiency is the science result, matters are more complex. It may not be sufficient to package codes in containers. In fact, containers may disturb the performance results and reproducibility. We outline a set of techniques to facilitate performance reproducibility in various settings. Some performance results may be linked to specific computer architectures or even specific system configurations that may not be accessible to other researchers or even the original team after a software update. We outline techniques to help researchers interpret results on the original system even if it is practically impossible to reproduce the original results. We discuss such techniques both in the context of pure performance but also in the context of the emerging field of data science and artificial intelligence that often allows for a performance-accuracy tradeoff. All-in-all, our work provides a set of guidelines to follow to support reproducible science of performance and benchmarking.</p>
</div>
<div class="speaker">
<img src="./assets/img/16x9_Keahey Katarzyna 33455D20_web 1.jpg" alt="Kate Keahey" class="speaker-image">
<h3>Kate Keahey</h3>
<h4>Keynote: Adaptable Infrastructures for Reproducible Science - The Chameleon 4 Approach</h4>
<p class="abstract">The landscape of computer science research is evolving at an unprecedented pace, with innovations in AI, data science, edge computing, and beyond. These advancements demand a flexible, powerful infrastructure capable of supporting a wide array of experiments while facilitating reproducibility and collaboration. Chameleon 4, the latest iteration of the NSF-funded testbed, rises to meet these challenges. In this keynote, Dr. Keahey will unveil how Chameleon 4 extends its deeply reconfigurable edge-to-cloud architecture to support emerging research needs. She will describe the testbed's enhanced virtualization capabilities, expanded edge computing functionalities, and advanced mechanisms for sharing digital artifacts. Dr. Keahey will illustrate how these features, combined with Chameleon's existing bare-metal reconfigurability and diverse hardware offerings, create an unparalleled platform for reproducible science. The talk will explore Chameleon 4's approach to federation, enabling seamless integration with other research infrastructures, and discuss how the platform's adaptability ensures it can evolve alongside the ever-changing frontiers of computer science research. Through real-world examples and future roadmaps, attendees will gain insight into how Chameleon 4 is poised to accelerate innovation and foster a more open, collaborative scientific community in the realm of HPC and beyond.</p>
</div>
</div>
</section>
<section id="venue" class="section">
<h2>See You in Atlanta!</h2>
<div class="venue-images">
<img src="./assets/img/Group 7.jpg" alt="Map to Terminus 330" class="map-image">
<img src="./assets/img/samsara_ss_atl_2019-7.jpg" alt="Terminus 330, Atlanta, GA" class="venue-image">
</div>
<div class="callout">
<p><strong>Address</strong></p>
<p>330 Marietta St NW <br>
Atlanta, GA 30313</p>
</div>
<p>The workshop will be held at <strong><a
href="https://terminus330.com/">Terminus 330</a></strong>, a
state-of-the-art venue in the heart of Atlanta, GA, conveniently
located right around the corner from the Georgia World Congress
Center where the biggest annual conference in supercomputing is
being held November 17-22, 2024.</p>
<h2>Lodging</h2>
<p>Our workshop is conveniently located in the heart of downtown
Atlanta. There are many <a
href="https://discoveratlanta.com/hotels/main/">high-quality hotels
and lodgings in the area</a>. If you are also in town for the big
HPC conference, we recommend checking out <a
href="https://sc24.supercomputing.org/attend/housing/">their
resources</a> for more options.</p>
<h2>Travel</h2>
<h3>Getting to Atlanta</h3>
<p>Atlanta is easily accessible by air and ground transportation:</p>
<ul>
<li><strong>By Air:</strong> Hartsfield-Jackson Atlanta
International Airport (ATL) is the primary airport serving
Atlanta.</li>
<li><strong>By Car:</strong> Atlanta is intersected by several
major interstate highways, making it easily accessible by car
from many parts of the United States.</li>
<li><strong>By Train:</strong> Amtrak's Crescent line serves
Atlanta, connecting it to major cities in the Northeast and New
Orleans.</li>
</ul>
<h3>Getting to the Venue</h3>
<p>Terminus 330 is located in downtown Atlanta. Here are some
options for getting to the venue:</p>
<ul>
<li><strong>From the Airport:</strong> Take the MARTA train
from the airport to downtown Atlanta. The venue is a short walk
or ride-share trip from several MARTA stations.</li>
<li><strong>By Public Transit:</strong> Atlanta's MARTA system
provides bus and rail service throughout the city. Check the <a
href="https://www.itsmarta.com/">MARTA website</a> for routes
and schedules.</li>
<li><strong>By Car:</strong> If driving, there are several
parking options near the venue. We recommend checking online
parking apps for the best rates.</li>
<li><strong>Ride-sharing:</strong> Services like Uber and Lyft
are widely available in Atlanta and can be a convenient option
for getting around the city.</li>
</ul>
<p>For more information on getting around Atlanta, visit the <a
href="https://discoveratlanta.com/explore/transportation/">official
Atlanta tourism website</a>.</p>
</section>
<section id="registration" class="section">
<a
href="https://www.eventbrite.com/e/community-workshop-on-practical-reproducibility-in-hpc-tickets-1000658535617"
target="_blank" class="cta-button">Register Here</a>
<div class="registration-header">
<img src="./assets/img/Gemini_Generated_Image_uz33qzuz33qzuz33.jpg" alt="Registration Illustration" class="registration-image">
<div>
<h2>Registration Details</h2>
<p><strong>Early Bird Registration (NOW UNTIL Oct. 25, 2024):</strong> $20</p>
<p><strong>Regular Registration (Oct. 26 - Nov. 18,
2024):</strong> $100</p>
<p><em>All registration fees will cover event-related
costs. Limited sponsorships are available to cover costs
for presenters. Eligible registrations will receive a
code.</em></p>
<p><strong>Note:</strong> Seats are limited. Register early
to secure your spot and take advantage of the early bird
discount!</p>
</div>
</div>
</section>
<section id="organizers" class="section">
<h3>Contact Us</h3>
<p>For any questions or feedback, send us an email at <a
href="mailto:[email protected]">[email protected]</a>
or reach out to one of our <strong>event coordinators</strong>:</p>
<p>Name: Marc Richardson<br>Email: <a
href="mailto:[email protected]">[email protected]</a></p>
<p>Name: Roberto Vale<br>Email: <a
href="mailto:[email protected]">[email protected]</a></p>
<h3>Planning Committee</h3>
<p>Meet the dedicated team assisting the Community Workshop on Practical Reproducibility in HPC.</p>
<div class="committee-members">
<div class="committee-member">
<img src="https://www-staging.isi.edu/wp-content/uploads/headshots/bkocolos-2.jpg" alt="Brian Kocoloski" class="committee-photo">
<h3><a href="https://www-staging.isi.edu/directory/bkocolos/" target="_blank">Brian Kocoloski</a></h3>
<p>USC Information Sciences Institute</p>
</div>
<div class="committee-member">
<img src="https://engineering.nyu.edu/sites/default/files/styles/square_large_620_2x/public/2019-08/ffund-800.jpg?h=fbf7a813&itok=SqYh_mxE" alt="Fraida Fund" class="committee-photo">
<h3><a href="https://engineering.nyu.edu/faculty/fraida-fund" target="_blank">Fraida Fund</a></h3>
<p>New York University</p>
</div>
<div class="committee-member">
<img src="https://informatics.tuwien.ac.at/people/sascha-hunold/picture/head-1x.webp" alt="Sascha Hunold" class="committee-photo">
<h3><a href="https://informatics.tuwien.ac.at/people/sascha-hunold" target="_blank">Sascha Hunold</a></h3>
<p>Vienna University of Technology</p>
</div>
<div class="committee-member">
<img src="https://odata.cdm.depaul.edu/Cdm.svc/CdmEmployeePictures(1135817)/MediumPicture/$value" alt="Tanu Malik" class="committee-photo">
<h3><a href="https://www.cdm.depaul.edu/Faculty-and-Staff/Pages/faculty-info.aspx?fid=1328" target="_blank">Tanu Malik</a></h3>
<p>DePaul University</p>
</div>
<div class="committee-member">
<img src="https://media.licdn.com/dms/image/v2/C5603AQHkH0RbhWDzEg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517790337001?e=1735171200&v=beta&t=hdo9xD4QmmFNOIXGiRTCsqpHHESf_sJO3Ntvt1p6OUY" alt="Rafa Tolosana Calasanz" class="committee-photo">
<h3><a href="https://www.linkedin.com/in/rafael-tolosana-calasanz-70949012/?originalSubdomain=es" target="_blank">Rafa Tolosana Calasanz</a></h3>
<p>University of Zaragoza</p>
</div>
</div>