-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications.tex
1074 lines (831 loc) · 49.4 KB
/
publications.tex
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
\noindent {\bf Journal Articles}
\begin{enumerate}
% IF: 6.2
\item [62.] {\it An Exploration of Online-simulation-driven Portfolio Scheduling in Workflow Management Systems}, J. McDonald, J. Dobbs, Y. C. Wong, R. Ferreira da Silva, H. Casanova, \emph{Future Generation Computer Systems (FGCS)}, to appear, {\bf 2024}.
\item [61.] {\it Automated Generation of Scientific Workflow Generators with WfChef}, T. Coleman, H. Casanova, R. Ferreira da Silva, \emph{Future Generation Computer Systems (FGCS)}, 147, 16--29, {\bf 2023}.
\item [60.] {\it Beyond Binary Search: Parallel In-place Construction of Implicit Search Tree Layouts}, K. Berney, H. Casanova, B. Karsin, N. Sitchinava, \emph{IEEE Transactions on Computers (TC)}, 71(5), 1104--1116, {\bf 2022}.
\item [59.] {\it WfCommons: A Framework for Enabling Scientific Workflow Research and Development}, T. Coleman, H. Casanova, L. Pottier, M. Kaushik, E. Deelman, R. Ferreira da Silva, \emph{Future Generation Computer Systems (FGCS)}, 128, 16--27, {\bf 2021}.
\item [58.] {\it Teaching Parallel and Distributed Computing Concepts in Simulation with WRENCH}, H. Casanova, R. Tanaka, W. Koch, R. Ferreira da Silva, \emph{Journal of Parallel and Distributed Computing (JPDC)}, 156, 53--63, {\bf 2021}.
\item [56.] {\it Characterizing, Modeling, and Accurately Simulating Power and Energy Consumption of I/O-intensive Scientific Workflows}, R. Ferreira da Silva, H. Casanova, A.-C. Orgerie, R. Tanaka, E. Deelman F. Suter, \emph{Journal of Computational Science (JOCS)}, 44, {\bf 2020}.
\item [55.] {\it Developing Accurate and Scalable Simulators of Production
Workflow Management Systems with WRENCH}, H. Casanova, R. Ferreira da
Silva, R. Tanaka, S. Pandey, G. Jethwani, W. Koch, S. Albrecht, J. Oeth, F.
Suter, \emph{Future Generation Computer Systems (FGCS)}, 112, 162--175,
{\bf 2020}.
\item [54.] {\it MILP Formulations for Spatio-Temporal Thermal-Aware Scheduling in Cloud and HPC Datacenters}, J.-M. Pierson, P. Stolf, H. Sun, H. Casanova, in \emph{Cluster Computing}, {\bf 2019}.
\item [53.] {\it An Efficient Algorithm for the 1D Total Visibility-Index
Problem}, P. Afshani, M. de Berg, H. Casanova, B. Karsin, C. Lambrechts, N.
Sitchinava, C. Tsirogiannis, in \emph{Journal of Experimental Algorithmics},
23(2.3), 1--23, {\bf 2018}.
\item [52.] {\it Checkpointing Workflows for Fail-Stop Errors},
L. Han, L.-C. Canon, H. Casanova, Y. Robert, F. Vivien,
in \emph{IEEE Transactions on Computers (TC)}, 67(8), 1105--1120, {\bf 2018}.
\item [51.] {\it Computing the expected makespan of task graphs in the presence of silent errors}, J. Herrmann, Y. Robert, H. Casanova, in \emph{Parallel Computing}, 75, 41--60, {\bf 2018}.
\item [50.] {\it Checkpointing Strategies for Scheduling Computational Workflows}, G. Aupy, A. Benoit, H. Casanova, Y. Robert, in International
\emph{Journal of Networking and Computing}, 6(1), 2--26, {\bf 2016}.
\item [49.] {\it Distance Threshold Similarity Searches: Efficient
Trajectory Indexing on the GPU}, M. Gowanlock, H. Casanova, in \emph{IEEE
Transactions on Parallel and Distributed Systems}, 27(9), 2533--2545, {\bf 2016}.
\item [48.] {\it On the Impact of Process Replication on Executions of Large-Scale Parallel Applications with Coordinated Checkpointing},
H. Casanova, Y. Robert, F. Vivien, D. Zaidouni, in \emph{ Future Generation
Computer Systems}, 51, 7--19, {\bf 2015}.
\item [47.] {\it Toward More Scalable Off-Line Simulations of MPI Applications}, H. Casanova, A. Gupta, F. Suter, in \emph{Parallel Processing Letters}, 25(3), {\bf 2015}.
\item [46.] {\it Simulation of MPI Applications with Time-Independent Traces},
F. Deprez, S. Markomanolis, F. Suter, H. Casanova,
in \emph{Concurrency and Computation: Practice and Experience},
27(5), 1145--1168, {\bf 2015}.
\item [45.] {\it Selecting Linear Algebra Kernel Composition Using Response
Time Prediction}, A. Hurault, K. Baek, H. Casanova, in \emph{Software:
Practice and Experience}, 45(12), 1659--1676, {\bf 2015}.
\item [44.] {\it In-Memory Distance Threshold Similarity Searches on Moving
Object Trajectories}, M. Gowanlock, H. Casanova, in \emph{International
Journal On Advances in Software}, 7 (3-4), 617--631 {\bf 2014}.
\item [43.] {\it Swap-and-randomize: A Method for Building Low-latency HPC Interconnects}, I. Fujiwara, M. Koibuchi, H. Matsutani, H. Casanova,
in \emph{IEEE Transactions on Parallel and Distributed Systems (TPDS)}, 26(7), 2051--2060, {\bf 2014}.
\item [42.] {\it Versatile, Scalable, and Accurate Simulation of Distributed Applications and Platforms},
H. Casanova, A. Giersch, A. Legrand, M. Quinson, F. Suter,
in \emph{Journal of Parallel and Distributed Computing},
75(10), 2899--2917, {\bf 2014}.
\item [41.] {\it Mapping Applications on Volatile Resources},
H. Casanova, F. Dufoss\'e, Y. Robert, F. Vivien,
in \emph{International Journal of High Performance Computing Applications (IJHPCA)}, 29(1), 73--91, {\bf 2014}.
\item[40.] {\it Using group replication for resilience on exascale systems},
M. Bougeret, H. Casanova, Y. Robert, F. Vivien, D. Zaidouni,
in \emph{International journal of High Performance Computing Applications (IJHPCA)},
28(2), 210--224, {\bf 2014}.
\item[39.] {\it On the Validity of Flow-level TCP Network Models for Grid and Cloud Simulations}, P. Velho, L. Mello Schnorr, H. Casanova, A. Legrand,
in \emph{ACM Transactions on Modeling and Computer Simulation (TOMACS)}, 23(4),
{\bf 2013}.
\item[38.] {\it Energy-Aware Service Allocation}, D. Borgetto, H. Casanova, G. Da Costa, J.M. Pierson, in \emph{Future Generation Computer Systems (FGCS)}, 28(5), 769--779, {\bf 2012}.
\item[37.] {\it Dynamic Fractional Resource Scheduling vs. Batch Scheduling}, M. Stillwell, F. Vivien, H. Casanova, in \emph{IEEE Transactions on Parallel and Distributed Systems (TPDS)}, 23(3), 521--529, {\bf 2012}.
\item[36.] {\it Preventive Migration vs. Preventive Checkpointing for Extreme Scale Supercomputers}, F. Cappello, H. Casanova, Y. Robert, in \emph{Parallel Processing Letters}, 21(2), 111--132, {\bf 2011}.
%AR = 19.6%
\item[35.] {\it Resource Allocation for Multiple Concurrent In-network Stream-processing Applications}, A. Benoit, H. Casanova, V. Rehn-Sonigo, Y. Robert, in \emph{Parallel Computing (ParCo)}, 30, 331--348, {\bf 2011}.
%AR = 19.6%
\item[34.] {\it On Cluster Resource Allocation for Multiple Parallel Task Graphs}, H. Casanova, F. Desprez, F. Suter, in the \emph{Journal of Parallel and Distributed Computing (JPDC)}, 70(12), 1193--1203, {\bf 2010}.
\item[33.] {\it Resource Allocation Algorithms for Virtualized Service Hosting Platforms}, M. Stillwell, D. Schanzenbach, F. Vivien, H. Casanova, in the \emph{Journal of Parallel and Distributed Computing (JPDC)}, 70(9), 962--974, {\bf 2010}.
\item[32.] {\it Resource Allocation Strategies for Constructive In-Network Stream Processing}, A. Benoit, V. Rhen-Sonigo, Y. Robert, H. Casanova, in the \emph{International Journal of Foundations of Computer Science (IJFCS)}, 22(3), 621-638, {\bf 2010}.
\item[31.] {\it Characterizing Fault Tolerance in Genetic Programming}, D. Lombraña González, F. Fernández de Vega, H. Casanova, in the \emph{Journal of Future Generation Computer Systems (FGCS)}, 26, 847--856, {\bf 2010}.
\item[30.] {\it Scheduling Mixed-Parallel Applications with Advance
Reservations}, K. Aida, H. Casanova, in the \emph{Cluster Computing
Journal}, 12(2), 205--220, {\bf 2009}.
\item[29.] {\it Scheduling Parallel Task Graphs on (Almost) Homogeneous
Multi-cluster Platforms}, P.-F. Dutot, T. N'takp\'e, F. Suter, H. Casanova,
in \emph{IEEE Transactions on Parallel and Distributed Systems (TPDS)}, 20(7), 940--952, {\bf 2009}.
\item[28.] {\it Scheduling Task Parallel Applications for Rapid Application Turnaround on Enterprise Desktop Grids}, D. Kondo, A. Chien, H. Casanova, in the \emph{Journal of Grid Computing}, 5(4), 379--405, {\bf 2007}.
\item[27.] {\it Benefits and Drawbacks of Redundant Batch Requests}, H. Casanova, in the \emph{Journal of Grid Computing}, 5(2), 235-250, {\bf 2007}
\item[26.] {\it Characterizing Resource Availability in Enterprise Desktop
Grids}, D. Kondo, G. Fedak, F. Cappello, H. Casanova, in the \emph{Journal
of Future Generation Computer Systems}, 23(7), 888--903, {\bf 2007}.
\item[25.] {\it Steady-State Scheduling of Multiple Divisible Load
Applications on Wide-Area Distributed Computing Platforms}, L. Marchal, Y.
Yang, H. Casanova, Y. Robert, in the \emph{International Journal
of High Performance Computing Applications} (IJHPCA), 20(8), 365--381,
{\bf 2006}.
\item [24.] {\it Interference-Aware Scheduling}, B. Kreaseck,
L. Carter, H. Casanova, J. Ferrante, S. Nandy,
in the \emph{International Journal of High Performance Computing
Applications} (IJHPCA), 20(2), 45--59, {\bf 2006}.
\item [23.]
{\it New Grid Scheduling and Rescheduling Methods in the GrADS Project},
F. Berman, H. Casanova, A. Chien, K. Cooper, H. Dail, A. Dasgupta, W. Deng, J. Dongarra, L. Johnsson, K. Kennedy, C. Koelbel, B. Liu, X. Liu, A. Mandal, G. Marin, M. Mazin, J. Mellor-Crummey, C. Mendes, A. Olugbile, M. Patel, D. Reed, Z. Shi, O. Sievert, H. Xia, A. Yarkhan, in the \emph{International Journal of Parallel Programming}, 33(2), 209--229, {\bf 2005}.
\item [22.]
{\it Network Modeling Issues for Grid Application Scheduling},
H. Casanova, in the \emph{International Journal of
Foundations of Computer Science (IJFCS)}, 16(2), 145--162, {\bf 2005}.
\item [21.]
{\it Multi-Round algorithms for Scheduling Divisible Workloads},
Y. Yang, K. van der Raadt, H. Casanova, \emph{IEEE Transactions on
Parallel and Distributed Systems (TPDS)}, 16(11), 1092--1102, {\bf 2005}.
\item [20.]
{\it Scheduling Divisible Loads on Star and Tree Networks: Results
and Open Problems}, O. Beaumont, H. Casanova, A. Legrand, Y. Robert,
Y. Yang, \emph{IEEE Transactions on Parallel and Distributed
Systems (TPDS)}, 16(3), 207--218, {\bf 2005}.
\item [19.]
{\it The Encyclopedia of Life Project: Grid Software and Deployment},
W. Li, R. Byrnes, J. Hayes, V. Reyes, A. Birnbaum, A. Shabab, C. Mosley,
D. Pekurowsky, G. Quinn, I. Shindyalov, H. Casanova, L. Ang, F. Berman,
M. Miller, P. Bourne, in the \emph{Journal of New Generation Computing
on Grid Systems for Life Sciences}, 22(2), 127--136, {\bf 2004}.
\item [18.]
{\it A Simple MPI Process Swapping Architecture for Iterative
Applications}, O. Sievert, H. Casanova, \emph{The International Journal
of High Performance Computing Applications} (IJHPCA), 18(3), 341--352,
{\bf 2004}.
\item [17.]
{\it The Virtual Instrument: Support for Grid-enabled Scientific
Simulations}, H. Casanova, et al., \emph{The International Journal of High
Performance Computing Applications} (IJHPCA), 18(1), 3--17, {\bf 2004}.
\item [16.]
{\it Resource Allocation Strategies for Guided Parameter Space Searches},
M. Faerman, A. Birnbaum, F. Berman, H. Casanova, \emph{The International
Journal of High Performance Computing Applications} (IJHPCA),
17(4), 383--402, {\bf 2003}.
\item [15.]
{\it Adaptive Computing on the Grid Using AppLeS}, F. Berman, R. Wolski,
H. Casanova, W. Cirne, H. Dail, M. Faerman, S. Figueira, J. Hayes,
G. Obertelli, J. Schopf, G. Shao, S. Smallen, N. Spring, A. Su,
D. Zagorodnov, \emph{IEEE Transactions on Parallel and Distributed
Systems (TPDS)}, 14(4), 369--382, {\bf 2003}.
\item [14.]
{\it A Decoupled Scheduling Approach for Grid Application Development
Environments}, H. Dail, F. Berman, H. Casanova, \emph{Journal of Parallel
and Distributed Computing} (JPDC), Special issue on Grid Computing,
63(5), 505--524, {\bf 2003}.
\item[13.]
{\it Using TOP-C and AMPIC to Port Large Parallel Applications to the
Computational Grid}, G. Cooperman, H. Casanova, J. Hayes, T. Witzel,
\emph{The International Journal on Future Generation Computer Systems}
(FGCS), 19(4), 587--596, {\bf 2003}.
\item[12.]
{\it Applying Scheduling and Tuning to On-line Parallel Tomography},
S. Smallen, H. Casanova, F. Berman, \emph{Scientific Programming},
10(4), {\bf 2003}.
\item[11.]
{\it Innovation of the NetSolve Grid Computing System}, D. Arnold,
H. Casanova, J. Dongarra, \emph{Concurrency and Computation: Practice
and Experience} (CCPE), 14(13-15), 1457--1479, {\bf 2002}.
\item[10.]
{\it Middleware for the Use of Storage in Communication}, M. Beck,
D. Arnold, A. Bassi, F. Berman, H. Casanova, J. Dongarra, T. Moore,
G. Obertelli, J. Plank, M. Swany, S. Vadhiyar, R. Wolski, \emph{Parallel
Computing}, 28(12), 1773--1787, {\bf 2002}.
\item[9.]
{\it Distributing MCell Simulations on the Grid}, H. Casanova, T. Bartol,
J. Stiles, F. Berman, \emph{The International Journal of High Performance
Computing Applications} (IJHPCA), Vol. 14(3), 243--257, Fall {\bf 2001}.
\item[8.]
{\it The AppLeS Parameter Sweep Template: User-Level Middleware for the
Grid}, H. Casanova, G. Obertelli, F. Berman, R. Wolski, \emph{Scientific
Programming}, Vol. 8(3), 111--126, {\bf 2001}.
\item[7.]
{\it Adaptive Scheduling for Task Farming with Grid Middleware},
H. Casanova, M. Kim, J. Plank, J. Dongarra, \emph{The International
Journal of Supercomputer Applications and High Performance Computing}
(IJHPCA), Vol. 13, 231--240, {\bf 1999}.
% CC
\item[6.]
{\it Logistical Quality of Service in NetSolve}, M. Beck, H. Casanova,
J. Dongarra, T. Moore, J. Plank, F. Berman, R. Wolski, \emph{Computers
and Communications}, Vol. 22, Issue 11, 1034--1044, {\bf 1999}.
% FGCS
\item[5.]
{\it Deploying Fault tolerance and Task Migration with NetSolve},
J. Plank, H. Casanova, M. Beck, J. Dongarra, \emph{The International
Journal on Future Generation Computer Systems} (FGCS), Vol. 15, 745--755,
{\bf 1999}.
% JPDC
\item[4.]
{\it Stochastic Performance Prediction for Iterative Algorithms in
Distributed Environments}, H. Casanova, M. Thomason, J. Dongarra,
\emph{Journal of Parallel and Distributed Computing} (JPDC), Vol. 58(1),
68--91, {\bf 1999}.
\item[3.]
{\it Using agent-based software for scientific computing in the NetSolve
system}, H. Casanova, J. Dongarra, \emph{Parallel Computing}, Vol. 24,
1777--1790, {\bf 1998}.
% JAVA
\item[2.]
{\it Java Access to Numerical Libraries}, H. Casanova, D. Doolin,
J. Dongarra, \emph{Concurrency: Practice and Experience} (CPE), Vol. 9(11),
1279--1291, {\bf 1997}.
%SUPERCOMPUTING
\item[1.]
{\it NetSolve: A Network-Enabled Server for Solving Computational
Science Problems }, H. Casanova, J. Dongarra, {\em The International
Journal of Supercomputer Applications and High Performance Computing}
(IJHPCA), Vol. 11(3), 212--223, Fall {\bf 1997}.
\end{enumerate}
\noindent
{\bf Refereed Conference and Workshop Proceedings}
\begin{enumerate}
% AR = XX%
\item [114.] {\it Simulation of Large-Scale HPC Storage Systems: Challenges and Techniques}, J. Monniot, F. Tessier, H. Casanova, G. Antoniu, in Proc. of the 31st IEEE International Conference on High Performance Computing, Data, and Analytics (HiPC), Dec {\bf 2024}.
% AR = 53%
\item [113.] {\it Automated Calibration of Parallel and Distributed Computing Simulators: A Case Study}, J. McDonald, M. Horzela, F. Suter, H. Casanova, in Proc. of the 25th IEEE International Workshop on Parallel and Distributed Scientific and Engineering Computing (PDSEC), May {\bf 2024}.
% AR = n/a
\item [112.] {\it Modelling Distributed Heterogeneous Computing Infrastructures for HEP Applications}, M. Horzela, H. Casanova, M. Giffels, A. Gottmann, R. Hofsaess, G. Quast, S. Rossi Tisbeni, A. Streit, F. Suter, in Proc. of the 26th International Conference on Computing in High Energy and Nuclear Physics (CHEP), May {\bf 2023}.
% AR = n/a
\item [111.] {\it WfCommons: Data Collection and Runtime Experiments using Multiple Workflow Systems}, H. Casanova, K. Berney, S. Chastel, R. Ferreira da Silva, in Proc. of the 1st IEEE International Workshop on Workflows in Distributed Environments (WiDE), Jun {\bf 2023}
% AR = 43%
\item [110.] {\it WfBench: Automated Generation of Scientific Workflow Benchmarks}, T. Coleman, H. Casanova, K. Maheswari, L. Pottier, S. Wilkinson, J. Wozniak, F. Suter, M. Shankar, R. Ferreira da Silva, in Proc. of the 13th International Workshop on Performance Modeling, Benchmarking and Simulation of High Performance Computer System (PBMS), Nov {\bf 2022}
% AR = 58%
\item [109.] {\it On the Feasibility of Simulation-driven Portfolio Scheduling for Cyberinfrastructure Runtime Systems}, H. Casanova, Y. C. Wong, L. Pottier, R. R. Ferreira da Silva, in Proc. of the 25th Workshop on Job Scheduling Strategies for Parallel Processing (JSSPP), June {\bf 2022}
% AR = ???
\item [108.] {\it Peachy Parallel Assignments (EduPar 2022)},
H. M. B\"ucker, H. Casanova, R. Ferreira da Silva, A. Lasserre, D. Luyen, R. Namyst, J. Schoder, P.-A. Wacrenier, D. P. Bunde, Proc. of the Workshop on Parallel and Distributed Computing Education (EduPar), Jun {\bf 2022}.
% AR = ???
\item [107.] {\it Peachy Parallel Assignments (EduHPC 2021)}, H. Casanova.
R. Ferreira da Silva, A. Gonzalez-Escribano, H. Li, Y. Torres, and D.
Bunde, in proc. of the Workshop on Education for High-Performance Computing
(EduHPC), Nov {\bf 2021}.
% AR = 29%
\item [106.] {\it Modeling the Linux page cache for accurate simulation of data-intensive applications}, H.-D. Do, V. Hayot-Sasson, R. Ferreira da Silva, C. Steele, H. Casanova, T. Glatard, in Proc. of IEEE Cluster, Sep. {\bf 2021}
% AR = 42%
\item [105.] {\it WfChef: Automated Generation of Accurate Scientific Workflow Generators
}, T. Coleman, H. Casanova, R. Ferreira da Silva, in Proc. of the 17th IEEE International eScience Conference (eScience), Sep. {\bf 2021}
% AR = 58%
\item [104.] {\it GLUME: A Strategy for Reducing Workflow Execution Times on Batch-Scheduled Platforms}, E. Hataishi, P.-F. Dutot, R. Ferreira da Silva, H. Casanova, in Proc. of the 24th Workshop on Job Scheduling Strategies for Parallel Processing (JSSPP), May {\bf 2021}
% AR = 30.76%
\item [103.] {\it Evaluating energy-aware scheduling algorithms for
I/O-intensive scientific workflows}, T. Coleman, H. Casanova, T.
Gwartney, R. Ferreira da Silva,
in Proc. of the International Conference on Computational Science
(ICCS), June {\bf 2021}
% AR???
\item [102.] {\it Peachy Parallel Assignments (EduHPC 2020)},
H. Casanova, R. Ferreira Da Silva, A. Gonzalez-Escribano, W. Koch, Y.
Torres, and D.P. Bunde, in Proc. of the Workshop on Education for
High-Performance Computing (EduHPC), Nov. {\bf 2020}.
% AR???
\item [101.] {\it WorkflowHub: Community Framework forEnabling
Scientific Workflow Research and Development},
R. Ferreira Da Silva, Pottier, L., Coleman, T., Deelman, E., H. Casanova,
in Proc. of the 15th Workshop on Workflows in Support of
Large-Scale Science (WORKS), Nov. {\bf 2020}.
% AR=24.2%
\item [100.] {\it Modeling the Performance of Scientific Workflow Executions on HPC Platforms with Burst Buffers},
L. Pottier, R. Ferreira Da Silva, H. Casanova, E. Deelman,
in Proc. of the 22nd IEEE Cluster conference, Kobe, Japan, Sep. {\bf 2020}.
% AR = 53%
\item [99.] {\it Teaching Parallel and Distributed Computing Concepts in
Simulation with WRENCH}, R. Tanaka, R. Ferreira da Silva, H. Casanova, in
Proc. of the Workshop on Education for High-Performance Computing (EduHPC),
Denver, Colorado, Nov. {\bf 2019}.
% AR = ???
\item [98.] {\it Bridging Concepts and Practice in eScience via
Simulation-driven Engineering},
R. Ferreira da Silva, H. Casanova, R. Tanaka, F. Suter,
in Proc. of the Bridging from Concepts to Data and Computation for
eScience Workwhop (BC2DC), Sep. {\bf 2019}.
% AR=26%
\item [97.] {\it Accurately Simulating Energy Consumption of I/O-intensive Scientific Workflows}, R. Ferreira da Silva, A.-C. Orgerie, H. Casanova, R. Tanaka, E. Deelman, F. Suter, in Proc. of the International Conference on Computational Science (ICCS), Faro, Portugal, June {\bf 2019}.
% AR=25%
\item [96.] {\it Sparse 3-D NoCs with Inductive Coupling}, M. Koibuchi, L. Leong, T. Totoki, H. Matsutani, H. Amana, H. Casanova, in Proc. of the Design Automation Conference (DAC), Las Vegas, Texas, June {\bf 2019}.
% AR=8/19=42%
\item [95.] {\it WRENCH: Workflow Management System Simulation Workbench}, H. Casanova, S. Pandey, J. Oeth, R. Tanaka, F. Suter, R. Ferreira da Silva, in Proc. of the Workshop on Workflows in Support of Large-Scale Science (WORKS), Dallas, Texas, Nov. {\bf 2018}.
% AR=8/18=44%
\item [94.] {\it SMPI Courseware: Teaching Distributed-Memory Computing with MPI in Simulation}, H. Casanova, M. Quinson, A. Legrand, F. Suter, in Proc. of the Workshop on Education for High-Performance Computing (EduHPC), {\bf best paper award}, Dallas, Texas, Nov. {\bf 2018}.
% AR=18.6%
\item [93.] {\it Analysis-driven Engineering of Comparison-based Sorting
Algorithms on GPUs},
B. Karsin, V. Weichert, H. Casanova, J. Iacono, N. Sitchinava,
in Proc. of the 32nd ACM International Conference on Supercomputing
(ICS), Beijing, China, June {\bf 2018}.
% AR=24%
\item [92.] {\it Beyond binary search: parallel in-place construction of implicit search trees},
K. Berney, H. Casanova, A. Higuchi, B. Karsin, N. Sitchinava,
in Proc. of the 32nd IEEE International Parallel \& Distributed Processing Symposium (IPDPS), Vancouver, Canada, May {\bf 2018}.
% AR=21%
\item [91.] {\it Checkpointing Workflows for Fail-Stop Errors},
L. Han, L.-C. Canon, H. Casanova, Y. Robert, F. Vivien,
in Proc. of the 19th IEEE Cluster conference, Honolulu, Hawai`i, Sep. {\bf 2017}.
% AR=21%
\item [90.] {\it A Case for Uni-Directional Network Topologies in Large-Scale Clusters},
M. Koibuchi, T. Totoki, H. Matsutani, H. Amano, F. Chaix, I. Fujiwara, H. Casanova,
in Proc. of the 19th IEEE Cluster conference, Honolulu, Hawai`i, Sep. {\bf 2017}.
% AR=22%
\item [89.] {\it High-Bandwidth Low-Latency Approximate Interconnection
Networks}, D. Fujiki, K. Ishii, I. Fujiwara. H. Matsutani, H. Amano, H.
Casanova, M. Koibuchi, in Proc. of the 23rd IEEE Symposium on High
Performance Computer Architecture (HPCA), Austin, Texas, Feb. {\bf 2017}.
% AR=40%
\item [88.] {\it An Efficient Algorithm for the 1D Total Visibility-Index
Problem}, P. Afshani, M. de Berg, H. Casanova, B. Karsin, C. Lambrechts, N.
Sitchinava, C. Tsirogiannis, in Proc. of Algorithm Engineering \&
Experiments (ALENEX), Barcelona, Spain, Jan. {\bf 2017}.
% AR=34%
\item [87.] {\it Towards Ideal Hop Counts in Interconnection Networks with
Arbitrary Size}, M. Koibuchi, I. Fujiwara, F. Chaix, H. Casanova, in Proc.
of the 4th International Symposium on Computing and Networking (CANDAR),
Hiroshima, Japan, Nov. {\bf 2016}.
\item [86.] {\it Computing the expected makespan of task graphs in the presence of silent errors},
H. Casanova, J. Herrmann, Y. Robert,
in Proc. of the 9th International Workshop on Programming Models and Systems Software for High-End Computing, Philadelphia, Pennsylvania, Aug. {\bf 2016}.
% AR = 48 / 120+
\item [85.] {\it Efficient Batched Predecessor Search in Shared Memory on GPUs},
B. Karsin, H. Casanova, N. Sitchinava, in Proc. of
the 22nd IEEE International Conference on High Performance Computing (HiPC),
Bengaluru, India, Dec. {\bf 2016}.
% AR = XXX%
\item [84.] {\it Scheduling computational workflows on failure-prone
platforms}, G. Aupy, A. Benoit, H. Casanova, Y. Robert, in Proc. of
the 17th Workshop on Advances on Parallel and Distributed Processing
Symposium (APDCM), Hyderabad, India, May {\bf 2015}.
% AR = 21.8%
\item [83.] {\it Indexing of Spatiotemporal Trajectories for Efficient Distance Threshold Similarity Searches on the GPU}, M. Gowanlock, H. Casanova,
in Proc. of the 29th IEEE International Parallel \& Distributed Processing Symposium (IPDPS), Hyderabad, India, May {\bf 2015}.
% AR = 22.5%
\item [82.] {\it Augmenting Low-latency HPC Network with Free-space Optical Links}, I. Fujiwara, M. Koibuchi, T. Ozaki, H. Matsutani, H. Casanova,
in Proc. of the 21st IEEE International Symposium on High Performance Computer Architecture (HPCA), Bay Area, California, Feb. {\bf 2015}.
% AR = 23%
\item [81.] {\it Distance Threshold Similarity Searches on Spatiotemporal
Trajectories using GPGPU}, M. Gowanlock, H. Casanova, in Proc. of the 21st
IEEE Conference on High Performance Computing (HiPC), Goa, India,
Dec. {\bf 2014}.
% AR = 30%
\item [80.] {\it In-Memory Distance Threshold Queries on Moving Object
Trajectories}, M. Gowanlock, H. Casanova, in Proc. of the 6th
International Conference on Advances in Databases, Knowledge, and Data
Applications (DBKDA), Chamonix, France, Apr. {\bf 2014}.
% AR = 21.1%
\item [79.] {\it Cost-Optimal Execution of Boolean Query Trees with Shared Streams}, H. Casanova, L. Lim, Y. Robert, F. Vivien, D. Zaidouni, in Proc. of
28th IEEE International Parallel and Distributed Processing Symposium (IPDPS),
Phoeniz, AZ, May {\bf 2014}.
% AR = 21.1%
\item [78.] {\it Skywalk: a Topology for HPC Networks with Low-delay Switches}, I. Fujiwara, M. Koibuchi, H. Matsutani, H. Casanova, in Proc. of
28th IEEE International Parallel and Distributed Processing Symposium (IPDPS),
Phoeniz, AZ, May {\bf 2014}.
\item[77.] {\it Scheduling Tightly-Coupled Applications on Heterogeneous Desktop Grids},
H. Casanova, F. Dufoss\'e, Y. Robert, F. Vivien,
in Proc. of
the 21st International Heterogeneity in Computing Workshop (HCW), Boston, MA, May {\bf 2013}.
% 41 accepted our of 249 submitted (16%)
\item[76.] {\it Layout-conscious Random Topologies for HPC Off-chip Interconnects},
M. Koibuchi, I. Fujiwara, H. Matsutani, H. Casanova,
in Proc. of the 19th IEEE International Symposium on High Performance Computer Architecture (HPCA), Shenzhen, China, Feb. {\bf 2013}.
\item[75.] {\it Mapping Tightly-Coupled Applications on Volatile Resources}, H.
Casanova, F. Dufoss\'e, Y. Robert, F. Vivien, in Proc. of the 21st
Euromicro International Conference on Parallel, Distributed, and Network-Based
Processing (PDP), Belfast, Northern Ireland, Feb. {\bf 2013}.
% 200+ papers submitted
\item[74.] {\it Cabinet Layout Optimization of Supercomputer Topologies for
Shorter Cable Length}, I. Fujiwara, M. Koibuchi, H. Casanova, in Proc. of
the 13th International Conference on Parallel and Distributed Computing,
Applications and Technologies (PDCAT), Beijing, China, Dec. {\bf 2012}.
% 18% acceptance rate
\item[73.] {\it A Case for Random Shortcut Topologies for HPC Interconnects}, M.
Koibuchi, H. Matsutani, H. Amano, D. F. Hsu, H. Casanova,
in Proc. of the ACM IEEE 39th International Symposium on Computer
Architecture (ISCA), Portland, Oregon, Jun. {\bf 2012},
% 21% acceptance rate
\item[72.] {\it Virtual Machine Resource Allocation for Service Hosting on Heterogeneous Distributed Platforms}, M. Stillwell, F. Vivien, H. Casanova,
in Proc. of the 26th IEEE International
Parallel \& Distributed Processing Symposium (IPDPS), Shanghai,
China, May {\bf 2012}.
\item[71.] {\it Checkpointing strategies for parallel jobs}, M.
Bougeret, H. Casanova, M. Rabie, Y. Robert, F. Vivien, in Proc.
of SC'11, Seattle, WA, Nov. {\bf 2011}.
\item[70.] {\it On the Utility of DVFS for Power-Aware Job Placement
in Clusters}, J.-M. Pierson, H. Casanova, in Proc. of Euro-Par,
Bordeaux, France, Aug. {\bf 2011}.
\item[69.] {\it From Simulation to Experiment: A Case Study on
Multiprocessor Task Scheduling}, S. Hunold, H. Casanova, F. Suter, in
Proc. of the 13th Workshop on Advances on Parallel and
Distributed Processing Symposium (APDCM), Anchorage, Alaska,
May {\bf 2011}.
\item[68.] {\it Single Node On-Line Simulation of MPI Applications
with SMPI}, P.-N. Clauss, M. Stillwell, S. Genaud, F. Suter, H.
Casanova, M. Quinson, in Proc. of the 25th IEEE International
Parallel \& Distributed Processing Symposium (IPDPS), Anchorage,
Alaska, May {\bf 2011}.
\item[67.] {\it Scheduling Parallel Iterative Applications on Volatile
Resources}, H. Casanova, F. Duffos\'e, Y. Robert, F. Vivien, in
Proc. of the 25th IEEE International Parallel \& Distributed
Processing Symposium (IPDPS), Anchorage, Alaska, May {\bf 2011}.
\item[66.] {\it Minimizing Stretch and Makespan of Multiple Parallel Task Graphs via Malleable Allocations}, H. Casanova, F. Desprez, F. Suter,
in Proc. of the International
Conference on Parallel Processing (ICPP), San Diego, California, Sep.
{\bf 2010}.
\item[65.] {\it Checkpointing vs. Migration for Post-Petascale Supercomputers
}, F. Cappello, H. Casanova, Y. Robert,
in Proc. of the International
Conference on Parallel Processing (ICPP), San Diego, California, Sep.
{\bf 2010}.
% 35% acceptance rate
\item[64.] {\it Non-clairvoyant Scheduling of Multiple Bag-of-tasks
Applications}, H. Casanova, M. Gallet, F. Vivien, in Proc. of Euro-Par,
Ischia, Italy, Aug. {\bf 2010}.
\item[63.] {\it Fast and Scalable Simulation of Volunteer Computing
Systems Using SimGrid}, B. Donassolo, H. Casanova, A. Legrand, P.
Velho, in Proc. of the Workshop on Large-Scale System and
Application Performance (LSAP), Chicago, Illinois, Jun. {\bf 2010}.
\item[62.] {\it Dynamic Fractional Resource Scheduling for HPC
Workloads}, M. Stillwell, F. Vivien, H. Casanova, in Proc. of the
24th IEEE International Parallel \& Distributed Processing Symposium (IPDPS),
Atlanta, Georgia, Apr. {\bf 2010}.
\item[61.] {\it Resource Allocation for Multiple Concurrent In-network Stream-processing Applications}, A. Benoit, H. Casanova, V. Rehn-Sonigo, Y. Robert,
in Proc. of the 7th International Workshop on Algorithms,
Models and Tools for Parallel Computing on Heterogeneous Platforms
(HeteroPar), Deltf, The Netherlands, {\bf best paper award},
Aug. {\bf 2009}.
\item[60.] {\it Heuristics for Continuity Editing of Cinematic Computer
Graphics Scenes}, K. Kardan, H. Casanova, in Proc. of the Games
Papers (Sandbox) track of the ACM SIGGRAPH conference, New Orleans,
Lousiana, Aug. {\bf 2009}.
\item[59.] {\it Characterizing Fault Tolerance in Genetic Programming},
D. Lombraa F. Fernandez de Vega, H. Casanova, in Proc. of the
Workshop on Bio-Inspired Algorithms for Distributed Systems (BADS'09),
Barcelona, Spain, Jun. {\bf 2009}.
\item[58.] {\it Resource Allocation using Virtual Clusters}, M. Stillwell,
D. Schanzenbach, F. Vivien, H. Casanova, in Proc. of the 9th IEEE
Symposium on Cluster Computing and the Grid (CCGrid'09), Shanghai, China,
May {\bf 2009}.
\item[57.] {\it Resource Allocation Strategies for Constructive In-Network
Stream Processing}, A. Benoit, H. Casanova, V. Rhen-Sonigo, Y. Robert, in
Proc. of the 10th Workshop on Advances on Parallel and Distributed
Processing Symposium (APDCM), Rome, Italy, May {\bf 2009}.
\item[56.] {\it Virtual Cinematography of Group Scenes using Hierarchical Lines
of Actions}, K. Kardan, H. Casanova, in Proc. of the ACM SIGGRAPH Sandbox
Symposium, Los Angeles, California, Aug. {\bf 2008}.
\item[55.] {\it Scheduling Mixed-Parallel Applications with Advance
Reservations}, K. Aida, H. Casanova, in Proc. of the 17th IEEE
International Symposium on High Performance Distributed Computing
(HPDC-17), Boston, Massachusetts, Jun. {\bf 2008}.
\item[54.] {\it SimGrid: a Generic Framework for Large-Scale Distributed Experimentations}, H. Casanova, A. Legrand, M. Quinson, in Proc. of Tenth International Conference on Computer Modeling and Simulation (UKSim), Cambridge, U.K., Apr. {\bf 2008}.
\item[53.] {\it Probabilistic Allocation of Synchronous Tasks to Desktop Grid
Resources}, J. Wingstrom, H. Casanova, in Proc. of Workshop on Desktop
Grids and Volunteer Computing Systems (PCGrid), Miami, Florida, Apr. {\bf
2008}.
\item[52.] {\it Speed and Accuracy of Network Simulation in the SimGrid
Framework}, K. Fujiwara, H. Casanova, in Proc. of First International
Workshop on Network Simulation Tools (NSTools), Nantes, France, Oct. {\bf
2007}.
\item[51.] {\it Automatic Resource Specification Generation for Resource
Selection}, R. Huang, A. Chien, H. Casanova, in Proc. of SC'07, Reno,
Nevada, Nov. {\bf 2007}.
\item[50.] {\it A Comparison of Scheduling Approaches for Mixed-Parallel Applications on Heterogeneous Platforms}, T. N'Takp\'e, F. Suter, H. Casanova, in Proc. of the 6th International Symposium on Parallel and Distributed Computing (ISPDC), Hagenberg, Austria,
Jul. {\bf 2007}.
\item[49.] {\it On Resource Volatility in Enterprise Desktop Grids}, D. Kondo, G. Fedak, F. Cappello, H. Casanova, in Proc. of e-Science 2006, Amsterdam,
Netherlands, Dec. {\bf 2006}.
\item[48.] {\it Improving Grid Resource Allocation via Integrated Selection and
Binding}, Y.-S. Kee, K. Yocum, A. Chien, H. Casanova, in Proc. of SC'06,
Tampa, Florida, Nov. {\bf 2006}.
\item[47.] {\it Measuring the Performance and Reliability of Production
Computational Grids}, O. Khalili, J. He, C. Olschanowsky, A. Snavely, H.
Casanova, in Proc. of the 7th IEEE/ACM International Conference on Grid
Computing (Grid'06), Barcelona, Spain, Sep. {\bf 2006}.
\item[46.] {\it On the Harmfulness of Redundant Batch Requests}, H.
Casanova, in Proc. of the 15th IEEE International Symposium on High
Performance Distributed Computing (HPDC-15), Paris, France, Jun. {\bf
2006}.
\item[45.] {\it An Evaluation of Job Scheduling Strategies for Divisible
Loads on Grid Platforms}, Y. Cardinale, H. Casanova, in Proc. of the
High Performance Computing \& Simulation Conference (HPCS'06), Bonn,
Germany, May {\bf 2006}.
\item[44.] {\it Scalable Grid Application Scheduling via Decoupled Resource
Selection and Scheduling}, Y. Zhang, A. Mandal, C. Koelbel, K. Kennedy, H.
Casanova, A. Chien, in Proc. of the 6th IEEE Symposium on Cluster
Computing and the Grid (CCGrid'06), Singapore, May {\bf 2006}.
\item[43.] {\it Using Virtual Grids to Simplify Application Scheduling},
R. Huang, H. Casanova, A. Chien, in Proc. of the
International Parallel and Distributed Processing Symposium (IPDPS'06),
Rhodes, Greece, Apr. {\bf 2006}.
\item[42.] {\it Efficient Resource Description and High Quality Selection
for Virtual Grids}, Y.-S. Kee, D. Logothetis, R. Huang, H. Casanova, A.
Chien, in Proc. of the 5th IEEE Symposium on Cluster
Computing and the Grid (CCGrid'05), Cardiff, U.K., May {\bf 2005}.
\item [41.]
{\it Models and Modeling Infrastructures for Global Computational Platforms},
R. Wolski, D. Nurmi, J. Brevik, H. Casanova, A. Chien,
in Processing of the IPDPS Workshop on Next Generation Software,
Denver, Colorado, Apr. {\bf 2005}.
\item [40.]
{\it Practical Divisible Load Scheduling on Grid Platforms with
APST-DV}, K. van der Raadt, Y. Yang, H. Casanova, in Proc. of
the International Parallel and Distributed Processing Symposium
(IPDPS'05), Denver, Colorado, Apr. {\bf 2005}.
\item [39.] {\it A Realistic Network/Application Model for Scheduling
Divisible Loads on Large-Scale Platforms}, L. Marchal, Y. Yang, H.
Casanova, Y. Robert, in Proc. of
the International Parallel and Distributed Processing Symposium
(IPDPS'05), Denver, Colorado, Apr. {\bf 2005}.
\item [38.]
{\it On the Feasibility of Running Entity-Level Simulations on
Grid Platforms}, A. Su, F. Berman, H. Casanova, in Proc. of the
Grid'04 workshop, Pittsburgh, Pennsylvania, Nov. {\bf 2004}.
\item [37.] {\it Resource Management for Short-Lived Applications on
Enterprise Desktop Grids}, D. Kondo, A. Chien, H. Casanova, in Proc.
of SC'04, Pittsburgh, Pennsylvania, Nov. {\bf 2004}.
\item [36.] {\it Realistic Modeling and Synthesis of Resources for
Computational Grids}, Y.-S. Kee, H. Casanova, A. Chien, in Proc. of
SC'04, Pittsburgh, Pennsylvania, Nov. {\bf 2004}.
\item [35.]
{\it From Heterogeneous Task Scheduling to Heterogeneous Mixed Data and
Task Parallel Scheduling}, F. Suter, F. Desprez, H. Casanova, in
Proc. of Euro-Par, 230--237, (LCNS volume 3149), Pisa, Italy, Aug. {\bf 2004}.
\item [34.] {\it GridSpeed: A Web-based Grid Portal Generation Server}, T.
Suzumura, H. Nakada, S. Matsuoka, H. Casanova, in Proc. of the 7th
International Conference on High Performance computing and Grid in Asia
Pacific Region (HPC Asia), Jul. {\bf 2004}.
\item [33.]
{\it Grid workflow software for High-Throughput Proteome Annotation
Pipeline}, A. Birnbaum, J. Hayes, W. Li, M. Miller, P. Bourne,
H. Casanova, in Proc. of the First International Workshop
on Life Science Grid (LSGRID2004), Jun. {\bf 2004}.
\item [32.]
{\it The MicroGrid: Using Emulation to Predict Application Performance
in Diverse Grid Network Environments}, H. Xia, H. Dail, H. Casanova,
A. Chien, in Proc. of the Workshop on Challenges of Large Applications
in Distributed Environments (CLADE'04), Honolulu, Jun. {\bf 2004}.
% IPDPS STEDI
\item [31.]
{\it Characterizing and Evaluating Desktop Grids: An Empirical Study},
D. Kondo, M. Taufer, C. L. Brooks, H. Casanova, A. Chien, in Proc.
of the International Parallel and Distributed Processing Symposium
(IPDPS'04), Santa Fe, Apr. {\bf 2004}.
% GRADS BOGUS PAPER
\item [30.]
{\it Recent Experiments with GrADS Software}, K. Cooper, A. Dasgupta,
K. Kennedy, C. Koelbel, A. Mandal, G. Marin, M. Mazina, J. Mellor-Crummey,
F. Berman, H. Casanova, A. Chien, H. Dail, X. Liu, A. Olugbile,
O. Sievert, H. Xia, L. Johnson, B. Liu, M. Patel, D. Reed, W. Deng,
C. Mendes, Z. Shi, A. YarKhan, J. Dongarra, in Proc. of the NSF
Next Generation Systems Program Meeting, Santa Fe, Apr. {\bf 2004}.
\item [29.]
{\it On the Interference of Communication on Computation}, B. Kreaseck,
L. Carter, H. Casanova, J. Ferrante, in Proc. of the workshop
on Performance Modeling, Evaluation, and Optimization of Parallel and
Distributed Systems, Santa Fe, Apr. {\bf 2004}.
\item [28.]
{\it Benchmark Probes for Grid Assessment}, G. Chun, H. Dail, H. Casanova,
A. Snavely, in Proc. of the High-Performance Grid Computing
Workshop, Santa Fe, Apr. {\bf 2004}.
% HPDC'03
\item [27.]
{\it Policies for Swapping MPI Processes}, O. Sievert, H. Casanova,
in Proc. of the 12th IEEE Symposium on High Performance and
Distributed Computing (HPDC-12), Seattle, Jun. {\bf 2003}.
%HPDC'03
\item [26.]
{\it RUMR: Robust Scheduling for Divisible Workloads}, Y. Yang,
H. Casanova, in Proc. of the 12th IEEE Symposium on High Performance
and Distributed Computing (HPDC-12), Seattle, Jun. {\bf 2003}.
% GP2PCLSD workshop
\item [25.]
{\it Clustering Hosts in P2P and Global Computing Platforms}, A. Agrawal,
H. Casanova, in Proc. of the Workshop on Global and Peer-to-Peer
Computing on Large Scale Distributed Systems, Tokyo, Japan, Apr.
{\bf 2003}.
%PDSECA Workshop
\item [24.]
{\it Performance Modeling for Entity-level Simulations}, A. Su, F. Berman,
H. Casanova, in Proc. of the Parallel and Distributed Scientific
and Engineering Computing with Applications Workshop, Nice, France,
Apr. {\bf 2003}.
% CCGrid'03 Simgrid
\item [23.]
{\it Scheduling Distributed Applications: The \textsc{SimGrid} Simulation
Framework}, A. Legrand, L. Marchal, H. Casanova, in Proc. of the
Third IEEE International Symposium on Cluster Computing and the Grid
(CCGrid'03), Tokyo, Japan, May {\bf 2003}.
% BARBARA IPDPS
\item[22.]
{\it Autonomous Protocols for Bandwidth-Centric Scheduling of
Independent-task Applications}, B. Kreaseck, L. Carter, H. Casanova,
J. Ferrante, in Proc. of the International Parallel and Distributed
Processing Symposium (IPDPS'03), Nice, France, Apr. {\bf 2003}.
% YANG IPDPS
\item [21.]
\it{UMR: A Multi-Round Algorithm for Scheduling Divisible Workloads},
Y. Yang, H. Casanova, in Proc. of the International Parallel
and Distributed Processing Symposium (IPDPS'03), Nice, France, Apr.
{\bf 2003}.
% MARCIO Grid'02
\item [20.]
{\it Resource Allocation for Steerable Parallel Parameter Searches},
M. Faerman, A. Birnbaum, H. Casanova, F. Berman, in Proc. of the
Grid Computing Workshop, Baltimore, 157--169, Nov. {\bf 2002}.
% GRIDRPC Grid'02
\item [19.]
{\it An Overview of GridRPC: A Remote Procedure Call API for Grid
Computing}, H. Nakada, S. Matsuoka, K. Seymour, J. Dongarra, C. Lee,
H. Casanova, in Proc. of the Grid Computing Workshop, 274--279,
Baltimore, Nov. {\bf 2002}.
% SC'02
\item [18.]
{\it A Decoupled Scheduling Approach for the GrADS Environment}, H. Dail,
H. Casanova, F. Berman, in Proc. of Super Computing 2002 (SC'02),
Baltimore, Nov. {\bf 2002}.
% CCGrid'02
\item[17.]
{\it Using TOP-C and AMPIC to Port Large Parallel Applications to the
Computational Grid}, G. Cooperman, H. Casanova, J. Hayes, T. Witzel, in
Proc. of the 2nd IEEE International Symposium on Cluster Computing
and the Grid (CCGrid), Berlin, Germany, May {\bf 2002}.
% IPDPS'02
\item[16.]
{\it Models and Scheduling Mechanisms for Global Computing Applications},
D. Kondo, H. Casanova, E. Wing, F. Berman, in Proc. of the
International Parallel and Distributed Processing Symposium (IPDPS),
Fort Lauderdale, Apr. {\bf 2002}.
% HPC'02
\item[15.]
{\it Utilizing DAG Scheduling Algorithms for Entity-Level Simulations}
A. Su, H. Casanova, F. Berman, in Proc. of the 10th Symposium on
High Performance Computing 2002 (HPC'02), San Diego, Apr. {\bf 2002}.
% SC'01
\item[14.]
{\it Applying Scheduling and Tuning to On-line Parallel Tomography},
S. Smallen, H. Casanova, F. Berman, in Proc. of Super Computing 2001
(SC'01), Denver, {\bf best student paper award}, Nov. {\bf 2001}.
% HPDC-01
\item[13.]
{\it A Study of Deadline Scheduling for Client-Server Systems on the
Computational Grid}, A. Takefusa, H. Casanova, S. Matsuoka, F. Berman, in
Proc. of the 10th IEEE Symposium on High Performance and Distributed
Computing (HPDC'01), San Francisco, 406--415, Aug. {\bf 2001}.
% ACTIVE MIDDLEWARE
\item[12.]
{\it Logistical Computing and Internetworking: Middleware for the Use
of Storage in Communication}, M. Beck, D. Arnold, A. Bassi, F. Berman,
H. Casanova, J. Dongarra, T. Moore, G. Obertelli, J. Plank, M. Swany,
S. Vadhiyar, R. Wolski, in Proc. of the 3rd Annual International
Workshop on Active Middleware Services, San Francisco, Aug. {\bf 2001}.
% CCGRID'01
\item[11.]
{\it Simgrid: A Toolkit for the Simulation of Application Scheduling},
H. Casanova, in Proc. of the 1st IEEE International Symposium
on Cluster Computing and the Grid (CCGrid'01), Brisbane, Australia,
430--437, May {\bf 2001}.
% HPC'01
\item[10.]
{\it Network-Enabled Server Systems: Deploying Scientific Simulations on
the Grid}, H. Casanova, S. Matsuoka, J. Dongarra, in Proc. of High
Performance Computing 2001 (HPC'01), Seattle, 83--91, Apr. {\bf 2001}.
% SC'00
\item[9.]
{\it The AppLeS Parameter Sweep Template: User-Level Middleware for the
Grid}, H. Casanova, G. Obertelli, F. Berman, R. Wolski, in Proc.
of Super Computing 2000 (SC'00), best paper finalist, Nov. {\bf 2000}.
% HCW'00
\item [8.]
{\it Heuristics for Scheduling Parameter Sweep Applications in Grid
Environments}, H. Casanova, A. Legrand, D. Zagorodnov, F. Berman,
Proc. of the 9th Heterogeneous Computing Workshop (HCW'00), Cancun,
Mexico, 349--363, May {\bf 2000}.
%ORLANDO
\item[7.]
{\it NetSolve: A Network Enabled Server, Examples and Users}, H. Casanova,
J. Dongarra, Proc. of the Heterogeneous Computing Workshop (HCW'98),
Orlando, Florida, 19--28, Mar. {\bf 1998}.
% JAVA
\item[6.]
{\it The Use of Java in the NetSolve Project}, H. Casanova, J. Dongarra,
791--796. 15th IMACS'97 (International Mathematics and Computer Science)
World Congress, Berlin, Vol. 4, \emph{Artificial Intelligence and Computer
Science}, Edited by Achin Sydow, Wissenschoft and Technik Verlag, Berlin,
791--796, Aug. {\bf 1997}.
% AUSTRALIA
\item[5.]
{\it Network Enabled Solvers for Scientific Computing Using the NetSolve
System}, H. Casanova, J. Dongarra, Proc. of the 3rd International
Conference on Algorithms and Architectures for Parallel Processing,
Melbourne, Australia, \emph{World Scientific}, Edited by A. Gossinski,
M. Hobbs, W. Zhou, Feb. {\bf 1997}.
% NetSove 96
\item[4.]
{\it NetSolve: A Network-Enabled Server for Solving Computational
Science Problems }, H. Casanova, J. Dongarra, in Proc.
of Supercomputing (SC'96), Pittsburgh, Pennsylvania, Nov. {\bf 1996}.
% TOOL
\item[3.]
{\it Providing Uniform Dynamic Access to Numerical Software}, H. Casanova,
J. Dongarra, Vol. 105 of the IMA Volumes in Mathematics and its
Applications, Algorithms for Parallel Processing, Edited by M. Heath,
A. Ranade, R. Schrieber, 345--355, Springer-Verlag, {\bf 1996}.
% NHSE
\item[2.]
{\it Providing Access to High Performance Computing Technologies},
H. Casanova, S. Browne, J. Dongarra in Proc. of the 3rd
International Workshop PARA'96. \emph{Lecture Notes in Computer Science},
edited by J. Wa\'sniewski, J. Dongarra, K. Madsen, D. Olesen, Springer
Verlag \#1184, p. 123--133, Aug. {\bf 1996}.
% PVM
\item[1.]
{\it The Performance of PVM on MPP Systems}, H. Casanova, J. Dongarra,
W. Jiang, Proc. of the PVM User's Meeting, Santa Fe, Feb.
{\bf 1996}.
\end{enumerate}
\noindent{\bf Invited Articles}
\begin{enumerate}
% NGS workshop (STEDI)
\item [9.]
{\it Models and Modeling Infrastructures for Global Computational
Platforms}, R. Wolski, D. Nurmi, J. Brevik, H. Casanova, A. Chien, in
Proc. of the Workshop on Next Generation Software, Denver, Colorado,
Apr. {\bf 2005}.
% Rosenberg panel
\item [8.]
{\it Modeling Large-Scale Platforms for the Analysis and
the Simulation of Scheduling Strategies}, H. Casanova, in
Proc. of the 6th Workshop on Advances in Parallel and
Distributed Computational Models, Apr. {\bf 2004}.
% GridBenchmarks
\item [7.]
{\it Benchmarks for Grid Computing: A Review of Ongoing Efforts and Future
Directions}, A. Snavely, G. Chun, H. Casanova, R. Van der Wijngaart,
M. Frumkin, SIGMETRICS Performance Evaluation Review, 30(4), 27--32, Mar.
{\bf 2003}.
% NGS Workshop
\item [6.]
{\it Optimizing Performance and Reliability in Distributed Computing
Systems Through Wide Spectrum Storage}, J. Plank, M. Beck, J. Dongarra,
R. Wolski, H. Casanova, in Proc. of the Workshop on Next Generation
Software, Nice, France, Apr. {\bf 2003}.
% Loria Grid'02
\item[5.]
{\it Algorithms and Software to Schedule and Deploy Independent Tasks
in Grid Environments}, H. Casanova, J. Hayes, Y. Yang, in Proc. of
the 2002 workshop on Distributed Computing, Metacomputing, and Resource
Globalization, Aussois, France, Dec. {\bf 2002}.
% SIGACT
\item [4.] {\it Distributed Computing Research Issues for Grid Computing},
H. Casanova, Quarterly Newsletter for the ACM Special Interest Group on
Algorithms and Computation Theory (SIGACT News), 33(2), Sep. {\bf 2002}.
% BLACKBERRY
\item[3.]
{\it Distributing MCell Simulations on the Grid}, H. Casanova, T. Bartol,
J. Stiles, F. Berman, in Proc. of the Workshop on Clusters and
Computational Grids for Scientific Computing (WCCGSC'00), Lyon France,
Sep. {\bf 2000}.
% IEEE stuff
\item[2.]
{\it Applying NetSolve's Network Enabled Solvers}, H. Casanova,
J. Dongarra, {\em IEEE Computational Science \& Engineering}, Vol. 5(3),
57--67, Jul.-Sep. {\bf 1998}.
% SIAM NEWS
\item[1.]
{\it Network-Enabled Servers and the NetSolve Project}, H. Casanova,
J. Dongarra, K. Moore, in \emph{SIAM News}, Vol. 31(1), Jan.
{\bf 1998}.
\end{enumerate}
\noindent{\bf Books}
\begin{itemize}
\item [1.] {\it Parallel Algorithms}, H. Casanova, A. Legrand, Y. Robert, Chapman \& Hall, {\bf 2008}.
\end{itemize}
\noindent{\bf Book Chapters}
\begin{itemize}
% Power stuff
\item [6.]
{\it Energy-Efficient Job Placement on Clusters, Grids, and Clouds},
D. Borgetto, H. Casanova, G. Da Costa, J.-M. Pierson,
in {\it Energy-Efficient Distributed Computing Systems},
A. Zomaya and Y. C. Lee editors, Wiley Publisher, Inc., {\bf 2012}.
% Kluwer Book Chapter (Holly)
\item [6.]
{\it Scheduling in the Grid Application Development Software Project},
H. Dail, O. Sievert, F. Berman, H. Casanova, A. Yarkhan, S. Vadhiyar,
J. Dongarra, C. Liu, L. Yang, D. Angulo, I. Foster, chapter in {\it Grid
Resource Management, State of the Art and Future Trends}, J. Nabrzyski,
J. Schopf, J. Weglarz editors, Kluwer Academic Publishers, {\bf 2003}.
% Grid Book chapter, 2nd Ed.