-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.src
More file actions
1200 lines (894 loc) · 45 KB
/
publications.src
File metadata and controls
1200 lines (894 loc) · 45 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
%include('html_intro.inc')
<meta name="keywords" content="pub">
<meta name="description" content="NCCS TechInt group publications">
<title>Technology Integration Group: Publications</title>
%include('hdbody.inc')
%include('hdrnav.inc')
%include('content_intro.inc')
<h2>Publications</h2>
<!--
* Our citation format is
*
* [Title] [Author names] [Published conference or journal names], [Date, Place, etc]
*
* Title is <strong></strong> with no quotes.
*
* Publication is <em></em>, date, place, etc are not.
*
* Publications are ordered from most to least recent. If a date does
* not include a month, the item sorts to the bottom (oldest)
* position in the list.
*
* No matter what format a citation is submitted in, it should be
* arranged as described above for display on this page.
-->
<h3 id="2019">2019</h3>
<ul class="year_list">
<!-- ============================================================== -->
<!-- <li><h4>Storage</h4> -->
<!-- ============================================================== -->
<li><h4>Data Management</h4>
<ul>
<li>
<strong>Data Jockey: Automatic Data Management for HPC Multi-Tiered
Storage Systems</strong>,
Woong Shin, Christopher D. Brumgard, Bing Xie, Sudharshan S. Vazhkudai,
Devarshi Ghoshal, Sarp Oral, Lavanya Ramakrishnan,
<em>Proceedings of the 33rd IEEE International Parallel & Distributed
Processing Symposium (IPDPS 2019), Rio de Janeiro, Brazil, May 2019</em>
</li>
</ul>
<!-- ============================================================== -->
<!-- <li><h4>Non-Volatile Memory</h4> -->
<!-- ============================================================== -->
<li><h4>System Architecture and Resilience</h4>
<ul>
<li>
<strong>AHEAD: A Tool for Projecting Next-Generation Hardware
Enhancements on GPU-Accelerated Systems</strong>,
Hazem A. Abdelhafez, Christopher Zimmer, Sudharshan S. Vazhkudai and
Matei Ripeanu,
<em>Proceedings of the 21st Workshop on Advances in Parallel and
Distributed Computational Models (APDCM 2019), co-located with IPDPS’19,
Rio de Janeiro, Brazil, May 2019</em>
</li>
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2018">2018</h3>
<ul class="year_list">
<!-- ============================================================== -->
<!-- <li><h4>Storage</h4> -->
<!-- ============================================================== -->
<!-- <li><h4>Data Management</h4> -->
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li>
<strong>An Analysis Workflow-Aware Storage System for Multi-Core Active
Flash Arrays</strong>,
Hyogi Sim, Geoffroy Vallee, Youngjae Kim, Sudharshan S. Vazhkudai,
Devesh Tiwari and Ali R. Butt,
<em>IEEE Transactions on Parallel and Distributed Systems (TPDS), 2018
</em>
<li>
<strong>A Programmable Shared-Memory System for an Array of
Processing-In-Memory Devices</strong>,
Sangkeun Lee, Hyogi Sim, Youngjae Kim, Sudharshan S. Vazhkudai,
<em>Journal of Cluster Computing, 2018</em>
</ul>
<!-- ============================================================== -->
<li><h4>System Architecture and Resilience</h4>
<ul>
<li>
<strong>Exploring the Optimal Platform Configuration for
Power-constrained HPC Workflows</strong>,
Kun Tang, Xubin He, Saurabh Gupta, Sudharshan S. Vazhkudai, and Devesh
Tiwari,
<em>Proceedings of the 27th International Conference on Computer
Communications and Networks (ICCCN 2018), Hangzhou, China, July
2018</em>
<li>
<strong>GPU Age-Aware Scheduling to Improve the Reliability of
Leadership Jobs on Titan</strong>,
Christopher J. Zimmer, Don Maxwell, Scott Atchley, Sudharshan S.
Vazhkudai, Stephen McNally,
<em>Proceedings of Supercomputing 2018 (SC18): 31th Int'l Conference on
High Performance Computing, Networking, Storage and Analysis, Dallas,
TX, November 2018</em>
<li>
<strong>The Design, Deployment, and Evaluation of the CORAL Pre-Exascale
Systems</strong>,
Sudharshan S. Vazhkudai, Bronis R. de Supinski, Arthur S. Bland, Al
Geist, James Sexton, Jim Kahle, Christopher J. Zimmer, Scott Atchley,
Sarp H. Oral, Don E. Maxwell, Veronica G. Vergara Larrea, Adam Bertsch,
Robin Goldstone, Wayne Joubert, Chris Chambreau, David Appelhans, Robert
Blackmore, Ben Casses, George Chochia, Gene Davison, Matthew A. Ezell,
Tom Gooding, Elsa Gonsiorowski, Leopold Grinberg, Bill Hanson, Bill
Hartner, Ian Karlin, Matthew L. Leininger, Dustin Leverman, Chris
Marroquin, Adam Moody, Martin Ohmacht, Ramesh Pankajakshan, Fernando
Pizzano, James H. Rogers, Bryan Rosenburg, Drew Schmidt, Mallikarjun
Shankar, Feiyi Wang, Py Watson, Bob Walkup, Lance D. Weems, Junqi Yin,
<em>Proceedings of Supercomputing 2018 (SC18): 31th Int'l Conference on
High Performance Computing, Networking, Storage and Analysis, Dallas,
TX, November 2018</em>
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2017">2017</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>System Architecture</h4>
<ul>
<li>
<strong>Understanding Object-level Memory Access Patterns Across the
Spectrum</strong>,
Xu Ji, Chao Wang, Nosayba El-Sayed, Xiaosong Ma, Youngjae Kim,
Sudharshan S. Vazhkudai, Wei Xue, Daniel Sanchez,
<em>Proceedings of Supercomputing 2017 (SC17): 30th Int'l Conference on
High Performance Computing, Networking, Storage and Analysis, Denver,
CO, November 2017</em>
<li>
<strong>Toward Managing HPC Burst Buffers Effectively: Draining Strategy
to Regulate Bursty I/O Behavior</strong>,
Kun Tang, Ping Huang, Xubin He, Tao Lu, Sudharshan S. Vazhkudai, and
Devesh Tiwari,
<em>Proceedings of the 25th IEEE International Symposium on Modeling,
Analysis and Simulation of Computer and Telecommunication Systems
(MASCOTS 2017), Banff, Canada, September 2017</em>
<li>
<strong>Effective Running of End-to-end HPC Workflows on Emerging
Heterogeneous Architectures</strong>,
Kun Tang, Devesh Tiwari, Saurabh Gupta, Sudharshan S. Vazhkudai, Xubin
He,
<em>Proceedings of IEEE Cluster 2017, Honolulu, HI, September 2017</em>
</ul>
<!-- ============================================================== -->
<li><h4>Storage</h4>
<ul>
<li>
<strong>GUIDE: A Scalable Information Directory Service to Collect,
Federate, and Analyze Logs for Operational Insights into a Leadership
HPC Facility</strong>,
Sudharshan S. Vazhkudai, Ross Miller, Devesh Tiwari, Christopher Zimmer,
Feiyi Wang, Sarp Oral, Raghul Gunasekaran, Deryl Steinert,
<em>Proceedings of Supercomputing 2017 (SC17): 30th Int'l Conference on
High Performance Computing, Networking, Storage and Analysis</em>,
Denver, CO, November 2017
<li>
<strong>Scientific User Behavior and Data-Sharing Trends in a Petascale
File System</strong>,
Seung-Hwan Lim, Hyogi Sim, Raghul Gunasekaran, Sudharshan S. Vazhkudai,
<em>Proceedings of Supercomputing 2017 (SC17): 30th Int'l Conference on
High Performance Computing, Networking, Storage and Analysis</em>,
Denver, CO, November 2017
<li>
<strong>Diving into Petascale Production File Systems through Large
Scale Profiling and Analysis</strong>,
Feiyi Wang, Hyogi Sim, Cameron Harr, Sarp Oral,
<em>Proceedings of the 2nd Joint International Workshop on Parallel Data
Storage & Data Intensive Scalable Computing Systems
(PDSW-DISCS '17) held in conjunction with SC17</em>,
Denver, CO, November 2017
</ul>
<!-- ============================================================== -->
<li><h4>Data Management</h4>
<ul>
<li>
<strong>Applying Graph Analytics to Understand Compute Core Usage and
Publication Trends in a Petascale Supercomputing Facility</strong>,
Sangkeun Lee, Sudharshan S. Vazhkudai, and Raghul Gunasekaran,
<em>Proceedings of the 24th IEEE Int'l Conference on High Performance
Computing, Data, and Analytics (HiPC), Jaipur, India, December 2017
</em>
<li>
<strong>TagIt: An Integrated Indexing and Search Service for File
Systems</strong>,
Hyogi Sim, Youngjae Kim, Sudharshan S. Vazhkudai, Geoffroy R. Vallee,
Seung-Hwan Lim, Ali R. Butt,
<em>Proceedings of Supercomputing 2017 (SC17): 30th Int'l Conference on
High Performance Computing, Networking, Storage and Analysis</em>,
Denver, CO, November 2017
</ul>
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li>
<strong>AnalyzeThat: A Programmable Shared-Memory System for an Array
of Processing-In-Memory Devices</strong>,
Sangkuen Lee, Hyogi Sim, Youngjae Kim, and Sudharshan S. Vazhkudai
<em>IEEE/ACM International Symposium on Cluster, Cloud and Grid
Computing (CCGRID '17)</em>, Madrid, Spain, May 2017
</ul>
<!-- ============================================================== -->
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2016">2016</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>Storage</h4>
<ul>
<li>
<strong>Server-side Log Data Analytics for I/O Workload
Characterization and Coordination on Large Shared Storage
Systems</strong>,
Yang Liu, Raghul Gunasekaran, Xiaosong Ma, and Sudharshan S.
Vazhkudai,
<em>Proceedings of Supercomputing 2016 (SC16): 29th Int'l
Conference on High Performance Computing, Networking,
Storage and Analysis</em>, Salt Lake City, UT, November
2016.
<li>
<strong>FCP: A Fast and Scalable Data Copy Tool for High Performance
Parallel File Systems</strong>,
Feiyi Wang, Veronica Vergara Larrea, Dustin Leverman, Sarp Oral,
<em>The 38th Cray User Group (CUG 2016)</em>, May, 2016.
<li>
<strong>Finally, a Way to Measure Frontend I/O Performance</strong>
Christopher Zimmer, Saurabh Gupta, Veronica Vergara Larrea,
<em>The 38th Cray User Group (CUG 2016)</em>, May, 2016.
</ul>
<!-- ============================================================== -->
<li><h4>Data management</h4>
<ul>
<li>
<strong>Constellation: A Science Graph Network for Scalable
Data and Knowledge Discovery in Extreme-Scale Scientific
Collaborations</strong>,
Sudharshan S. Vazhkudai, John Harney, Raghul Gunasekaran,
Dale Stansberry, Seung-Hwan Lim, Tom Barron, Andrew Nash and
Arvind Ramanathan,
<em>Proceedings of the IEEE Workshop on Big Data Metadata
and Management</em>, Washington D.C., December 2016.
<li>
<strong>An I/O Load Balancing Framework for Large-scale
Applications (BPIO 2.0)</strong> (Poster),
Sarah Neuwirth, Feiyi Wang, Sarp Oral, Sudharshan S.
Vazhkudai, Ulrich Bruening,
<em>Proceedings of Supercomputing 2016 (SC16): 29th Int'l
Conference on High Performance Computing, Networking,
Storage and Analysis</em>, Salt Lake City, UT, November
2016.
<li>
<strong>Using Balanced Data Placement to Address I/O
Contention in Production Environments</strong>,
Sarah Neuwirth, Feiyi Wang, Sarp Oral, Sudharshan S.
Vazhkudai, James Rogers, Ulrich Bruening,
<em>Proceedings of the Int'l Symposium on Computer Architecture
and High Performance Computing</em>, Los Angeles, CA, October
2016.
<li>
<strong>TagIt: An Integrated Search and Discovery Service
for Extreme-Scale File Systems (Poster)</strong>,
Hyogi Sim, Youngjae Kim, Sudharshan S. Vazhkudai, Geoffroy
R. Vallee, Seung-Hwan Lim, and Ali R. Butt,
<em>Proceedings of the USENIX Annual Technical Conference
(ATC)</em>, Denver, CO, June 2016.
</ul>
<!-- ============================================================== -->
<li><h4>System Architecture and Resilience</h4>
<ul>
<li>
<strong>A Multi-faceted Approach to Job Placement for Improved
Performance on Extreme-Scale Systems</strong>,
Christopher Zimmer, Saurabh Gupta, Scott Atchley, Sudharshan
S. Vazhkudai, and Carl Albing,
Proceedings of Supercomputing 2016 (SC16): 29th Int'l
Conference on High Performance Computing, Networking,
Storage and Analysis, Salt Lake City, UT, November 2016.
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2015">2015</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>Storage</h4>
<ul>
<li>
<strong>A Practical Approach to Reconciling Availability,
Performance, and Capacity in Provisioning Extreme-scale
Storage Systems</strong>,
Lipeng Wan, Feiyi Wang, Sarp Oral, Devesh Tiwari, Sudharshan
S. Vazhkudai, Qing Cao,
<em>Proceedings of Supercomputing 2015 (SC15): 28th Int'l
Conference on High Performance Computing, Networking,
Storage and Analysis</em>, Austin, TX, November 2015
</ul>
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li>
<strong>AnalyzeThis: An Analysis Workflow-Aware Storage
System</strong>,
Hyogi Sim, Youngjae Kim, Sudharshan S. Vazhkudai, Devesh
Tiwari, Ali Anwar, Ali R. Butt, Lavanya Ramakrishnan,
<em>Proceedings of Supercomputing 2015 (SC15): 28th Int'l
Conference on High Performance Computing, Networking,
Storage and Analysis</em>, Austin, TX, November 2015.
</ul>
<!-- ============================================================== -->
<li><h4>System Architecture and Resilience</h4>
<ul>
<li>
<strong>Spatial Locality-Aware Cache Partitioning for
Effective Cache Sharing</strong>,
Saurabh Gupta and Huiyang Zhou,
To appear in <em>The 44th Internation Conference on Parallel
Processing (ICPP 2015)</em>, September, 2015.
<li>
<strong>Understanding and Exploiting Spatial Properties of
System Failures on Extreme-Scale HPC Systems</strong>,
Saurabh Gupta, Devesh Tiwari, Christopher J. Jantzi, James
H. Rogers, Don Maxwell,
In <em>The 45th IEEE Conference on Dependable
Systems and Networks (DSN 2015)</em>, June, 2015.
<li>
<strong>Experience with GPUs on the Titan Supercomputer from
a Reliability, Performance and Power Perspective</strong>,
Devesh Tiwari, Saurabh Gupta, Jim Rogers, Don Maxwell,
In <em>The 37th Cray user Group (CUG 2015)</em>, April, 2015.
<li>
<strong>Understanding GPU Errors on Large-scale HPC Systems
and the Implications for System Design and
Operation</strong>,
Devesh Tiwari, Saurabh Gupta, Jim Rogers, Don Maxwell, Paolo
Rech, Sudharshan Vazhkudai, Daniel Oliveira, Dave Londo,
Nathan Debardeleben, Philippe Navaux, Luigi Carro, and
Arthur Buddy Bland,
In <em>Proceedings of 21st IEEE Symposium on High
Performance Computer Architecture (HPCA 2015)</em>, February,
2015.
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2014">2014</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>File and Storage Systems</h4>
<ul>
<li>
<strong>Improving Large-scale Storage System Performance via
Topology-aware and Balanced Data Placement</strong>,
Feiyi Wang, Sarp Oral, Saurabh Gupta, Devesh Tiwari, and
Sudharshan Vazhkudai
In <em>Proceedings of 20th IEEE International Conference on
Parallel and Distributed Systems (ICPADS 2014)</em>,
December, 2014.
<li>
<strong>Best Practices and Lessons Learned from Deploying
and Operating Large-Scale Data-Centric Parallel File
Systems</strong>,
Sarp Oral, James Simmons, Jason Hill,
Dustin Leverman, Feiyi Wang, Matt Ezell, Ross Miller,
Douglas Fuller, Raghul Gunasekaran, Youngjae Kim, Saurabh
Gupta, Devesh Tiwari, Sudharshan S. Vazhkudai, James H.
Rogers, David Dillow, Arthur S. Bland, Galen M. Shipman,
<em>Proceedings of Supercomputing 2014 (SC14): 27th IEEE/ACM
Int'l Conference on High Performance Computing, Networking,
Storage and Analysis</em>, New Orleans, Louisiana, November
2014. (Best Paper Finalist)
<li><strong>Automatic Identification of Applications I/O
Signatures from Noisy Server-Side Traces</strong>,
Yang Liu, Raghul Gunasekaran, Xiaosong Ma, Sudharshan S.
Vazhkudai.
<em>Proceedings of the USENIX Conference on File
and Storage Technologies (FAST 2014)</em>, Santa Clara,
California, February 2014.
<li>
<strong>HybridPlan: A Capacity Planning Technique for
Projecting Storage Requirements in Hybrid Storage
Systems</strong>,
Youngjae Kim, Aayush Gupta, Bhuvan Urgaonkar, Piotr Berman,
Anand Sivasubramaniam,
<em>Springer Journal of Supercomputing
(JSC)</em>, Vol. 67, No. 1, pp. 277-303, January 2014.
<li><strong>Synchronous I/O Scheduling of Independent Write
Caches for an Array of SSDs</strong>,
Junghee Lee, Youngjae Kim, Jongman Kim, Galen M. Shipman.
<em>(to appear) IEEE Computer Architecture Letters
(CAL)</em>, 2014.
<li>
<strong>Realizing Accelerated Cost-Effective Distributed
RAID</strong>,
Aleksandr Khasymski, M. Mustafa Rafique, Ali R. Butt,
Sudharshan S. Vazhkudai, and Dimitrios S. Nikolopoulos,
Chapter in <em>Handbook on Data Centers</em>, edited by
Albert Y. Zomaya and Samee U. Khan, Springer, 2014.
</ul>
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li><strong>Coordinated Garbage Collection for RAID Array of
Solid State Disks</strong>,
Inventors (ordered by inventor's last name) David Dillow,
Youngjae Kim, Sarp Oral, Galen Shipman, Feiyi Wang,
U.S. Patent No. 8,713,268, Issued: April 29, 2014.
<li>
<strong>Coordinating Garbage Collection for Arrays of
Solid-state Drives</strong>,
Youngjae Kim, Junghee Lee, Sarp Oral, David Dillow, Feiyi
Wang, Galen M. Shipman,
<em>IEEE Transactions on Computers (IEEE TC)</em>, Vol. 63,
No. 4, pp. 888-901, April 2014.
</ul>
<!-- ============================================================== -->
<!-- <li><h4>Data Management</h4> -->
<!-- ============================================================== -->
<!-- <li><h4>Networking</h4> -->
<!-- ============================================================== -->
<li><h4>System Architecture and Resilience</h4>
<ul>
<li>
<strong>Feedback Computing in Leadership Compute
Systems</strong>,
Raghul Gunasakaren and Youngjae Kim,
<em>Proceedings of the 9th International Workshop of
Feedback Computing in conjunction with ICAC'14 (Feedback
Computing'14)</em>, Philadelphia, June 2014.
<li>
<strong>Lazy Checkpointing: Exploiting Temporal Locality in
Failures to Mitigate Checkpointing Overheads on
Extreme-Scale Systems</strong>,
Devesh Tiwari, Saurabh Gupta, Sudharshan S. Vazhkudai,
<em>Proceedings of the 44th Annual IEEE/IFIP International
Conference on Dependable Systems and Networks (DSN
2014)</em>, Atlanta, Georgia, June 2014. (Best Paper Finalist)
<li>
<strong>MapReuse: Reusing Computation in an In-Memory
MapReduce System</strong>,
Devesh Tiwari and Yan Solihin,
<em>Proceedings of the 29th IEEE International Parallel &
Distributed Processing Symposium (IPDPS)</em>, May, 2014.
<li>
<strong>I/O Router Placement and Fine-Grained Routing on
Titan to Support Spider II</strong>,
Matt Ezell, Dave Dillow, Sarp Oral, Feiyi Wang, Devesh
Tiwari, Don Maxwell, Dustin Leverman, Jason Hill,
<em>Proceedings of the Cray User Group Conference
(CUG)</em>, May, 2014.
<li>
<strong>SSD Provisioning for Exascale Storage System: When,
Where and How much?</strong>,
Devesh Tiwari, Sarp Oral, Feiyi Wang, Saurabh Gupta and
Josh Judd,
<em>Proceedings of the Lustre User Group Meetings (LUG)</em>,
April, 2014.
<li>
<strong>Transparent Fault Tolerance for Job Input Data in
HPC Environments</strong>,
Chao Wang, Sudharshan S. Vazhkudai, Xiaosong Ma, Frank Mueller,
Chapter in <em>Handbook on Data Centers</em>, edited by
Albert Y. Zomaya and Samee U. Khan, Springer, 2014.
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2013">2013</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>File and Storage Systems</h4>
<ul>
<li><strong>Asynchronous Object Storage with QoS for Scientific
and Commercial Big Data</strong>, Michael J. Brim, David A.
Dillow, Sarp Oral, Bradley W. Settlemyer, Feiyi Wang,
<em>Proceedings of the 8th Parallel Data Storage Workshop (PDSW)
held in conjunction with SC'13</em>, Denver, CO, November 2013.
<li><strong>Performance and Scalability Evaluation of the Ceph
Parallel File System</strong>, Feiyi Wang, Mark Nelson, Sarp
Oral, Scott Atchely, Sage Weil, Brad Settlemyer, Blake Caldwell,
Jason Hill, <em>Proceedings of the 8th Parallel Data Storage
Workshop (PDSW) held in conjunction with SC'13</em>, Denver, CO,
November 2013.
<li><strong>OLCF's 1 TB/s, Next-Generation Lustre File
System</strong>, Sarp Oral, David A. Dillow, Douglas Fuller,
Jason Hill, Dustin Leverman, Sudharshan S. Vazhkudai, Feiyi
Wang, Youngjae Kim, James Rogers, James Simmons, Ross Miller,
<em>Proceedings of the Cray User Group Conference (CUG)</em>,
Napa Valley, California, May 2013.
<li><strong>Taking Advantage of Multicore for the Lustre Gemini
LND Driver</strong>, James A. Simmons and John Lewis,
<em>Proceedings of the Cray User Group Conference (CUG)</em>,
Napa Valley, California, May 2013.
</ul>
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li><strong>A Temporal Locality-aware Page-Mapped Flash
Translation Layer</strong>, Youngjae Kim, Aayush Gupta, Bhuvan
Urgaonkar, <em>Journal of Computer Science and Technology
(JCST)</em>, Vol. 28, No. 6, pp. 1025-1044, November 2013.
<li><strong>Preemptible I/O Scheduling of Garbage Collection
for Solid-state Drives</strong>, Junghee Lee, Youngjae Kim,
Galen M. Shipman, Sarp Oral, Jongman Kim,
<em>IEEE Transactions on Computer-Aided Design of Integrated Circuits
and Systems (IEEE TCAD)</em>, Vol. 32, No. 2, pp. 247-260, February 2013.
<li><strong>Active Flash: Towards Energy-Efficient, In-Situ
Data Analytics on Extreme-Scale Machines</strong>, Devesh
Tiwari, Simona Bobila, Sudharshan Vazhkudai, Youngjae Kim,
Xiaosong Ma, Peter Desnoyers, Yan Solin.
<em>Proceedings of the USENIX Conference on File and Storage
Technologies (FAST 2013)</em>, 2013.
</ul>
<!-- ============================================================== -->
<li><h4>Data Management</h4>
<ul>
<li><strong>Design and Implementation of a Scalable Climate
Data System in Support of HPC Environment</strong>,
Feiyi Wang<sup>1</sup>,
John Harney<sup>1</sup>,
Tom Barron<sup>1</sup>,
Galen Shipman<sup>1</sup>,
Dean Williams<sup>2</sup>,
Luca Cinquini<sup>3</sup>,
<sup>1</sup>Oak Ridge National Laboratory,
Oak Ridge, Tennessee 37831,
<sup>2</sup>Lawrence Livermore National Laboratory,
Livermore, California 94550,
<sup>3</sup>Jet Propulsion Laboratory,
Pasadena, California 91109,
<em>In submission</em>.
</ul>
<!-- ============================================================== -->
<li><h4>Networking</h4>
<ul>
<li><strong>End-to-End Data Movement Using MPI-IO Over Routed
Terabits Infrastructures</strong>, Geoffroy R. Vallee,
Scott Atchley, Youngjae Kim, Galen M. Shipman.
<em>Proceedings of the IEEE/ACM International Workshop on
Network-aware Data Management in conjunction with
SC'13</em>, Denver, CO, November 2013.
<li><strong>Layout-aware I/O Scheduling for Terabit Data
Movement</strong>, Youngjae Kim, Scott Atchley, Geoffroy R.
Vallee, Galen M. Shipman. <em>Proceedings of the Workshop on
Distributed Storage Systems and Coding for Big Data held in
conjunction with IEEE Big Data'13</em>, San Jose, CA, October
2013.
<li>
<strong>On Timely Staging of HPC Job Input Data</strong>,
H. Monti, A. R. Butt, S.S. Vazhkudai,
<em>IEEE Transactions on Parallel and Distributed Systems
(TPDS)</em>, Vol. 24, No. 9, pp. 1841-1851, September 2013.
<li><strong>SeaStar Unchained: Multiplying the Performance of
the Cray SeaStar Network</strong>, David A. Dillow, Scott
Atchley, <em>Proceedings of the Cray User Group Conference
(CUG)</em>, Napa Valley, California, May 2013.
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2012">2012</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>File and Storage Systems</h4>
<ul>
<li><strong>Characterizing Output Bottlenecks in a
Supercomputer </strong>, Bing Xie, Jeff Chase, David Dillow,
Oleg Drokin, Scott Klasky, Sarp Oral, Norbert
Podhorszki, <em>Proceedings of Supercomputing (SC): the 25th
IEEE/ACM Int'l Conference on High Performance Computing,
Networking, Storage and Analysis (SC 2012)</em>, Salt Lake
City, UT, November
2012.
<li><strong>A Next-Generation Parallel File System Environment
for the OLCF</strong>, David A. Dillow, Douglas Fuller, Raghul
Gunasekaran, Jason J. Hill, Youngjae Kim, Sarp Oral, Doug M.
Reitz, Galen M. Shipman, James A. Simmons, Feiyi Wang,
Feiyi, <em>Proceedings of the Cray User Goup conference (CUG
2012)</em>, Stuttgart, Germany, April 29-May 3, 2012.
<li><strong>Technical Overview of the OLCF's Next Generation
Parallel File System</strong>, Galen M. Shipman, David A.
Dillow, Jason J. Hill, Youngjae Kim, Sarp Oral, Doug M. Reitz,
James A. Simmons, <em>Proceedings of Lustre User Group
Meetings (LUG 2012)</em>, Austin, TX, April, 2012.
<li><strong>Distributed Storage Systems for Data Intensive
Computing</strong>, Sudharshan S. Vazhkudai, Ali R. Butt,
Xiaosong Ma, <em>Book Chapter in Data Intensive Distributed
Computing: Challenges and Solutions for Large-scale
Information Management</em>, Editor: Tevfik Kosar, IGI Global
Books, January 2012. (ISBN: 9781615209712, DOI:
10.4018/978-1-61520-971-2)
</ul>
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li><strong>Reducing Data Movement Costs using Energy-Efficient
Active Computation on SSD</strong>, Devesh Tiwari, Sudharshan
S. Vazhkudai, Youngjae Kim, Xiaosong Ma, Simona Boboila, Peter
J. Desnoyers, <em>Proceedings of the USENIX Workshop on
Power-Aware Computing and Systems (HotPower'12, co-located
with OSDI'12)</em>, Hollywood, CA, October 2012.
<li><strong>NVMalloc: Exposing an Aggregate SSD Store as a
Memory Partition in Extreme-Scale Machines</strong>, Chao
Wang, Sudharshan S. Vazhkudai, Xiaosong Ma, Fei Meng, Youngjae
Kim, Christian Engelmann, <em>Proceedings of the 26th IEEE
Int'l Parallel & Distributed Processing Symposium (IPDPS
2012)</em>, Shanghai, China, May 2012.
<li><strong>Active Flash: Out-of-core Data Analytics on Flash
Storage</strong>, Simona Boboila, Youngjae Kim, Sudharshan S.
Vazhkudai, Peter J. Desnoyers, Galen M. Shipman,
<em>Proceedings of the 28th IEEE Conference on Mass Storage
Systems and Technologies (MSST 2012)</em>, Monterey, CA, April
2012.
<li><strong>Comparing Coordinated Garbage Collection Algorithms
for Arrays of Solid-state Drives</strong>, Junghee Lee,
Youngjae Kim, Sarp Oral, Galen M. Shipman, David A. Dillow,
Feiyi Wang, <em>Proceedings of the 3rd Non-Volatile Memories
Workshop (NVMW 2012)</em>, San Diego, CA, March 2012.
<li><strong>Active Flash: Performance-Energy Tradeoffs for
Out-of-Core Processing on Non-Volatile Memory
Devices</strong>, Simona Boboila, Youngjae Kim, Sudharshan S.
Vazhkudai, Peter J. Desnoyers, Galen M. Shipman, <em>Poster in
the Proceedings of the 3rd Non-Volatile Memories Workshop
(NVMW 2012)</em>, San Diego, CA, March 2012.
<li><strong>Multi-level Hybrid Cache: Impact and
Feasibility</strong>, Zhe Zhang, Youngjae Kim, Xiaosong Ma,
Galen M. Shipman, Yuanyuan Zhou, <em>Technical Report
(ORNL/TM-2010/297), National Center for Computational
Sciences, Oak Ridge National Laboratory</em>, February 2012.
</ul>
<!-- ============================================================== -->
<li><h4>Data Management</h4>
<ul>
<li><strong>Workload Characterization and Performance Implications of
Large-Scale Blog Servers</strong>, Myeongjae Jeon, Youngjae Kim, Jaeho
Hwang, Joonwon Lee, Euiseong Seo, <em>ACM Transactions on the Web
(ACM TWEB)</em>, Volume 6, Issue 4, November, 2012.
<li><strong>Big Data Platforms as a Service: Challenges and
Approach</strong>, James Horey, Edmon Begoli, Raghul
Gunasekaran, Seung-Hwan Lim, James Nutaro <em>Proceedings of
the 3rd USENIX Workshop on Hot Topics in Cloud Computing
(HotCloud 2012)</em>, Boston, MA, June 2012.
<li><strong>Practical Application of Parallel Coordinates for
Climate Model Analysis</strong>, Chad A. Steed, Galen M.
Shipman, Peter E. Thornton, Daniel M. Ricciuto, David J.
Erickson III, Marcia L. Branstetter, <em>Proceedings of the
International Conference on Computer Science--Workshop on Data
Mining in Earth Science</em>, pp. 877–886, June 2012.
<li><strong>On Timely Staging of HPC Job Input Data</strong>, Henry M.
Monti, Ali R. Butt, Sudharshan S. Vazhkudai, <em>IEEE
Transactions on Parallel and Distributed Systems (TPDS)</em>,
2012.
</ul>
<!-- ============================================================== -->
<li><h4>System Architecture and Resilience</h4>
<ul>
<li> <strong>On the Use of GPUs in Realizing Cost-Effective
Distributed RAID</strong>, Aleksandr Khasymski, M. Mustafa
Rafique, Ali R. Butt, Sudharshan S. Vazhkudai, Dimitrios S.
Nikolopoulos, <em>Proceedings of the IEEE International
Symposium on Modeling, Analysis and Simulation of Computer and
Telecommunication Systems (MASCOTS 2012)</em>, Washington,
D.C., August 2012.
<li><strong>D-Factor: A Quantitative Model of Application
Slow-Down in Shared Service Systems with Multiple
Resources</strong>, Seung-Hwan. Lim, Jae-Seok Huh, Youngjae
Kim, Galen M. Shipman, Chita Das, <em>Proceedings of the ACM
Int'l Conference on Measurement and Modeling of Computer
Systems (SIGMETRICS 2012)</em>, London, United Kingdom, June
11-15, 2012.
</ul>
</ul>
<p> <a class="right" href="#">Top</a>
<h3 id="2011">2011</h3>
<ul class="year_list">
<!-- ============================================================== -->
<li><h4>File and Storage Systems</h4>
<ul>
<li><strong>Dynamic Thermal Management for High-Performance Storage
Systems</strong>, Youngjae Kim, Sudhanva Gurumurthi, Anand
Sivasubramaniam. <em>Book Chapter in Handbook of Energy-aware
and Green Computing</em>, Editors: Ishfaq Ahmad and Sanjay
Rank, Publisher: Chapman and Hall/CRC Press Taylor and Francis
Group LLC, December 26. 2011. ISBN-13: 978-1439850804.
<li><strong>Enhancing I/O Throughput via Efficient Routing and
Placement for Large-scale Parallel File Systems</strong>,
David Dillow, Sarp Oral, Galen M. Shipman, Zhe Zhang, Youngjae
Kim, <em>Proceedings of the 30th IEEE Int'l Performance
Computing and Communications Conference (IPCCC 2011)</em>,
Orlando, FL, November 17-19, 2011.
<li><strong>Oak Ridge Leadership Computing Facility Position
Paper</strong>, Sarp Oral, Jason Hill, Kevin G. Thach, Norbert
Podhorszki, Scott A. Klasky, James H. Rogers, Galen M.
Shipman, <em> Fifth U.S. Department of Energy Best Practices
Workshop on File Systems & Archives.</em>, San Francisco,
CA, September, 2011.
<li><strong>Provisioning a Multi-Tiered Data Staging Area for
Extreme-Scale Machines</strong>, Ramya Prabhakar, Sudharshan
Vazhkudai, Youngjae Kim, Ali Butt, Min Li, Mahmut Kandemir,
<em>Proceedings of the 31th Int'l Conference on Distributed
Computing Systems (ICDCS 2011)</em>, Minneapolis, Minnesota,
June 20-24, 2011.
<li><strong>I/O Congestion Avoidance via Routing and Object
Placement</strong>, David A. Dillow, Galen M. Shipman, Sarp
Oral, Zhe Zhang, <em>Proceedings of the Cray User Goup
conference (CUG 2011)</em>, Alaska, May, 2011.
<li><strong>Testing methodology for large-scale file
systems</strong>, Sarp Oral, <em>Proceedings of Lustre User
Group Meetings (LUG 2011)</em>, Orlando, FL, April, 2011.
</ul>
<!-- ============================================================== -->
<li><h4>Non-Volatile Memory</h4>
<ul>
<li><strong>HybridStore: A Cost-Efficient, High-Performance
Storage System Combining SSDs and HDDs</strong>, Youngjae Kim,
Aayush Gupta, Bhuvan Urgaonkar, Peter Berman, Anand
Sivasubramaniam, <em>Proceedings of the 19th IEEE Int'l
Symposium on Modeling, Analysis and Simulation of Computer and
Telecommunication Systems (MASCOTS 2011)</em>, Singapore, July
25-27, 2011.
<li><strong>Harmonia: A Globally Coordinated Garbage Collector
for Arrays of Solid-state Drives</strong>, Youngjae Kim, Sarp
Oral, Galen M. Shipman, Junghee Lee, David Dillow, Feiyi Wang.
<em>Proceedings of the 27th IEEE Symposium on Massive Storage
Systems and Technologies (MSST 2011)</em>, Denver, Colorado,
May 23-27, 2011.
<li><strong>A Semi-Preemptive Garbage Collector for Solid State
Drives</strong>, Junghee Lee, Youngjae Kim, Galen M. Shipman,
Sarp Oral, Feiyi Wang, Jongman Kim, <em>Proceedings of the
IEEE Int'l Symposium on Performance Analysis of Systems and
Software (ISPASS 2011)</em>, Austin, TX, April 10-12, 2011.
(Best Paper Finalist)
<li><strong>A Comprehensive Study on Energy Efficiency and
Performance of Flash-based SSD</strong>, Seon-Yeong. Park,
Youngjae Kim, Bhuvan Urgaonkar, Joonwon Lee, Euiseong
Seo, <em>Elsevier Journal of System Architecture (Elsevier
JSA)</em>, Volume 57, Issue 4, Pages 354-365, April 2011.
<li><strong>Pathological Behavior of SSDs and Application in
HPC Storage</strong>, Youngjae Kim, Junghee Lee, Galen M.
Shipman, <em>Proceedings of the 2nd Non-Volatile Memories
Workshop (NVMW 2011)</em>, San Diego, CA, March 2011.
</ul>