-
Notifications
You must be signed in to change notification settings - Fork 0
/
pbalapra-bibtex_bib.html
1480 lines (1376 loc) · 71.6 KB
/
pbalapra-bibtex_bib.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
<h1>pbalapra-bibtex.bib</h1><a name="KhaBal2020b"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#KhaBal2020b">KhaBal2020b</a>,
author = {S. Khairy and P. Balaprakash},
booktitle = {5G Enabled Energy Innovation Workshop (5GEEIW)},
date-added = {2020-09-27 19:41:55 -0500},
date-modified = {2020-09-27 19:42:20 -0500},
month = {March},
title = {Challenges and Opportunities for AI-Enabled Science Applications over 5G},
year = {2020}
}
</pre>
<a name="KhaBal2020a"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#KhaBal2020a">KhaBal2020a</a>,
author = {S. Khairy and P. Balaprakash},
booktitle = {5G Enabled Energy Innovation Workshop (5GEEIW)},
date-added = {2020-09-27 19:40:31 -0500},
date-modified = {2020-09-27 19:41:51 -0500},
month = {March},
title = {Edge Intelligence Meets Cloud Intelligence over 5G: Unmanned Aerial Vehicle Swarm for ExtremeEnvironments},
year = {2020}
}
</pre>
<a name="osti_1606538"></a><pre>
@article{<a href="pbalapra-bibtex.html#osti_1606538">osti_1606538</a>,
author = {Beckman, Pete and Catlett, Charlie and Ahmed, Moinuddin and Alawad, Mohammed and Bai, Linquan and Balaprakash, Prasanna and Barker, Kevin and Beckman, Pete and Berry, Randall and Bhuyan, Arup and Brebner, Gordon and Burkes, Klaehn and Butko, Anastasiia and Cappello, Franck and Chard, Ryan and Collis, Scott and Cree, Johnathan and Dasgupta, Dipankar and Evdokimov, Anatoly and Fields, Jason M and Fuhr, Peter and Harper, Colby and Jin, Yier and Kettimuthu, Rajkumar and Kiran, Mariam and Kozma, Robert and Kumar, Praveen Ashok and Kumar, Yatish and Luo, Linqing and Mashayekhy, Lena and Monga, Inder and Nickless, Bill and Pappas, Thrasyvoulos and Peterson, Elena and Pfeffer, Trever and Rakheja, Shaloo and Tribaldos, Veroica Rodriguez and Rooke, Sterling and Roy, Sumit and Saadawi, Tarek and Sandy, Alec and Sankaran, Rajesh and Schwarz, Nicholas and Somnath, Suhas and Stan, Marius and Stuart, Cory and Sullivan, Ryan and Sumant, Anirudha and Tchilinguirian, Greg and Tran, Nhan and Veeramany, Arun and Wang, Angela and Wang, Bin and Wiedlea, Andrew and Wielandt, Stijn and Windus, Theresa and Wu, Yuxin and Yang, Xi and Yao, Zhi and Yu, Rose and Zeng, Yuping and Zhang, Yuepeng},
date-added = {2020-09-27 15:15:40 -0500},
date-modified = {2020-09-27 15:16:02 -0500},
doi = {10.2172/1606538},
place = {United States},
title = {5G Enabled Energy Innovation: Advanced Wireless Networks for Science, Workshop Report},
year = {2020},
bdsk-url-1 = {https://doi.org/10.2172/1606538}
}
</pre>
<a name="HeMicro2020"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#HeMicro2020">HeMicro2020</a>,
author = {Yi He and Prasanna Balaprakash and Yanjing Li},
booktitle = {53rd IEEE/ACM International Symposium on Microarchitecture (MICRO)},
date-added = {2020-09-27 15:09:13 -0500},
date-modified = {2020-09-27 15:10:24 -0500},
title = {{FIdelity: Efficient Resilience Analysis Framework for Deep Learning Accelerators}},
year = {2020}
}
</pre>
<a name="maulik2019using"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#maulik2019using">maulik2019using</a>,
author = {Maulik, Romit and Rao, Vishwas and Madireddy, Sandeep and Lusch, Bethany and Balaprakash, Prasanna},
booktitle = {NeurIPS Workshop on ML and the Physical Sciences},
date-added = {2020-09-27 15:05:06 -0500},
date-modified = {2020-09-27 15:05:17 -0500},
title = {Using recurrent neural networks for nonlinear component computation in advection-dominated reduced-order models},
year = {2019}
}
</pre>
<a name="maulik2019site"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#maulik2019site">maulik2019site</a>,
author = {Maulik, Romit and Balaprakash, Prasanna},
booktitle = {NeurIPS Workshop on ML and the Physical Sciences},
date-added = {2020-09-27 15:04:20 -0500},
date-modified = {2020-09-27 15:04:36 -0500},
title = {Site-specific graph neural network for predicting protonation energy of oxygenate molecules},
year = {2019}
}
</pre>
<a name="madireddy2019modular"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#madireddy2019modular">madireddy2019modular</a>,
author = {Madireddy, Sandeep and Li, Nan and Ramachandra, Nesar and Balaprakash, Prasanna and Habib, Salman},
booktitle = {NeurIPS Workshop on ML and the Physical Sciences},
date-added = {2020-09-27 15:03:49 -0500},
date-modified = {2020-09-27 15:05:54 -0500},
title = {Modular Deep Learning Analysis of Galaxy-Scale Strong Lensing Images},
year = {2019}
}
</pre>
<a name="jiang2019value"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#jiang2019value">jiang2019value</a>,
author = {Jiang, Peihong and Doan, Hieu and Madireddy, Sandeep and Assary, Rajeev Surendran and Balaprakash, Prasanna},
booktitle = {NeurIPS Workshop on ML and the Physical Sciences},
date-added = {2020-09-27 15:03:15 -0500},
date-modified = {2020-09-27 15:06:33 -0500},
title = {Value-Added Chemical Discovery Using Reinforcement Learning},
year = {2019}
}
</pre>
<a name="khairy2019reinforcement"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#khairy2019reinforcement">khairy2019reinforcement</a>,
author = {Khairy, Sami and Shaydulin, Ruslan and Cincio, Lukasz and Alexeev, Yuri and Balaprakash, Prasanna},
booktitle = {NeurIPS Workshop on ML and the Physical Sciences},
date-added = {2020-09-27 15:02:19 -0500},
date-modified = {2020-09-27 15:06:05 -0500},
title = {Reinforcement-learning-based variational quantum circuits optimization for combinatorial problems},
year = {2019}
}
</pre>
<a name="madireddy2020multilayer"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#madireddy2020multilayer">madireddy2020multilayer</a>,
author = {Madireddy, Sandeep and Yanguas-Gil, Angel and Balaprakash, Prasanna},
booktitle = {ICML Workshop on LifelongML},
date-added = {2020-09-27 15:01:09 -0500},
date-modified = {2020-09-27 15:01:40 -0500},
title = {Multilayer Neuromodulated Architectures for Memory-Constrained Online Continual Learning},
year = {2020}
}
</pre>
<a name="MallickTRB2020"></a><pre>
@article{<a href="pbalapra-bibtex.html#MallickTRB2020">MallickTRB2020</a>,
abstract = { Traffic forecasting approaches are critical to developing adaptive strategies for mobility. Traffic patterns have complex spatial and temporal dependencies that make accurate forecasting on large highway networks a challenging task. Recently, diffusion convolutional recurrent neural networks (DCRNNs) have achieved state-of-the-art results in traffic forecasting by capturing the spatiotemporal dynamics of the traffic. Despite the promising results, however, applying DCRNNs for large highway networks still remains elusive because of computational and memory bottlenecks. This paper presents an approach for implementing a DCRNN for a large highway network that overcomes these limitations. This approach uses a graph-partitioning method to decompose a large highway network into smaller networks and trains them independently. The efficacy of the graph-partitioning-based DCRNN approach to model the traffic on a large California highway network with 11,160 sensor locations is demonstrated. An overlapping-nodes approach for the graph-partitioning-based DCRNN is developed to include sensor locations from partitions that are geographically close to a given partition. Furthermore, it is demonstrated that the DCRNN model can be used to forecast the speed and flow simultaneously and that the forecasted values preserve fundamental traffic flow dynamics. This approach to developing DCRNN models that represent large highway networks can be a potential core capability in advanced highway traffic monitoring systems, where a trained DCRNN model forecasting traffic at all sensor locations can be used to adjust traffic management strategies proactively based on anticipated future conditions. },
author = {Tanwi Mallick and Prasanna Balaprakash and Eric Rask and Jane Macfarlane},
date-added = {2020-09-27 14:58:12 -0500},
date-modified = {2020-09-27 14:58:58 -0500},
journal = {Transportation Research Record},
title = {Graph-Partitioning-Based Diffusion Convolutional Recurrent Neural Network for Large-Scale Traffic Forecasting},
year = {2020},
bdsk-url-1 = {https://doi.org/10.1177/0361198120930010}
}
</pre>
<a name="maulik2020neural"></a><pre>
@article{<a href="pbalapra-bibtex.html#maulik2020neural">maulik2020neural</a>,
author = {Maulik, Romit and Garland, Nathan A and Burby, Joshua W and Tang, Xian-Zhu and Balaprakash, Prasanna},
date-added = {2020-09-27 14:57:23 -0500},
date-modified = {2020-09-27 14:57:23 -0500},
journal = {Physics of Plasmas},
number = {7},
pages = {072106},
publisher = {AIP Publishing LLC},
title = {Neural network representability of fully ionized plasma fluid model closures},
volume = {27},
year = {2020}
}
</pre>
<a name="Maulik2019TimeseriesLO"></a><pre>
@article{<a href="pbalapra-bibtex.html#Maulik2019TimeseriesLO">Maulik2019TimeseriesLO</a>,
author = {R. Maulik and A. Mohan and Bethany Lusch and Sandeep Madireddy and Prasanna Balaprakash and D. Livescu},
date-added = {2020-09-27 14:54:55 -0500},
date-modified = {2020-09-27 14:56:34 -0500},
journal = {Physica D: Nonlinear Phenomena},
title = {Time-series learning of latent-space dynamics for reduced-order model closure.},
volume = {405},
year = {2019}
}
</pre>
<a name="Maulik2020NonautoregressiveTM"></a><pre>
@article{<a href="pbalapra-bibtex.html#Maulik2020NonautoregressiveTM">Maulik2020NonautoregressiveTM</a>,
author = {R. Maulik and Bethany Lusch and Prasanna Balaprakash},
date-added = {2020-09-27 14:53:52 -0500},
date-modified = {2020-09-27 14:54:22 -0500},
journal = {Physics of Fluids},
number = {8},
title = {Non-autoregressive time-series methods for stable parametric reduced-order models},
volume = {32},
year = {2020}
}
</pre>
<a name="madireddy2019phase"></a><pre>
@article{<a href="pbalapra-bibtex.html#madireddy2019phase">madireddy2019phase</a>,
author = {Madireddy, Sandeep and Chung, Ding-Wen and Loeffler, Troy and Sankaranarayanan, Subramanian KRS and Seidman, David N and Balaprakash, Prasanna and Heinonen, Olle},
date-added = {2020-09-27 14:43:26 -0500},
date-modified = {2020-09-27 14:43:26 -0500},
journal = {Scientific reports},
number = {1},
pages = {1--10},
publisher = {Nature Publishing Group},
title = {Phase Segmentation in Atom-Probe Tomography Using Deep Learning-Based Edge Detection},
volume = {9},
year = {2019}
}
</pre>
<a name="lee2019improving"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#lee2019improving">lee2019improving</a>,
author = {Lee, Sunwoo and Kang, Qiao and Madireddy, Sandeep and Balaprakash, Prasanna and Agrawal, Ankit and Choudhary, Alok and Archibald, Richard and Liao, Wei-keng},
booktitle = {2019 IEEE International Conference on Big Data (Big Data)},
date-added = {2020-09-27 14:42:53 -0500},
date-modified = {2020-09-27 14:42:53 -0500},
organization = {IEEE},
pages = {830--839},
title = {Improving Scalability of Parallel CNN Training by Adjusting Mini-Batch Size at Run-Time},
year = {2019}
}
</pre>
<a name="KhaAAAI2020"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#KhaAAAI2020">KhaAAAI2020</a>,
author = {S. Khairy and R. Shaydulin and L. Cincio and Y. Alexeev and P. Balaprakash},
booktitle = {AAAI Conference on Artificial Intelligence},
date-added = {2020-09-27 14:40:51 -0500},
date-modified = {2020-09-27 14:41:39 -0500},
title = {Learning to Optimize Variational Quantum Circuits to Solve Combinatorial Problems},
year = {2020}
}
</pre>
<a name="KhaJSAC2020"></a><pre>
@article{<a href="pbalapra-bibtex.html#KhaJSAC2020">KhaJSAC2020</a>,
author = {S. Khairy and P. Balaprakash and L. X. Cai and Y. Cheng},
date-added = {2020-09-27 14:38:17 -0500},
date-modified = {2020-09-27 14:39:37 -0500},
journal = {{IEEE Journal on Selected Areas in Communications}},
title = {Constrained Deep Reinforcement Learning for Energy Sustainable Multi-UAV based Random Access {IoT} Networks with {NOMA}},
year = {2020},
bdsk-url-1 = {<a href="http://dx.doi.org/10.5194/gmd-2019-79">http://dx.doi.org/10.5194/gmd-2019-79</a>}
}
</pre>
<a name="IsaSC2020"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#IsaSC2020">IsaSC2020</a>,
author = {M. Isakov and E. Rosario and S. Madireddy and P. Balaprakash and P. Carns and R. Ross and M. Kinsy},
booktitle = {SC '20: IEEE/ACM International Conference on High Performance Computing, Networking, Storage and Analysis},
date-added = {2020-09-27 14:36:18 -0500},
date-modified = {2020-09-27 14:42:23 -0500},
title = {{HPC I/O} Throughput Bottleneck Analysis with Explainable Local Models},
year = {2020}
}
</pre>
<a name="BalSC2019"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalSC2019">BalSC2019</a>,
author = {Prasanna Balaprakash and Romain Egele and Misha Salim and Stefan Wild and Venkatram Vishwanath and Fangfang Xia and Tom Brettin and Rick Stevens},
booktitle = {SC '19: IEEE/ACM International Conference on High Performance Computing, Networking, Storage and Analysis},
date-added = {2020-09-27 14:34:59 -0500},
date-modified = {2020-09-27 14:34:59 -0500},
title = {Scalable Reinforcement-Learning-Based Neural Architecture Search for Cancer Deep Learning Research},
year = {2019}
}
</pre>
<a name="MauSC2020"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MauSC2020">MauSC2020</a>,
author = {R. Maulik and R. Egele and B. Lusch and P. Balaprakash},
booktitle = {SC '20: IEEE/ACM International Conference on High Performance Computing, Networking, Storage and Analysis},
date-added = {2019-09-04 06:57:38 +0000},
date-modified = {2020-09-27 14:36:07 -0500},
title = {Recurrent Neural Network Architecture Search for Geophysical Emulation},
year = {2020}
}
</pre>
<a name="gmd-2019-79"></a><pre>
@article{<a href="pbalapra-bibtex.html#gmd-2019-79">gmd-2019-79</a>,
author = {Wang, J. and Balaprakash, P. and Kotamarthi, R.},
date-added = {2019-09-04 07:00:13 +0000},
date-modified = {2019-09-04 07:00:13 +0000},
doi = {10.5194/gmd-2019-79},
journal = {Geoscientific Model Development},
pages = {1--31},
title = {Fast domain-aware neural network emulation of a planetary boundary layer parameterization in a numerical weather forecast model},
volume = {2019},
year = {2019},
bdsk-url-1 = {<a href="http://dx.doi.org/10.5194/gmd-2019-79">http://dx.doi.org/10.5194/gmd-2019-79</a>}
}
</pre>
<a name="wycoff2019neuromorphic"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#wycoff2019neuromorphic">wycoff2019neuromorphic</a>,
author = {Wycoff, Nathan and Balaprakash, Prasanna and Xia, Fangfang},
booktitle = {International Conference on Neuromorphic Computing},
date-added = {2019-09-04 06:56:14 +0000},
date-modified = {2019-09-29 18:31:12 +0000},
journal = {arXiv preprint arXiv:1904.12904},
title = {Neuromorphic Acceleration for Approximate Bayesian Inference on Neural Networks via Permanent Dropout},
year = {2019}
}
</pre>
<a name="madireddy2019neuromorphic"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#madireddy2019neuromorphic">madireddy2019neuromorphic</a>,
author = {Madireddy, Sandeep and Yanguas-Gil, Angel and Balaprakash, Prasanna},
booktitle = {International Conference on Neuromorphic Computing},
date-added = {2019-09-04 06:55:46 +0000},
date-modified = {2019-09-29 18:31:28 +0000},
journal = {arXiv preprint arXiv:1906.01668},
title = {Neuromorphic Architecture Optimization for Task-Specific Dynamic Learning},
year = {2019}
}
</pre>
<a name="Aithal2019"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#Aithal2019">Aithal2019</a>,
author = {Aithal, Shashi M. and Balaprakash, Prasanna},
booktitle = {High Performance Computing},
editor = {Weiland, Mich{\`e}le and Juckeland, Guido and Trinitis, Carsten and Sadayappan, Ponnuswamy},
isbn = {978-3-030-20656-7},
pages = {186--205},
publisher = {Springer International Publishing},
title = {{MaLTESE: Large-Scale Simulation-Driven Machine Learning for Transient Driving Cycles}},
year = {2019}
}
</pre>
<a name="kimgraph2019"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#kimgraph2019">kimgraph2019</a>,
author = {Kim, Cheolmin and Kim, Kibaek and Balaprakash, Prasanna and Anitescu, Mihai},
booktitle = {IEEE Power \& Energy Society General Meeting (PESGM)},
date-added = {2019-09-12 07:10:30 +0000},
date-modified = {2019-09-12 07:14:58 +0000},
title = {Graph Convolutional Neural Networks for Optimal Load Shedding under Line Contingency},
year = {2019}
}
</pre>
<a name="MadireddyICPP2019"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MadireddyICPP2019">MadireddyICPP2019</a>,
acmid = {3337922},
address = {New York, NY, USA},
articleno = {79},
author = {Madireddy, Sandeep and Balaprakash, Prasanna and Carns, Philip and Latham, Robert and Lockwood, Glenn K. and Ross, Robert and Snyder, Shane and Wild, Stefan M.},
booktitle = {Proceedings of the 48th International Conference on Parallel Processing},
date-added = {2019-09-04 06:54:04 +0000},
date-modified = {2019-09-04 06:56:52 +0000},
doi = {10.1145/3337821.3337922},
isbn = {978-1-4503-6295-5},
location = {Kyoto, Japan},
numpages = {11},
pages = {79:1--79:11},
publisher = {ACM},
series = {ICPP 2019},
title = {Adaptive Learning for Concept Drift in Application Performance Modeling},
url = {<a href="http://doi.acm.org/10.1145/3337821.3337922">http://doi.acm.org/10.1145/3337821.3337922</a>},
year = {2019},
bdsk-url-1 = {<a href="http://doi.acm.org/10.1145/3337821.3337922">http://doi.acm.org/10.1145/3337821.3337922</a>},
bdsk-url-2 = {<a href="http://dx.doi.org/10.1145/3337821.3337922">http://dx.doi.org/10.1145/3337821.3337922</a>}
}
</pre>
<a name="Sre2019"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#Sre2019">Sre2019</a>,
author = {Sreenivasan, Vinu and Javali, Rajath and Hall, Mary and Balaprakash, Prasanna and Scogland, Thomas R. W. and de Supinski, Bronis R.},
booktitle = {OpenMP: Conquering the Full Hardware Spectrum},
date-added = {2019-09-04 06:53:25 +0000},
date-modified = {2019-09-04 06:53:38 +0000},
editor = {Fan, Xing and de Supinski, Bronis R. and Sinnen, Oliver and Giacaman, Nasser},
isbn = {978-3-030-28596-8},
pages = {50--60},
publisher = {Springer International Publishing},
title = {A Framework for Enabling OpenMP Autotuning},
year = {2019}
}
</pre>
<a name="WozBMC18"></a><pre>
@article{<a href="pbalapra-bibtex.html#WozBMC18">WozBMC18</a>,
author = {Justin M. Wozniak and Rajeev Jain and Prasanna Balaprakash and Jonathan Ozik and Nicholson T. Collier and John Bauer and Fangfang Xia and Thomas S. Brettin and Rick Stevens and Jamaludin Mohd{-}Yusof and Cristina Garcia{-}Cardona and Brian Van Essen and Matthew Baughman},
date-added = {2019-01-19 20:10:02 +0000},
date-modified = {2019-01-19 20:10:36 +0000},
doi = {10.1186/s12859-018-2508-4},
journal = {{BMC} Bioinformatics},
number = {18},
pages = {59--69},
title = {CANDLE/Supervisor: a workflow framework for machine learning applied to cancer research},
url = {https://doi.org/10.1186/s12859-018-2508-4},
volume = {19-S},
year = {2018},
bdsk-url-1 = {https://doi.org/10.1186/s12859-018-2508-4},
bdsk-url-2 = {<a href="http://dx.doi.org/10.1186/s12859-018-2508-4">http://dx.doi.org/10.1186/s12859-018-2508-4</a>}
}
</pre>
<a name="LiuKetBalFos2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#LiuKetBalFos2018">LiuKetBalFos2018</a>,
author = {Zhengchun Liu and Rajkumar Kettimuthu and Prasanna Balaprakash and Ian Foster},
booktitle = {the 1st International Conference on Machine Learning for Networking},
date-added = {2019-01-19 20:05:12 +0000},
date-modified = {2019-01-19 20:05:42 +0000},
location = {Paris, France},
numpages = {20},
publisher = {Springer},
series = {MLN 2018},
title = {Building a Wide-Area Data Transfer Performance Predictor: An Empirical Study},
year = {2018}
}
</pre>
<a name="Madireddy_cluster2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#Madireddy_cluster2018">Madireddy_cluster2018</a>,
author = {Madireddy, Sandeep and Balaprakash, Prasanna and Carns, Philip and Latham, Robert and Ross, Robert and Snyder, Shane and Wild, Stefan M},
booktitle = {2018 IEEE International Conference on Cluster Computing (CLUSTER)},
date-added = {2018-09-28 18:32:33 +0000},
date-modified = {2019-01-19 22:51:33 +0000},
title = {Modeling {I/O} Performance Variability Using Conditional Variational Autoencoders},
year = {2018}
}
</pre>
<a name="Madireddy_pdsw2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#Madireddy_pdsw2018">Madireddy_pdsw2018</a>,
author = {Madireddy, Sandeep and Balaprakash, Prasanna and Carns, Philip and Latham, Robert and Lockwood, Glenn K and Ross, Robert and Snyder, Shane and Wild, Stefan M},
booktitle = {In Review},
date-added = {2018-09-28 18:32:33 +0000},
date-modified = {2019-01-19 22:51:46 +0000},
title = {Online Change Point Detection and Adaptive Predictive Modeling of {I/O} Performance},
year = {2018}
}
</pre>
<a name="MalBalVis2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MalBalVis2018">MalBalVis2018</a>,
author = {P. Malakar and P. Balaprakash and V. Vishwanath and V. Morozov and K. Kumaran},
booktitle = {{PMBS 2018:} Performance Modeling, Benchmarking and Simulation of High Performance Computer Systems (held in conjunction with SC18)},
date-added = {2018-09-28 15:28:38 +0000},
date-modified = {2018-09-28 15:33:05 +0000},
title = {Benchmarking Machine Learning Methods for Performance Modeling of Scientific Applications},
year = {2018}
}
</pre>
<a name="BalLarWil2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalLarWil2018">BalLarWil2018</a>,
author = {P. Balaprakash and J. Larson and V. Vishwanath and S. Wild},
booktitle = {{SciML 2018: DOE ASCR Scientific Machine Learning Workshop}},
date-added = {2018-09-28 14:50:35 +0000},
date-modified = {2018-09-28 14:53:08 +0000},
title = {Derivative-Free Mixed-Integer Optimization for Automated Predictive Modeling using Machine Learning},
year = {2018}
}
</pre>
<a name="SalUraChil2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#SalUraChil2018">SalUraChil2018</a>,
author = {M. Salim and T. Uram and J. Childers and P. Balaprakash and V. Vishwanath and M. Papka},
booktitle = {Python for High-Performance and Scientific Computing (held in conjunction with SC18)},
date-added = {2018-09-28 14:39:50 +0000},
date-modified = {2019-02-10 21:22:45 +0000},
title = {Balsam: Automated Scheduling and Execution of Dynamic, Data-Intensive {HPC} Workflows},
year = {2018}
}
</pre>
<a name="LeeAgrBal2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#LeeAgrBal2018">LeeAgrBal2018</a>,
author = {S. Lee and A. Agrawal and P. Balaprakash and A. Choudhary and W. Liao},
booktitle = {Machine Learning in HPC (held in conjunction with SC18)},
date-added = {2018-09-28 14:36:42 +0000},
date-modified = {2018-09-28 14:39:39 +0000},
title = {Communication-Efficient Parallelization Strategy for Deep Convolutional Neural Network Training},
year = {2018}
}
</pre>
<a name="MadBalCar2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MadBalCar2018">MadBalCar2018</a>,
author = {Madireddy, Sandeep and Balaprakash, Prasanna and Carns, Philip and Latham, Robert and Ross, Robert and Snyder, Shane and Wild, Stefan M.},
booktitle = {High Performance Computing},
date-added = {2018-09-28 14:25:46 +0000},
date-modified = {2019-02-10 21:18:36 +0000},
isbn = {978-3-319-92040-5},
pages = {184--204},
publisher = {Springer International Publishing},
title = {Machine Learning Based Parallel {I/O} Predictive Modeling: {A} Case Study on {L}ustre File Systems},
year = {2018}
}
</pre>
<a name="SUBASI2018277"></a><pre>
@article{<a href="pbalapra-bibtex.html#SUBASI2018277">SUBASI2018277</a>,
author = {Omer Subasi and Sheng Di and Leonardo Bautista-Gomez and Prasanna Balaprakash and Osman Unsal and Jesus Labarta and Adrian Cristal and Sriram Krishnamoorthy and Franck Cappello},
doi = {https://doi.org/10.1016/j.suscom.2018.01.004},
issn = {2210-5379},
journal = {Sustainable Computing: Informatics and Systems},
pages = {277 - 290},
title = {Exploring the capabilities of support vector machines in detecting silent data corruptions},
volume = {19},
year = {2018},
bdsk-url-1 = {https://doi.org/10.1016/j.suscom.2018.01.004}
}
</pre>
<a name="BalSalUra2018"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalSalUra2018">BalSalUra2018</a>,
author = {P. Balaprakash and M. Salim and T. Uram and V. Vishwanath and S. M. Wild},
booktitle = {25th IEEE International Conference on High Performance Computing, Data, and Analytics},
date-added = {2018-09-27 17:27:27 +0000},
date-modified = {2018-09-28 14:35:35 +0000},
publisher = {IEEE},
title = {{DeepHyper:} {Asynchronous Hyperparameter Search for Deep Neural Networks}},
year = {2018}
}
</pre>
<a name="BalDonGamHall2018"></a><pre>
@article{<a href="pbalapra-bibtex.html#BalDonGamHall2018">BalDonGamHall2018</a>,
author = {P. Balaprakash and J. Dongarra and T. Gamblin and M. Hall and J. K. Hollingsworth and B. Norris and R. Vuduc},
date-added = {2018-09-27 17:24:41 +0000},
date-modified = {2018-09-27 17:26:11 +0000},
doi = {10.1109/JPROC.2018.2841200},
issn = {0018-9219},
journal = {Proceedings of the IEEE},
pages = {1-16},
title = {Autotuning in High-Performance Computing Applications},
year = {2018},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/JPROC.2018.2841200">http://dx.doi.org/10.1109/JPROC.2018.2841200</a>}
}
</pre>
<a name="Foster2017"></a><pre>
@techreport{<a href="pbalapra-bibtex.html#Foster2017">Foster2017</a>,
author = {I. Foster and T. Lehman and N. Rao and B. Lyles and P. Balaprakash and K. Perumalla and S. Prowell and R. Vatsavi},
date-added = {2017-09-27 16:33:14 +0000},
date-modified = {2017-09-27 16:34:48 +0000},
institution = {{DOE ASCR Workshop Report}},
title = {Towards New Generation Intelligent Networking Infrastructure for Distributed Science Environments},
url = {https://www.orau.gov/smarthp2016/Final-report.pdf},
year = {2017},
bdsk-url-1 = {<a href="http://science.energy.gov/~/media/ascr/pdf/program-documents/docs/Machine_Learning_DOE_Workshop_Report.pdf">http://science.energy.gov/~/media/ascr/pdf/program-documents/docs/Machine_Learning_DOE_Workshop_Report.pdf</a>}
}
</pre>
<a name="MamBalCho2017"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MamBalCho2017">MamBalCho2017</a>,
author = {A. Mametjanov and P. Balaprakash and C. Choudary and P. D. Hovland and S. M. Wild and G. Sabin and G. Wolfe},
date-added = {2017-09-27 16:12:28 +0000},
date-modified = {2017-09-27 16:16:05 +0000},
title = {Improving {FPGA} Design Parameter Exploration: Timing, Power, and Area},
year = {2017},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/FCCM.2015.54">http://dx.doi.org/10.1109/FCCM.2015.54</a>}
}
</pre>
<a name="ChuBalMorVisKum2017"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#ChuBalMorVisKum2017">ChuBalMorVisKum2017</a>,
acmid = {3075593},
address = {New York, NY, USA},
author = {S. Chunduri and P. Balaprakash and V. Morozov and V. Vishwanath and K. Kumaran},
booktitle = {Proceedings of the Computing Frontiers Conference},
date-added = {2017-09-27 15:59:09 +0000},
date-modified = {2017-09-27 16:00:01 +0000},
doi = {10.1145/3075564.3075593},
isbn = {978-1-4503-4487-6},
keywords = {KNL, analytical modeling, benchmark, performance, projection},
location = {Siena, Italy},
numpages = {4},
pages = {247--250},
publisher = {ACM},
series = {CF'17},
title = {Analytical Performance Modeling and Validation of Intel's Xeon Phi Architecture},
url = {<a href="http://doi.acm.org/10.1145/3075564.3075593">http://doi.acm.org/10.1145/3075564.3075593</a>},
year = {2017},
bdsk-url-1 = {<a href="http://doi.acm.org/10.1145/3075564.3075593">http://doi.acm.org/10.1145/3075564.3075593</a>},
bdsk-url-2 = {<a href="http://dx.doi.org/10.1145/3075564.3075593">http://dx.doi.org/10.1145/3075564.3075593</a>}
}
</pre>
<a name="LiuBalKetFos2017"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#LiuBalKetFos2017">LiuBalKetFos2017</a>,
acmid = {3078605},
address = {New York, NY, USA},
author = {Z. Liu and P. Balaprakash and R. Kettimuthu and I. Foster},
booktitle = {Proceedings of the 26th International Symposium on High-Performance Parallel and Distributed Computing},
date-added = {2017-09-27 15:56:34 +0000},
date-modified = {2017-09-30 03:05:55 +0000},
doi = {10.1145/3078597.3078605},
isbn = {978-1-4503-4699-3},
location = {Washington, DC, USA},
note = {Acceptance rate 19\%},
numpages = {12},
pages = {167--178},
publisher = {ACM},
series = {HPDC '17},
title = {Explaining Wide Area Data Transfer Performance},
url = {<a href="http://doi.acm.org/10.1145/3078597.3078605">http://doi.acm.org/10.1145/3078597.3078605</a>},
year = {2017},
bdsk-url-1 = {<a href="http://doi.acm.org/10.1145/3078597.3078605">http://doi.acm.org/10.1145/3078597.3078605</a>},
bdsk-url-2 = {<a href="http://dx.doi.org/10.1145/3078597.3078605">http://dx.doi.org/10.1145/3078597.3078605</a>}
}
</pre>
<a name="MadiBalCarLatRossSnyWil2017"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MadiBalCarLatRossSnyWil2017">MadiBalCarLatRossSnyWil2017</a>,
author = {S. Madireddy and P. Balaprakash and P. Carns and R. Latham and R. Ross and S. Snyder and S. M. Wild},
booktitle = {2017 International Conference on Networking, Architecture, and Storage (NAS)},
date-added = {2017-09-27 15:44:26 +0000},
date-modified = {2017-09-30 03:03:47 +0000},
doi = {10.1109/NAS.2017.8026844},
month = {Aug},
note = {Acceptance rate 33\%},
pages = {1-10},
title = {Analysis and Correlation of Application {I/O} Performance and System-Wide {I/O} Activity},
year = {2017},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/NAS.2017.8026844">http://dx.doi.org/10.1109/NAS.2017.8026844</a>}
}
</pre>
<a name="MadiBalCarLat2017"></a><pre>
@misc{<a href="pbalapra-bibtex.html#MadiBalCarLat2017">MadiBalCarLat2017</a>,
author = {S. Madireddy and P. Balaprakash and P. Carns and R. Latham and R. Ross and S. Snyder and S. Wild},
date-added = {2017-09-27 15:40:13 +0000},
date-modified = {2017-09-27 16:16:55 +0000},
title = {Modeling application {I/O} performance variability: A probabilistic graphical model approach},
year = {2017}
}
</pre>
<a name="SubDiBal2017"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#SubDiBal2017">SubDiBal2017</a>,
author = {O. Subasi and S. Di and P. Balaprakash and O. Unsal and J. Labarta and A. Cristal and S. Krishnamoorthy and F. Cappello},
booktitle = {In 3rd Workshop on Fault Tolerance Systems (FTS'17)},
date-added = {2017-09-27 15:31:50 +0000},
date-modified = {2019-02-10 21:19:21 +0000},
title = {{MACORD:} Online Adaptive Machine Learning Framework for Silent Error Detection},
year = {2017}
}
</pre>
<a name="MunBal2017"></a><pre>
@article{<a href="pbalapra-bibtex.html#MunBal2017">MunBal2017</a>,
author = {T. Munson and P. Balaprakash},
date-added = {2017-09-27 15:15:44 +0000},
date-modified = {2017-09-27 15:16:16 +0000},
doi = {10.6084/m9.figshare.5334208.v1},
month = {8},
title = {{Dynamic Adversarial Games in Complex Systems and Machine Learning}},
url = {https://figshare.com/articles/Dynamic_Adversarial_Games_in_Complex_Systems_and_Machine_Learning/5334208},
year = {2017},
bdsk-url-1 = {https://figshare.com/articles/Dynamic_Adversarial_Games_in_Complex_Systems_and_Machine_Learning/5334208},
bdsk-url-2 = {<a href="http://dx.doi.org/10.6084/m9.figshare.5334208.v1">http://dx.doi.org/10.6084/m9.figshare.5334208.v1</a>}
}
</pre>
<a name="BalBunChaGhuChi2013a"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalBunChaGhuChi2013a">BalBunChaGhuChi2013a</a>,
acmid = {2499973},
address = {San Diego, CA, USA},
articleno = {5},
author = {Balaprakash, Prasanna and Buntinas, Darius and Chan, Anthony and Guha, Apala and Gupta, Rinku and Narayanan, Sri Hari Krishna and Chien, Andrew A. and Hovland, Paul and Norris, Boyana},
booktitle = {Proceedings of the High Performance Computing Symposium},
date-added = {2017-01-08 02:46:27 +0000},
date-modified = {2017-01-08 02:47:06 +0000},
isbn = {978-1-62748-033-8},
location = {San Diego, California},
numpages = {8},
pages = {5:1--5:8},
publisher = {Society for Computer Simulation International},
series = {HPC '13},
title = {Exascale Workload Characterization and Architecture Implications},
url = {<a href="http://dl.acm.org/citation.cfm?id=2499968.2499973">http://dl.acm.org/citation.cfm?id=2499968.2499973</a>},
year = {2013},
bdsk-url-1 = {<a href="http://dl.acm.org/citation.cfm?id=2499968.2499973">http://dl.acm.org/citation.cfm?id=2499968.2499973</a>}
}
</pre>
<a name="RoyBalHovWil2016"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#RoyBalHovWil2016">RoyBalHovWil2016</a>,
author = {A. Roy and P. Balaprakash and P. D. Hovland and S. M. Wild},
booktitle = {2016 IEEE International Parallel and Distributed Processing Symposium Workshops (IPDPSW)},
date-added = {2017-01-08 01:59:17 +0000},
date-modified = {2017-01-08 02:39:34 +0000},
doi = {10.1109/IPDPSW.2016.85},
pages = {1535-1544},
title = {Exploiting Performance Portability in Search Algorithms for Autotuning},
year = {2016},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/IPDPSW.2016.85">http://dx.doi.org/10.1109/IPDPSW.2016.85</a>}
}
</pre>
<a name="MoaBalRouWil2016"></a><pre>
@article{<a href="pbalapra-bibtex.html#MoaBalRouWil2016">MoaBalRouWil2016</a>,
author = {A. Moawad and P. Balaprakash and A. Rousseau and S. M. Wild},
date-added = {2016-07-11 00:37:23 +0000},
date-modified = {2016-07-11 04:12:18 +0000},
doi = {10.1007/s12239-016-0104-z},
journal = {International Journal of Automotive Technology},
number = {6},
pages = {1067--1077},
title = {Novel large scale simulation process to support {DOT}'s {CAFE} modeling system},
volume = {17},
year = {2016},
bdsk-url-1 = {<a href="http://www.mcs.anl.gov/papers/P5292-0215.pdf">http://www.mcs.anl.gov/papers/P5292-0215.pdf</a>}
}
</pre>
<a name="BalTiwWilHov2016"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalTiwWilHov2016">BalTiwWilHov2016</a>,
author = {P. Balaprakash and A. Tiwari and S. M. Wild and P. D. Hovland},
booktitle = {High Performance Computing: 31st International Conference, ISC High Performance 2016, Frankfurt, Germany, June 19-23, 2016, Proceedings},
date-added = {2016-07-11 00:29:25 +0000},
date-modified = {2017-01-28 04:30:29 +0000},
doi = {10.1007/978-3-319-41321-1_12},
editor = {Kunkel, M. Julian and Balaji, Pavan and Dongarra, Jack},
isbn = {978-3-319-41321-1},
pages = {219--239},
publisher = {Springer International Publishing},
title = {{AutoMOMML: Automatic Multi-objective Modeling with Machine Learning}},
year = {2016},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1007/978-3-319-41321-1_12">http://dx.doi.org/10.1007/978-3-319-41321-1_12</a>}
}
</pre>
<a name="BalMorKetKumFos2016"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalMorKetKumFos2016">BalMorKetKumFos2016</a>,
author = {P. Balaprakash and V. Morozov and R. Kettimuthu and K. Kumaran and I. Foster},
booktitle = {2016 45th International Conference on Parallel Processing (ICPP)},
date-added = {2016-07-11 00:26:44 +0000},
date-modified = {2017-01-09 01:51:36 +0000},
doi = {10.1109/ICPP.2016.36},
note = {Acceptance rate 21.10\%},
pages = {248--257},
title = {Improving Data Transfer Throughput with Direct Search Optimization},
year = {2016},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/ICPP.2016.36">http://dx.doi.org/10.1109/ICPP.2016.36</a>}
}
</pre>
<a name="SubDiBauBal2016"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#SubDiBauBal2016">SubDiBauBal2016</a>,
author = {O. Subasi and S. Di and L. Bautista-Gomez and P. Balaprakash and O. Unsal and J. Labarta and A. Cristal and F. Cappello},
booktitle = {2016 16th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing (CCGrid)},
date-added = {2016-03-14 21:42:40 +0000},
date-modified = {2017-01-09 01:51:46 +0000},
doi = {10.1109/CCGrid.2016.33},
note = {Acceptance rate 20.0\%},
pages = {413--424},
title = {Spatial Support Vector Regression to Detect Silent Errors in the Exascale Era},
year = {2016},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/CCGrid.2016.33">http://dx.doi.org/10.1109/CCGrid.2016.33</a>}
}
</pre>
<a name="berry2015ml"></a><pre>
@techreport{<a href="pbalapra-bibtex.html#berry2015ml">berry2015ml</a>,
author = {M. Berry and T. E. Potok and P. Balaprakash and H. Hoffmann and R. Vatsavai and Prabhat},
date-added = {2015-09-22 02:35:30 +0000},
date-modified = {2017-01-28 04:33:09 +0000},
institution = {{DOE ASCR Workshop Report}},
title = {Machine learning and understanding for intelligent extreme scale scientific computing and discovery},
url = {<a href="http://science.energy.gov/~/media/ascr/pdf/program-documents/docs/Machine_Learning_DOE_Workshop_Report.pdf">http://science.energy.gov/~/media/ascr/pdf/program-documents/docs/Machine_Learning_DOE_Workshop_Report.pdf</a>},
year = {2015},
bdsk-url-1 = {<a href="http://science.energy.gov/~/media/ascr/pdf/program-documents/docs/Machine_Learning_DOE_Workshop_Report.pdf">http://science.energy.gov/~/media/ascr/pdf/program-documents/docs/Machine_Learning_DOE_Workshop_Report.pdf</a>}
}
</pre>
<a name="BalBirSto15"></a><pre>
@article{<a href="pbalapra-bibtex.html#BalBirSto15">BalBirSto15</a>,
author = {P. Balaprakash and M. Birattari and T. St{\"u}tzle and M. Dorigo},
date-added = {2015-09-22 02:20:46 +0000},
date-modified = {2015-09-23 03:59:11 +0000},
doi = {10.1007/s10589-014-9719-z},
journal = {Computational Optimization and Applications},
number = {2},
pages = {463--487},
title = {Estimation-based metaheuristics for the single vehicle routing problem with stochastic demands and customers},
volume = {61},
year = {2015},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1007/s10589-014-9719-z">http://dx.doi.org/10.1007/s10589-014-9719-z</a>}
}
</pre>
<a name="MamBalCho2015"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MamBalCho2015">MamBalCho2015</a>,
author = {A. Mametjanov and P. Balaprakash and C. Choudary and P. D. Hovland and S. M. Wild and G. Sabin},
booktitle = {2015 IEEE 23rd Annual International Symposium on Field-Programmable Custom Computing Machines (FCCM)},
date-added = {2015-09-21 23:45:03 +0000},
date-modified = {2017-01-09 01:51:09 +0000},
doi = {10.1109/FCCM.2015.54},
note = {Acceptance rate 22.10\%},
pages = {84--91},
title = {Autotuning {FPGA} design parameters for performance and power},
year = {2015},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/FCCM.2015.54">http://dx.doi.org/10.1109/FCCM.2015.54</a>}
}
</pre>
<a name="BalGomBou15"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalGomBou15">BalGomBou15</a>,
author = {P. Balaprakash and L. A. B. Gomez and M. S. Bouguerra and S. M. Wild and F. Cappello and P. D. Hovland},
booktitle = {High Performance Computing Systems. Performance Modeling, Benchmarking, and Simulation -- PMBS 2014},
date-added = {2015-05-18 17:09:41 +0000},
date-modified = {2017-01-09 01:51:03 +0000},
doi = {10.1007/978-3-319-17248-4_13},
editor = {Jarvis, Stephen A. and Wright, Steven A. and Hammond, Simon D.},
note = {Acceptance rate 26\%},
pages = {249--263},
publisher = {Springer International Publishing},
series = {Lecture Notes in Computer Science},
title = {Analysis of the tradeoffs between energy and run time for multilevel checkpointing},
volume = {8966},
year = {2015},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1007/978-3-319-17248-4_13">http://dx.doi.org/10.1007/978-3-319-17248-4_13</a>}
}
</pre>
<a name="NelRivBal2015"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#NelRivBal2015">NelRivBal2015</a>,
author = {T. Nelson and A. Rivera and P. Balaprakash and M. Hall and P. D. Hovland and E. Jessup and B. Norris},
booktitle = {2015 44th International Conference on Parallel Processing (ICPP)},
date-added = {2015-05-18 16:48:59 +0000},
date-modified = {2017-01-09 01:51:26 +0000},
doi = {10.1109/ICPP.2015.106},
note = {Acceptance rate 32.5\%},
pages = {969--978},
title = {Generating efficient tensor contractions for {GPU}s},
year = {2015},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/ICPP.2015.106">http://dx.doi.org/10.1109/ICPP.2015.106</a>}
}
</pre>
<a name="BalAleMic15"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalAleMic15">BalAleMic15</a>,
author = {P. Balaprakash and Y. Alexeev and S. A. Mickelson and S. Leyffer and R. Jacob and A. Craig},
booktitle = {High Performance Computing for Computational Science -- VECPAR 2014, Revised Selected Papers},
date-added = {2015-05-18 16:38:00 +0000},
date-modified = {2016-07-11 00:32:26 +0000},
doi = {10.1007/978-3-319-17353-5_7},
editor = {Dayd{\'e}, Michel and Marques, Osni and Nakajima, Kengo},
pages = {79--91},
publisher = {Springer International Publishing},
series = {Lecture Notes in Computer Science},
title = {Machine-learning-based load balancing for community ice code component in {CESM}},
volume = {8969},
year = {2015},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1007/978-3-319-17353-5_7">http://dx.doi.org/10.1007/978-3-319-17353-5_7</a>}
}
</pre>
<a name="IsaBalWil2015"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#IsaBalWil2015">IsaBalWil2015</a>,
author = {F. Isaila and P. Balaprakash and S. M. Wild and D. Kimpe and R. Latham and R. Ross and P. D. Hovland},
booktitle = {2015 IEEE International Conference on Cluster Computing (CLUSTER)},
date-added = {2015-02-01 00:56:25 +0000},
date-modified = {2017-01-09 01:51:20 +0000},
doi = {10.1109/CLUSTER.2015.29},
note = {Acceptance rate 24\%},
organization = {IEEE},
pages = {128--137},
title = {Collective {I/O} tuning using analytical and machine learning models},
year = {2015},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1109/CLUSTER.2015.29">http://dx.doi.org/10.1109/CLUSTER.2015.29</a>}
}
</pre>
<a name="MoaBalRouWil2015"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#MoaBalRouWil2015">MoaBalRouWil2015</a>,
author = {A. Moawad and P. Balaprakash and A. Rousseau and S. M. Wild},
booktitle = {International Electric Vehicle Symposium and Exhibition (EVS28)},
date-added = {2015-02-01 00:49:27 +0000},
date-modified = {2015-09-23 04:12:59 +0000},
title = {Novel large scale simulation process to support {DOT}'s {CAFE} modeling system},
url = {<a href="http://www.mcs.anl.gov/papers/P5292-0215.pdf">http://www.mcs.anl.gov/papers/P5292-0215.pdf</a>},
year = {2015},
bdsk-url-1 = {<a href="http://www.mcs.anl.gov/papers/P5292-0215.pdf">http://www.mcs.anl.gov/papers/P5292-0215.pdf</a>}
}
</pre>
<a name="BalTiwWil2014b"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalTiwWil2014b">BalTiwWil2014b</a>,
author = {P. Balaprakash and A. Tiwari and S. M. Wild},
booktitle = {{The SUPER Project Newsletter}},
date-added = {2014-12-17 17:20:07 +0000},
date-modified = {2017-01-28 04:45:27 +0000},
title = {Framework for Optimizing Power, Energy, and Performance},
url = {<a href="http://www.super-scidac.org/sites/super-scidac.org/files/SUPERNEWSLETTERApril2014final_0.pdf">http://www.super-scidac.org/sites/super-scidac.org/files/SUPERNEWSLETTERApril2014final_0.pdf</a>},
year = {2014},
bdsk-url-1 = {<a href="http://www.super-scidac.org/sites/super-scidac.org/files/SUPERNEWSLETTERApril2014final_0.pdf">http://www.super-scidac.org/sites/super-scidac.org/files/SUPERNEWSLETTERApril2014final_0.pdf</a>}
}
</pre>
<a name="BalWilHov2011b"></a><pre>
@misc{<a href="pbalapra-bibtex.html#BalWilHov2011b">BalWilHov2011b</a>,
author = {P. Balaprakash and S. M. Wild and P. D. Hovland},
date-added = {2014-12-13 22:50:22 -0600},
date-modified = {2014-12-17 17:40:33 +0000},
howpublished = {2011 DOE Applied Mathematics Program Meeting, Washington, DC},
note = {{Abstract}},
title = {Model-based optimization algorithms for empirical performance tuning},
year = {2011}
}
</pre>
<a name="BalWilHov2012a"></a><pre>
@misc{<a href="pbalapra-bibtex.html#BalWilHov2012a">BalWilHov2012a</a>,
author = {P. Balaprakash and S. M. Wild and P. D. Hovland},
date-added = {2014-12-13 22:48:33 -0600},
date-modified = {2014-12-14 16:47:10 -0600},
howpublished = {DOE CScADS Workshop on Libraries and Autotuning for Extreme-Scale Systems},
note = {{Abstract}},
title = {Global and local search algorithms in empirical performance tuning},
year = {2011}
}
</pre>
<a name="BalWilHov2012b"></a><pre>
@misc{<a href="pbalapra-bibtex.html#BalWilHov2012b">BalWilHov2012b</a>,
author = {P. Balaprakash and S. M. Wild and P. D. Hovland},
date-added = {2014-12-13 22:46:18 -0600},
date-modified = {2014-12-14 16:47:17 -0600},
howpublished = {SIAM Conference on Parallel Processing (SIAM PP 2012)},
note = {{Abstract}},
title = {Efficient optimization algorithms for empirical performance tuning},
year = {2012}
}
</pre>
<a name="NorZhuNelBalWil2011a"></a><pre>
@misc{<a href="pbalapra-bibtex.html#NorZhuNelBalWil2011a">NorZhuNelBalWil2011a</a>,
author = {B. Norris and Q. Zhu and T. Nelson and P. Balaprakash and S. M. Wild},
date-added = {2014-12-13 22:41:13 -0600},
date-modified = {2014-12-17 17:32:50 +0000},
howpublished = {2011 SIAM Conference on Computational Science and Engineering},
note = {{Abstract}},
title = {Comparison of search strategies in empirical performance tuning of linear algebra kernels},
year = {2011}
}
</pre>
<a name="BalLil2012a"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalLil2012a">BalLil2012a</a>,
author = {P. Balaprakash and O. A. Lilienfeld},
booktitle = {IPAM Chemical Compound Space Reunion},
date-added = {2014-12-13 21:01:44 -0600},
date-modified = {2014-12-17 17:25:09 +0000},
note = {{Invited Abstract}},
title = {A sequential learning approach for quantum chemistry simulations},
year = {2012}
}
</pre>
<a name="BalWilHov2013a"></a><pre>
@misc{<a href="pbalapra-bibtex.html#BalWilHov2013a">BalWilHov2013a</a>,
author = {P. Balaprakash and S. M. Wild and P. D. Hovland},
date-added = {2014-12-13 20:47:29 -0600},
date-modified = {2014-12-14 23:40:41 -0600},
howpublished = {White Paper},
title = {Performance modeling for exascale autotuning: {A}n integrated approach},
year = {2013}
}
</pre>
<a name="BalMorWilVisHovKumAll2014"></a><pre>
@misc{<a href="pbalapra-bibtex.html#BalMorWilVisHovKumAll2014">BalMorWilVisHovKumAll2014</a>,
author = {P. Balaprakash and V. Morozov and S. M. Wild and V. Vishwanath and P. D. Hovland and K. Kumaran and B. Allcock},
date-added = {2014-12-13 20:45:38 -0600},
date-modified = {2014-12-14 17:48:50 -0600},
howpublished = {White Paper},
title = {Machine learning for self-adaptive leadership-class machines},
year = {2014}
}
</pre>
<a name="Bal2010b"></a><pre>
@phdthesis{<a href="pbalapra-bibtex.html#Bal2010b">Bal2010b</a>,
author = {P. Balaprakash},
date-added = {2014-12-13 20:13:45 -0600},
date-modified = {2015-09-23 04:35:45 +0000},
school = {Universit\'e Libre de Bruxelles},
title = {Estimation-based metaheuristics for stochastic combinatorial optimization: {C}ase studies in stochastic routing problems},
url = {<a href="http://iridia.ulb.ac.be/~mdorigo/HomePageDorigo/thesis/phd/PBalaprakashPhDThesis.pdf">http://iridia.ulb.ac.be/~mdorigo/HomePageDorigo/thesis/phd/PBalaprakashPhDThesis.pdf</a>},
year = {2010},
bdsk-url-1 = {<a href="http://iridia.ulb.ac.be/~mdorigo/HomePageDorigo/thesis/phd/PBalaprakashPhDThesis.pdf">http://iridia.ulb.ac.be/~mdorigo/HomePageDorigo/thesis/phd/PBalaprakashPhDThesis.pdf</a>}
}
</pre>
<a name="MoaHalPagRouBalWild2014"></a><pre>
@techreport{<a href="pbalapra-bibtex.html#MoaHalPagRouBalWild2014">MoaHalPagRouBalWild2014</a>,
author = {A. Moawad and S. Halbach and S. Pagerit and A. Rousseau and P. Balaprakash and S. Wild},
date-added = {2014-12-13 20:04:35 -0600},
date-modified = {2015-09-23 04:11:55 +0000},
institution = {Report to Department of Transportation},
number = {ANL/ESD-13/13},
title = {Novel process to use vehicle simulations directly as inputs to {DOTs CAFE} modeling system},
year = {2014}
}
</pre>
<a name="BalWilHov2013"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalWilHov2013">BalWilHov2013</a>,
author = {P. Balaprakash and S. M. Wild and P. D. Hovland},
booktitle = {High Performance Computing for Computational Science - VECPAR 2012, 10th International Conference, Revised Selected Papers},
date-added = {2014-12-13 16:51:50 -0600},
date-modified = {2016-07-11 00:32:03 +0000},
doi = {10.1007/978-3-642-38718-0_26},
editors = {M.J. Dayd\'e, O. Marques, K. Nakajima},
isbn = {978-3-642-38717-3},
pages = {261--269},
publisher = {Springer},
series = {Lecture Notes in Computer Science},
title = {An experimental study of global and local search algorithms in empirical performance tuning},
year = {2013},
bdsk-url-1 = {<a href="http://dx.doi.org/10.1007/978-3-642-38718-0_26">http://dx.doi.org/10.1007/978-3-642-38718-0_26</a>}
}
</pre>
<a name="BalBunChaGhuChi2013a1"></a><pre>
@inproceedings{<a href="pbalapra-bibtex.html#BalBunChaGhuChi2013a1">BalBunChaGhuChi2013a1</a>,
acmid = {2499973},
address = {San Diego, CA, USA},
articleno = {5},
author = {P. Balaprakash and D. Buntinas and A. Chan and A. Guha and R. Gupta and S. Narayanan and A. Chien and P. Hovland and B. Norris},
booktitle = {Proceedings of the High Performance Computing Symposium},