-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
950 lines (864 loc) · 54.3 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
<!DOCTYPE html>
<!--
_ _
| | | |
Designed and Coded By | | __ _| |__
/ _ \ \ /\ / /\ \ /\ / /\ \ /\ / / |/ _` | '_ \
| (_) \ V V / \ V V / \ V V /| | (_| | |_) |
\___/ \_/\_/ \_/\_/ \_/\_/ |_|\__,_|_.__/
http://themeforest.net/user/owwwlab/
-->
<html lang="en" dir="ltr" itemscope itemtype="http://schema.org/WebPage">
<!-- #####Begin head-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- globalise scripting and styling content language-->
<meta name="Content-Type-Script" content="text/javascript">
<meta name="Content-Type-Style" content="text/css">
<!-- author of this doc-->
<meta name="author" content="owwwlab.com">
<!-- ################################-->
<!-- #### add SEO metadata here-->
<!-- ################################-->
<!-- #####Begin styles-->
<!-- stylesheets -->
<link href="assets/css/vendors/vendors.css" rel="stylesheet" type="text/css">
<!-- Load extra page specific css-->
<!-- Overwrite vendors-->
<link href="assets/css/vendors/vendors-overwrites.css" rel="stylesheet" type="text/css">
<link href="assets/css/styles.css" rel="stylesheet" type="text/css">
<link href="assets/css/demo3.css" rel="stylesheet" type="text/css">
<!-- #####End styles-->
<!-- #####Begin JS-->
<!-- add your scripts to the end of the page for sake of page load speed-->
<!-- scripts that need to be at head section-->
<script src="assets/js/vendors/jquery.min.js"></script>
<!-- #####End JS-->
<!-- #####Begin load google fonts-->
<link href="https://fonts.googleapis.com/css?family=Play:400,700&subset=latin,greek,cyrillic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Sintony:400,700&subset=latin,greek,cyrillic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,300italic,400,400italic,700,700italic&subset=latin,greek,cyrillic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Exo+2:400,200,300,400italic,500,700,900&subset=latin,greek,cyrillic" rel="stylesheet" type="text/css">
<!-- #####End load google fonts-->
<title>Arnab K. Paul</title>
</head>
<!-- #####End head-->
<body class="fullwidth side-header slim-container">
<div id="wrapper" class="regular-layout">
<header id="header" class=" dark">
<div class="head-main">
<div class="container">
<div class="logo-wrapper">
<div class="ol-user-profile"><a href="#" class="avatar"><img src="assets/img/arnab.png"></a>
<h1 class="title">Arnab K. Paul</h1>
<h2 class="subtitle">Assistant Professor @ BITS Pilani, K K Birla Goa Campus</h2>
</div>
</div>
<ul id="primary-menu">
<li class="current-menu-item"><a href="index.html" title="Home"><span>Home</span></a>
</li>
<li><a href="calendar.html" title="Calendar"><span>My Calendar</span></a>
</li>
<!-- <li><a href="publications.html" title="Publications"><span>Publications</span></a>
</li> -->
<!---<li><a href="project-single.html" title="Project Single"><span>Project Single</span></a>
</li>
<li><a href="students.html" title="PHD Students"><span>PHD Students</span></a>
</li>--->
<li><a href="teaching.html" title="Gallery"><span>Teaching</span></a>
</li>
<!-- <li><a href="contact.html" title="Contact Me"><span>Contact Me</span></a>
</li> -->
<li><a href="CV_Arnab.pdf" title="Download CV"><span>Download CV</span></a>
</li>
<li><a href="Dashlab/index.html" title="Research"><span>[DaSHLab]</span></a>
</li>
<!---<li><a href="Lab/index.html" title="DASH Lab"><span>DASH Lab</span></a>
</li>--->
</ul>
<div class="header-icons">
<!-- #####Begin mobile menu trigger-->
<div class="ol-mobile-trigger hamburger hamburger--elastic">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
<!-- #####End mobile menu trigger-->
</div>
</div>
</div>
<div data-img-src="assets/img/bg/01.jpg" class="header-bg set-bg ov-dark-alpha-70"></div>
</header>
<!-- end #header-->
<section id="contents">
<div class="page-contents">
<!-- #####Begin main area-->
<section id="main-area">
<section class="section p-top-0">
<div class="ol-particles h-200"></div>
<div class="container pull-up-50">
<h2>About Me</h2>
<div class="row">
<div class="col-md-8">
<p> <span class="ol-dropcaps square bordered light">I</span> am an Assistant Professor in the Department of Computer Science and Information Systems at BITS Pilani, K K Birla Goa Campus, India. My research interests include <b>high performance computing, applied machine learning, cloud computing, Internet of Things, distributed systems, parallel file systems, edge computing, and big data analysis</b>. I lead the <a href="Dashlab/index.html" title="Research">Data, Systems and HPC (DaSH) lab</a> at BITS Pilani, Goa.</p>
<p>Prior to joing BITS Pilani, I was a postdoctoral research associate in the AI, Analytics & Scalable Methods Group at the Oak Ridge National Laboratory, USA. My research focus at ORNL was to find I/O patterns and performance bottlenecks in HPC AI applications and develop a cache to optimize I/O for large-scale deep learning applications. </p>
<p>I completed my Ph.D. in Computer Science at <b>Virginia Tech</b> advised by Dr. Ali R. Butt. My Ph.D. was greatly impacted by three summer internships - <b>Argonne National Laboratory</b> in 2017 under the mentorship of Dr. Ian Foster, <b>Lawrence Livermore National Laboratory</b> in 2018 under the guidance of Dr. Kathryn Mohror, and <b>Cray Inc.</b> in 2019 where I learned the industry aspects of HPC storage under the guidance of Cory Spitz and Nathan Rutman.</p>
<p>Apart from research, I enjoy playing and watching cricket. I love listening to songs and take active participation in 10k and half marathon runs. I believe in a happy and balanced lifestyle.</p>
<br>
<a href="https://scholar.google.com/citations?user=az8MAG0AAAAJ&hl=en" class="btn btn-anim-drawer btn-round btn-small">My Google Scholar Profile</a>
</div>
<div class="col-md-4">
<h4 class="with-underline">News & Highlights</h4> Scroll down to see more. <br><br>
<ul class="with-shaded-label">
<div class="list_container">
<li>
<h3 class="title"> <span class="shaded-label">April 2 2023</span>TPC Invite</h3>
<div class="description">
<p>TPC member of HiPC 2023</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">March 15 2023</span>TPC Invite</h3>
<div class="description">
<p>TPC member of SC 2023 AD/AE</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">March 15 2023</span>Co-Chair</h3>
<div class="description">
<p>Co-Chair of HiPC 2023 Student Research Symposium</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">February 15 2023</span>Co-Chair</h3>
<div class="description">
<p>Co-Chair of HPDC 2023 Technical Posters</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">January 4 2023</span>Paper Presented</h3>
<div class="description">
<p>Presented 2 papers at ICDCN 2023</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">December 10 2022</span>Paper Accepted</h3>
<div class="description">
<p>Full paper accepted at USENIX FAST 2023</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">November 14 2022</span>Paper Accepted</h3>
<div class="description">
<p>Workshop paper accepted at ICDCN 2023</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">October 27 2022</span>Grant Proposal Accepted</h3>
<div class="description">
<p>Additional Competitive Grant at BITS Pilani of Rs.30 Lakhs accepted for the proposal titled <i>Setting up EdgeSys Lab at BITS Pilani</i></p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">September 8 2022</span>Grant Proposal Accepted</h3>
<div class="description">
<p>BioCyTiH Foundation of Department of Science and Technology, Government of India accepted our grant proposal of Rs. 41 Lakhs titled <i>A Scalable Cloud and Edge-based Framework to Ease The Deployment of IoT-based Applications</i></p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">September 1 2022</span>Paper Published</h3>
<div class="description">
<p>Full paper published in the Performance Evaluation journal.</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">July 6 2022</span>Paper Accepted</h3>
<div class="description">
<p>Full paper accepted at 2022 IEEE Cluster Conference (Cluster)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">June 28 2022</span>Grant Proposal Accepted</h3>
<div class="description">
<p>Research Initiation Grant at BITS Pilani of Rs.2Lakhs accepted for the proposal titled <i>Optimization of Federated Learning Models on Heterogeneous IoT Devices</i></p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">May 1 2022</span>Papers Accepted</h3>
<div class="description">
<p>Two full papers accepted at 2022 ACM Symposium on High-Performance Parallel and Distributed Computing (HPDC)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">April 10 2022</span>Workshop Chair</h3>
<div class="description">
<p>Accepted for organizing the Second Workshop on Re-envisioning Extreme-Scale I/O for Emerging Hybrid HPC Workloads <a href="https://sites.google.com/view/rexio/">(REX-IO)</a> in conjunction with IEEE Cluster 2022</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">February 17 2022</span>Paper Accepted</h3>
<div class="description">
<p>Full paper accepted at 2022 IEEE/ACM International Symposium on Cluster, Cloud and Internet Computing (CCGrid)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">December 18 2021</span>New Job</h3>
<div class="description">
<p>Started as an Assistant Professor at BITS Pilani, K K Birla Goa Campus</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">October 26 2021</span>Reviewer Invite</h3>
<div class="description">
<p>Guest Reviewer for IPDPS 2022</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">September 29 2021</span>Paper Accepted</h3>
<div class="description">
<p>Workshop paper accepted at 8th Annual International Workshop on Innovating the Network for Data-Intensive Science (INDIS 2021) held in conjunction with SC 2021</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">September 5 2021</span>Paper Accepted</h3>
<div class="description">
<p>Full paper accepted at 2021 IEEE International Symposium on the Modeling, Analysis, and Simulation of Computer and Telecommunication Systems (MASCOTS)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">August 24 2021</span>TPC Invite</h3>
<div class="description">
<p>Reviewer for the Book on Convergence of Deep Learning in Cyber-IoT Systems and Security 2021</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">July 26 2021</span>Paper Accepted</h3>
<div class="description">
<p>Workshop paper accepted at 1st Workshop on Re-envisioning Extreme-Scale I/O for Emerging Hybrid HPC Workloads (REX-IO) held in conjunction with IEEE Cluster 2021</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">July 6 2021</span>TPC Invite</h3>
<div class="description">
<p>Invitation for the 1st and 2nd International Conference on <a href="https://eventutor.com/event/14/">Advances in High-Performance Computing (AHPC) 2021, 2022</a> organized by Oklahoma International Publishing (OkIP)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">June 28 2021</span>Postdoctoral Talk</h3>
<div class="description">
<p>Accepted for a talk at the <a href="https://researchsymposium.ornl.gov/">Oak Ridge Postdoctoral Association (ORPA) Research Symposium 2021</a> </p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">April 29 2021</span>Workshop Chair</h3>
<div class="description">
<p>Accepted for organizing the Workshop on Re-envisioning Extreme-Scale I/O for Emerging Hybrid HPC Workloads <a href="https://sites.google.com/view/rexio/">(REX-IO)</a> in conjunction with IEEE Cluster 2021</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">March 10 2021</span>Data Challenge</h3>
<div class="description">
<p>Accepted for SMC Data Challenge 2021: Analyzing Resource Utilization and User Behavior on Titan Supercomputer</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">February 2 2021</span>Special Lecture</h3>
<div class="description">
<p>Decoding Process Management in Operating Systems, Netaji Subhash Engineering College, West Bengal, India</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">January 5 2021</span>TPC Invite</h3>
<div class="description">
<p>Invitation for Cloud Computing'21 Techinal Program Committee</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">December 7 2020</span>TPC Invite</h3>
<div class="description">
<p>Invitation for SC'21 ACM Graduate Poster Committee</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">November 26 2020</span>Paper Award</h3>
<div class="description">
<p>Awarded the YESC award for the most innovative student paper at IEEE Services 2020</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">November 6 2020</span>Chapter Published</h3>
<div class="description">
<p>Book Chapter on Edge vs Cloud published. <a href='https://doi.org/10.1201/9780429288630'>https://doi.org/10.1201/9780429288630</a></p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">October 14 2020</span>TPC Invite</h3>
<div class="description">
<p>Invitation for SC'21 Doctoral Showcase Committee Member</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">October 13 2020</span>Award Nomination</h3>
<div class="description">
<p>Nominated for YESC award for the most innovative student paper at IEEE Services 2020</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">October 12 2020</span>Paper Accepted</h3>
<div class="description">
<p>Full paper on analyzing docker images accepted at IEEE Transactions on Parallel and Distributed Systems (TPDS)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">September 15 2020</span>Paper Accepted</h3>
<div class="description">
<p>Full paper on analyzing HPC application I/O behavior accepted at IEEE International Conference on High Performance Computing, Data, and Analytics (HiPC)</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">September 8 2020</span>New Job</h3>
<div class="description">
<p>Postdoctoral Research Associate at Oak Ridge National Laboratory</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">August 14 2020</span>Ph.D. Complete</h3>
<div class="description">
<p>Graduated from Virginia Tech with a Ph.D. in Computer Science</p>
</div>
</li>
<li>
<h3 class="title"> <span class="shaded-label">July 28 2020</span>Ph.D. Defended</h3>
<div class="description">
<p>Defended my Ph.D. dissertation at Virginia Tech</p>
</div>
</li>
</div>
</ul>
</div>
</div>
<div class="sp-blank-50 shadow-line"></div>
<h2 class="m-top-50">Education</h2>
<div class="col-md-14">
<div class="row">
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-diploma"></i>
<div class="ib-wrap">
<h3 class="title">Ph.D. in Computer Science & Applications</h3><span class="subtitle">Virginia Tech, U.S.A.</span>
<div class="description"> <span>Advisor: Dr. Ali R. Butt</span></div>
<div class="description"> <span>GPA: 4.0/4.0</span></div>
<div class="description"> <span>2015 - 2020</span></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-diploma"></i>
<div class="ib-wrap">
<h3 class="title">Master of Science (M.S.) in Computer Science & Applications</h3><span class="subtitle">Virginia Tech, U.S.A.</span>
<div class="description"> <span>GPA: 3.85/4.0</span></div>
<div class="description"> <span>2015 - 2018</span></div>
</div>
</div>
</div>
</div>
<div class="sp-blank-50"></div>
<div class="row">
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-diploma"></i>
<div class="ib-wrap">
<h3 class="title">Master of Technology (M.Tech.) in Software Engineering</h3><span class="subtitle">National Institute of Technology, Rourkela</span>
<div class="description"> <span>Advisor: Dr. Bibhudatta Sahoo</span></div>
<div class="description"> <span>GPA: 9.56/10.0 <i>(Gold Medalist - First position in the department)</i></span></div>
<div class="description"> <span>2013 - 2015</span></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-diploma"></i>
<div class="ib-wrap">
<h3 class="title">Bachelor of Technology (B.Tech.) in Computer Science & Engineering</h3><span class="subtitle">West Bengal University of Technology</span>
<div class="description"> <span>GPA: 9.02/10.0 <i>(First position in the department)</i></span></div>
<div class="description"> <span>2009 - 2013</span></div>
</div>
</div>
</div>
</div>
</div>
<div class="sp-blank-50 shadow-line"></div>
<h2 class="m-top-50">Work/Research Experience</h2>
<div class="col-md-12">
<div class="row">
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">BITS Pilani, K K Birla Goa Campus</h3><span class="subtitle">Assistant Professor</span>
<div class="description"> <span>Dept. of Computer Science & Information Systems</span></div>
<div class="description"> <span>Dec. 2021 - present</span></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">Oak Ridge National Laboratory, U.S.A.</h3><span class="subtitle">Postdoctoral Research Associate</span>
<div class="description"> <span>Analytics and AI Methods at Scale Group</span></div>
<div class="description"> <span>Sep. 2020 - Oct. 2021</span></div>
</div>
</div>
</div>
</div>
<div class="sp-blank-50"></div>
<div class="row">
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">Virginia Tech, U.S.A.</h3><span class="subtitle">Ph.D. Student</span>
<div class="description"> <span>Distributed Systems and Storage Laboratory</span></div>
<div class="description"> <span>Advisor: Dr. Ali R. Butt</span></div>
<div class="description"> <span>Jan. 2016 - Aug. 2020</span></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">Cray Inc.</h3><span class="subtitle">Graduate Research Intern</span>
<div class="description"> <span>Location: Los Alamos, New Mexico, U.S.A.</span></div>
<div class="description"> <span>Advisors: Cory Spitz, Nathan Rutman (Cray), and Scott White (LANL)</span></div>
<div class="description"> <span>Jun 2019 - Aug. 2019</span></div>
</div>
</div>
</div>
</div>
<div class="sp-blank-50"></div>
<div class="row">
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">Lawrence Livermore National Laboratory</h3><span class="subtitle">Graduate Student Summer Intern (Computation Scholar)</span>
<div class="description"> <span>Location: Livermore, California, U.S.A.</span></div>
<div class="description"> <span>Advisor: Dr. Kathryn Mohror</span></div>
<div class="description"> <span>May 2018 - Aug. 2018</span></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">Argonne National Laboratory</h3><span class="subtitle">Graduate Student Summer Intern (Research Aide)</span>
<div class="description"> <span>Location: Lemont, Illinois, U.S.A.</span></div>
<div class="description"> <span>Advisor: Dr. Ian Foster</span></div>
<div class="description"> <span>May 2017 - Aug. 2017</span></div>
</div>
</div>
</div>
</div>
<div class="sp-blank-50"></div>
<div class="row">
<div class="col-md-6">
<div class="icon-box ib-edu"><i class="oli oli-literature"></i>
<div class="ib-wrap">
<h3 class="title">National Institute of Technology, Rourkela</h3><span class="subtitle">Masters Student</span>
<div class="description"> <span>Information Security and Data Communication Laboratory</span></div>
<div class="description"> <span>Advisor: Dr. Bibhudatta Sahoo</span></div>
<div class="description"> <span>May 2014 - May 2015</span></div>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="sp-blank-50 shadow-line"></div>
<h2 class="m-top-50">My Calendar</h2>
<p>If you want to talk to me, please look at my calendar first.</p>
<div class="row m-top-50"> -->
<!---<div class="col-md-4">
<div class="icon-box ib-v4"><i class="oli oli-globe"></i>
<h6 class="title with-shaded-label"><span class="shaded-label">2015</span>Nobel Prize in Physics</h6>
<p>Phasellus lectus sem, egestas eget sollicitudin ut, lobortis ac nulla. Phasellus lectus sem, egestas eget sollicitudin ut.</p>
</div>
</div>
<div class="col-md-4">
<div class="icon-box ib-v4"><i class="oli oli-trophy2"></i>
<h6 class="title with-shaded-label"><span class="shaded-label">2010</span>Global innovation award</h6>
<p>Phasellus lectus sem, egestas eget sollicitudin ut, lobortis ac nulla. Phasellus lectus sem, egestas eget sollicitudin ut.</p>
</div>
</div>
<div class="col-md-4">
<div class="icon-box ib-v4"><i class="oli oli-lightbulb"></i>
<h6 class="title with-shaded-label"><span class="shaded-label">2007</span>World technology award</h6>
<p>Phasellus lectus sem, egestas eget sollicitudin ut, lobortis ac nulla. Phasellus lectus sem, egestas eget sollicitudin ut.</p>
</div>
</div>--->
<!-- <iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=Asia%2FKolkata&mode=WEEK&src=YXJuYWJwQGdvYS5iaXRzLXBpbGFuaS5hYy5pbg&color=%23039BE5" style="border-width:0" width="795" height="600" frameborder="0" scrolling="yes"></iframe>
</div> -->
</div>
</div>
</section>
<!---
<section class="section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Recent & Selected Publications</h2>
<a href="publications.html" class="btn btn-anim-drawer btn-round btn-small">Full List</a>
</div>
<div class="col-md-8">
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">Machine Learning Assisted HPC Workload Trace Generation for Leadership Scale Storage Systems.</h3>
<div class="description">
<b>Arnab K. Paul</b>, Jong Youl Choi, Ahmad Maroof Karimi, and Feiyi Wang.
<br> <br>ACM HPDC 2022
<a href="publications/hpdc22_ml_io.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">Access Patterns and Performance Behaviors of Multilayer Supercomputer I/O Subsystems under Production Load.</h3>
<div class="description">
Jean Luca Bez, Ahmad Maroof Karimi, <b>Arnab K. Paul</b>, Bing Xie, Suren Byna, Philip Carns, Sarp Oral, Feiyi Wang, and Jesse Hanley.
<br> <br>ACM HPDC 2022
<a href="publications/hpdc22_summit_cori.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">Characterizing Machine Learning I/O Workloads on Leadership Scale HPC Systems.</h3>
<div class="description">
<b>Arnab K. Paul</b>, Ahmad Maroof Karimi, and Feiyi Wang.
<br> <br>IEEE MASCOTS 2021
<a href="publications/mascots21.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">Understanding HPC Application I/O Behavior Using System Level Statistics.</h3>
<div class="description">
<b>Arnab K. Paul</b>, Olaf Faaland, Adam Moody, Elsa Gonsiorowski, Kathryn Mohror, and Ali R. Butt.
<br> <br>IEEE HiPC 2020
<a href="publications/hipc20.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">On the Use of Containers in High Performance Computing Environments.</h3>
<div class="description">
Subil Abraham, <b>Arnab K. Paul</b>, Redwan Ibne Seraj Khan, and Ali R. Butt.
<br> <br> IEEE Cloud 2020
<a href="publications/cloud20.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">STARGAZER: A Deep Learning Approach for Estimating the Performance of Edge-Based Clustering Applications.</h3>
<div class="description">
Breno Dantas Cruz, <b>Arnab K. Paul</b>, Zheng Song, and Eli Tilevich.
<br> <br> IEEE International Conference on Smart Data Services 2020 (Awarded the YESC most innovative student paper at IEEE SERVICES 2020)
<a href="publications/services20.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">Efficient Metadata Indexing for HPC Storage Systems.</h3>
<div class="description">
<b>Arnab K. Paul</b>, Brian Wang, Nathan Rutman, Cory Spitz, and Ali R. Butt.
<br> <br> IEEE/ACM CCGrid 2020
<a href="publications/ccgrid20.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">FSMonitor: Scalable File System Monitoring for Arbitrary Storage Systems.</h3>
<div class="description">
<b>Arnab K. Paul</b>, Ryan Chard, Kyle Chard, Steven Tuecke, Ali R. Butt, Ian Foster.
<br> <br> IEEE Cluster 2019
<a href="publications/FSMonitor_cameraReady.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
<div class="pub-item with-icon">
<div class="elem-wrapper"><i class="oli oli-bookmark"></i></div>
<div class="content-wrapper">
<h3 class="title">Resource Contention Aware Load Balancing for Large-Scale Parallel File Systems.</h3>
<div class="description">
Bharti Wadhwa, <b>Arnab K. Paul</b>, Sarah Neuwirth, Feiyi Wang, Sarp Oral, Ali R. Butt, Jon Bernard, Kirk W. Cameron.
<br> <br> IEEE IPDPS 2019
<a href="publications/IPDPS19_camera ready.pdf" class="btn btn-anim-drawer btn-round btn-small">PDF</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-white no-space-grid">
<div class="container">
<div class="row extend-bg-wrapper no-space-grid h-500">
<div class="col-md-4">
<div class="set-bg extend-left hidden-sm"><img src="assets/img/bg/light-01.jpg" alt="background-image" class="set-me"></div>
<div class="row">
<div class="col-md-9">
<div class="inner-wrapper m-top-80">
<div class="heading-with-sub">
<h2 class="m-top-50">Selected Honors and Awards</h2>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div data-start-from="last" data-fade-edge="true" class="ol-timeline-tab">
<ul class="tl-head">
<li>2009</li>
<li>2013</li>
<li>2015</li>
<li>2016</li>
<li>2017</li>
<li>2018</li>
<li>2019</li>
<li>2020</li>
<li>2021</li>
<li>2022</li>
</ul>
<div class="tl-content">
<div class="tl-item">
<h4 class="title">Recognition</h4>
<div class="description">
<p>First Rank from Kindergarten to Std. XII (all 15 years), Hill Top School, Jamshedpur, India</p>
</div>
<h4 class="title">Hitachi Award</h4>
<div class="description">
<p>All-Rounder, Hill Top School, Jamshedpur, India</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Department Topper</h4>
<div class="description">
<p>First Rank in Department of Computer Science, West Bengal University of Technology, India</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Gold Medalist</h4>
<div class="description">
<p>First Rank in Department of Computer Science, National Institute of Technology, Rourkela, Odisha, India</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Student Volunteer</h4>
<div class="description">
<p>SC 2016, Salt Lake City, Utah, U.S.A.</p>
</div>
<h4 class="title">Travel Grant Recipient</h4>
<div class="description">
<p>IEEE Cluster 2016, Taipei, Taiwan</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Travel Grant Recipient</h4>
<div class="description">
<p>IEEE BigData 2017, Boston, Massachusetts, U.S.A</p>
</div>
<h4 class="title">President</h4>
<div class="description">
<p>Bengali Students' Association, Virginia Tech, U.S.A</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Student Volunteer</h4>
<div class="description">
<p>SCiNet @ SC 2018, Dallas, Texas, U.S.A</p>
</div>
<h4 class="title">Fellowship</h4>
<div class="description">
<p>Bitshares Fellowship by the Department of Computer Science, Virginia Tech, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Dean's Graduate Team, Virginia Tech, U.S.A.</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Student Volunteer</h4>
<div class="description">
<p>SC 2019, Denver, COlorado, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Dean's Graduate Team, Virginia Tech, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Association for India's Development, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Computer Science Graduate Students' Council, Virginia Tech, U.S.A.</p>
</div>
<h4 class="title">Travel Grant Recipient</h4>
<div class="description">
<p>IEEE Cluster 2019, Albuquerque, New Mexico, U.S.A.</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Award Nomination</h4>
<div class="description">
<p>Awarded the YESC award for most innovative student paper at IEEE Services 2020, Beijing, China.</p>
</div>
<h4 class="title">Fellowship</h4>
<div class="description">
<p>Bitshares Fellowship by the Department of Computer Science, Virginia Tech, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Dean's Graduate Team, Virginia Tech, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Association for India's Development, U.S.A.</p>
</div>
<h4 class="title">Member</h4>
<div class="description">
<p>Computer Science Graduate Students' Council, Virginia Tech, U.S.A.</p>
</div>
<h4 class="title">Facilitator and Mentor</h4>
<div class="description">
<p>Facilitated the Committee meeting and mentored at the mentor-protege event at SC'20</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">TPC Member</h4>
<div class="description">
<p>Program Committee Member for Cloud Computing'21.</p>
</div>
<h4 class="title">TPC Member</h4>
<div class="description">
<p>Program Committee Member for SC'21.</p>
</div>
<h4 class="title">Workshop Chair</h4>
<div class="description">
<p>Workshop on Re-envisioning Extreme-Scale I/O for Emerging Hybrid HPC Workloads <a href="https://sites.google.com/view/rexio/">(REX-IO)</a> in conjunction with IEEE Cluster 2021.</p>
</div>
<h4 class="title">TPC Member</h4>
<div class="description">
<p>Program Committee Member for Advances in High-Performance Computing (AHPC)'21.</p>
</div>
<h4 class="title">TPC Member</h4>
<div class="description">
<p>Book on Convergence of Deep Learning in Cyber-IoT Systems and Security.</p>
</div>
</div>
<div class="tl-item">
<h4 class="title">Workshop Chair</h4>
<div class="description">
<p>Workshop on Re-envisioning Extreme-Scale I/O for Emerging Hybrid HPC Workloads <a href="https://sites.google.com/view/rexio/">(REX-IO)</a> in conjunction with IEEE Cluster 2022.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
--->
<!---
<section data-img-src="assets/img/bg/04.jpg" data-parallax-mode="mode-5" class="section ov-grad1-alpha-60 dark-wrapper parallax-layer">
<div class="container">
<div class="row call-out tb-vcenter-wrapper">
<div class="col-sm-9 vcenter">
<h2 class="title">List of Publications</h2>
<h4 class="sub-title">Absolutely Stunning Design & Functionality Common Things Expected</h4>
</div>
<div class="col-sm-3 vcenter text-center"><a href="#" class="btn btn-medium btn-wide btn-trans btn-skin-white btn-circle"> <span>view</span></a></div>
</div>
</div>
</section>
<section class="section slim-container">
<div class="container">
<h2>Research Projects</h2>
<p>Phasellus lectus sem, egestas eget sollicitudin ut, lobortis ac nulla. Phasellus lectus sem, egestas eget sollicitudin ut.p Phasellus lectus sem, egestas eget sollicitudin ut, lobortis ac nulla. Phasellus lectus sem, egestas eget sollicitudin ut.</p>
<div data-cols="3" data-nav="true" data-margin="20" data-cols-md='2' data-loop="true" class="owl-carousel items featured-items owwwlab-theme nav-center m-top-50"><a href="#" class="featured-item boxed">
<div class="features-image ov-light-alpha-50"><img src="assets/img/featured-items/01.jpg" alt="image"></div>
<h3 class="features-title">Computer Architecture</h3></a><a href="#" class="featured-item boxed">
<div class="features-image ov-light-alpha-50"><img src="assets/img/featured-items/02.jpg" alt="image"></div>
<h3 class="features-title">Analysis of Algorithm</h3></a><a href="#" class="featured-item boxed">
<div class="features-image ov-light-alpha-50"><img src="assets/img/featured-items/03.jpg" alt="image"></div>
<h3 class="features-title">Image Processing</h3></a><a href="#" class="featured-item boxed">
<div class="features-image ov-light-alpha-50"><img src="assets/img/featured-items/04.jpg" alt="image"></div>
<h3 class="features-title">Analysis of Algorithm</h3></a><a href="#" class="featured-item boxed">
<div class="features-image ov-light-alpha-50"><img src="assets/img/featured-items/05.jpg" alt="image"></div>
<h3 class="features-title">Computer Architecture</h3></a><a href="#" class="featured-item boxed">
<div class="features-image ov-light-alpha-50"><img src="assets/img/featured-items/06.jpg" alt="image"></div>
<h3 class="features-title">Language processing</h3></a></div>
</div>
</section>--->
</section>
<!-- #####End main area
-->
<div class="clearfix"></div>
</div>
</section>
<!-- end #contents-->
<footer id="footer">
<div id="footer-main" class="text-center">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="heading-with-sub m-bottom-50">
<h3 class="title sans-font m-bottom-30">Arnab K. Paul</h3>
<h4 class="subtitle">If you're looking for more information, contact me using the contact details listed below.</h4>
</div>
<div class="sp-line-0"></div>
<ul class="m-top-30 social-icons shape-circle skin-white hover-dark">
<li><a href="https://www.facebook.com/arnabkrpaul"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/arnabkrpaul"><i class="fa fa-twitter"></i></a></li>
<!---<li><a href="#"><i class="fa fa-google-plus"></i></a></li>--->
<li><a href="https://www.linkedin.com/in/arnabkrpaul/"><i class="fa fa-linkedin"></i></a></li>
<!---<li><a href="#"><i class="fa fa-skype"></i></a></li>--->
<!---<li><a href="#"><i class="fa fa-dribbble"></i></a></li>--->
</ul>
</div>
</div>
<!-- hitwebcounter Code START -->
<br><br>
<a href="https://www.hitwebcounter.com" target="_blank">
<img src="https://hitwebcounter.com/counter/counter.php?page=7656478&style=0025&nbdigits=9&type=ip&initCount=0" title="Total Website Hits" Alt="Web Hits" border="0" /></a>
</div>
</div>
</footer>
<!-- end #footer-->
</div>
<!-- #####Begin scripts-->
<script src="assets/js/vendors/vendors.js"></script>
<!-- Local Revolution tools-->
<!-- Only for local and can be removed on server-->
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.video.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.parallax.min.js"></script>
<script src="assets/js/custom.js"></script>
<script src="http://localhost:35729/livereload.js"></script>
<!-- #####End scripts-->
</body>
</html>