-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
5134 lines (4449 loc) · 265 KB
/
news.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--
_ _
| | | |
Designed and Coded By | | __ _| |__
/ _ \ \ /\ / /\ \ /\ / /\ \ /\ / / |/ _` | '_ \
| (_) \ V V / \ V V / \ V V /| | (_| | |_) |
\___/ \_/\_/ \_/\_/ \_/\_/ |_|\__,_|_.__/
http://themeforest.net/user/owwwlab/
-->
<html lang="en" dir="ltr" itemscope itemtype="http://schema.org/WebPage">
<!-- #####Begin head-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- globalise scripting and styling content language-->
<meta name="Content-Type-Script" content="text/javascript">
<meta name="Content-Type-Style" content="text/css">
<!-- author of this doc-->
<meta name="author" content="owwwlab.com">
<!-- ################################-->
<!-- #### add SEO metadata here-->
<!-- ################################-->
<!-- #####Begin styles-->
<!-- stylesheets -->
<link href="assets/css/vendors/vendors.css" rel="stylesheet" type="text/css">
<!-- Load extra page specific css-->
<!-- Overwrite vendors-->
<link href="assets/css/vendors/vendors-overwrites.css" rel="stylesheet" type="text/css">
<link href="assets/css/styles.css" rel="stylesheet" type="text/css">
<link href="assets/css/demo5.css" rel="stylesheet" type="text/css">
<!-- #####End styles-->
<!-- #####Begin JS-->
<!-- add your scripts to the end of the page for sake of page load speed-->
<!-- scripts that need to be at head section-->
<script src="assets/js/vendors/jquery.min.js"></script>
<!-- #####End JS-->
<!-- #####Begin load google fonts-->
<link href="https://fonts.googleapis.com/css?family=Play:400,700&subset=latin,greek,cyrillic" rel="stylesheet"
type="text/css">
<link href="https://fonts.googleapis.com/css?family=Sintony:400,700&subset=latin,greek,cyrillic" rel="stylesheet"
type="text/css">
<link
href="https://fonts.googleapis.com/css?family=Merriweather:300,300italic,400,400italic,700,700italic&subset=latin,greek,cyrillic"
rel="stylesheet" type="text/css">
<link
href="https://fonts.googleapis.com/css?family=Exo+2:400,200,300,400italic,500,700,900&subset=latin,greek,cyrillic"
rel="stylesheet" type="text/css">
<!-- #####End load google fonts-->
<title>News - GCLab</title>
</head>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<!-- #####End head-->
<body class="fullwidth bg-pattern-4 sticky-header"> <!--bg-gray-->
<div id="wrapper" class="boxed-layout">
<!-- #####Begin Header-->
<header id="header" class="bg-pattern-4"> <!--light sticky-->
<div class="head-main">
<div class="container">
<!-- logo-->
<!-- #####Begin logo wrapper-->
<div class="logo-wrapper">
<!-- standard Logo--><a href="index.html"><img src="assets/img/logo/logo-gclab.png" alt="GCLab"
class="logo-light ol-retina"><img src="assets/img/logo/logo-gclab.png" alt="GCLab"
class="logo-dark ol-retina"></a>
</div>
<!-- #####End logo wrapper-->
<!-- primary navigation-->
<ul id="primary-menu">
<li><a href="index.html" title="Home"><span>Home</span></a>
</li>
<li><a href="about.html" title="Dr. Michela Taufer"><span>Dr. Michela Taufer</span></a>
</li>
<li><a href="people.html" title="People"><span>People</span></a>
</li>
<li><a href="research.html" title="Research"><span>Research</span></a>
</li>
<li><a href="publications.html" title="Publications"><span>Publications</span></a>
</li>
<li><a href="https://github.com/TauferLab/" target="_blank" title="Software"><span>Software</span></a>
</li>
<li class="current-menu-item"><a href="news.html" title="News"><span>News</span></a>
</li>
<li><a href="gallery.html" title="Gallery"><span>Gallery</span></a>
</li>
<li><a href="contact.html" title="Contact"><span>Contact</span></a>
</li>
<li><a href="positions.html" title="Positions"><span>Positions</span></a>
</li>
</ul>
<div class="header-icons"></div>
<!-- #####Begin trigger for search-->
<!--<div class="search ol-search-trigger simple"><a href="#"><i class="oli oli-search"></i></a></div>-->
<a href="https://twitter.com/TauferLab" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.youtube.com/channel/UC-EYkuXfZ5J5cjMKnx0F73g/featured" target="_blank"><i
class="fa fa-youtube"></i></a>
<a href="https://www.linkedin.com/company/global-computing-laboratory/" target="_blank"><i
class="fa fa-linkedin"></i></a>
<!-- #####End trigger for search-->
<!-- #####Begin mobile menu trigger-->
<div class="ol-mobile-trigger hamburger hamburger--elastic">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
<!-- #####End mobile menu trigger-->
<div class="search-area fullscreen">
<div data-img-src="assets/img/bg/14.jpg" class="ol-search-bg set-bg ov-dark-alpha-50"></div>
<div class="inner-wrapper"><a href="#" class="close-btn"><i class="ol-css-close"></i><span>ESC</span></a>
<div class="search-field">
<input type="text" placeholder="Type and hit enter">
</div>
<div class="search-logo"><img src="assets/img/logo/logo-gclab.png"></div>
</div>
</div>
</div>
</div>
</header>
<!-- #####End Header-->
<!-- #####Begin contents-->
<section id="contents">
<!-- #####Begin page head-->
<!--"page-head h-250 center-it parallax-layer dark ov-dark-alpha-80"-->
<div class="page-head h-250 center-it parallax-layer dark ov-grad1-alpha-30" data-img-src="assets/img/bg/06.jpg"
data-parallax-mode="mode-title">
<div class="container">
<div class="tb-vcenter-wrapper">
<div class="title-wrapper vcenter parallax-layer" data-parallax-mode="mode-header-content">
<!--<h4 class="head">GCLab</h4>-->
<h4>
<font face="Courier New" color="white">GCLab</font>
</h4>
<h1 class="title">News</h1>
</div>
<div class="breadcrumb-wrapper vcenter parallax-layer" data-parallax-mode="mode-header-content">
<ul class="breadcrumb">
<li><a href="#"><i class="oli oli-home"></i></a></li>
<li><a href="#">publication</a></li>
<li><a href="#">publication type</a></li>
<li>learning environment</li>
</ul>
</div>
</div>
</div>
</div>
<!-- #####End page head
-->
<section class="page-contents">
<!-- #####Begin main area-->
<section id="main-area">
<section class="section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="news-posts date-aside-list pull-up-150">
<br>
<br>
<br>
<br>
<br>
<br>
<!-- NEWSLETTERS -->
<div class="container" style="max-width:fit-content; margin: 0 auto; text-align: center;">
<div class="heading-with-sub text-center">
<h1>Newsletters</h1>
</div>
<div data-margin="15" data-nav="true" data-loop="true"
class="items owwwlab-theme nav-top-center">
<a href="./assets/pdf/gclab-newsletter2023-2024.pdf" target="_blank" class="newsletter-item book-el skin-blue shadow round-box" style="display: inline-block; margin-right:20px;">
<img src="assets/img/news/newsletter2024.png" class="sc-images" height="280">
<h5>Newsletter 2023-2024</h5>
</a>
<a href="./assets/pdf/gclab-newsletter2022-2023.pdf" target="_blank" class="newsletter-item book-el skin-blue shadow round-box" style="display: inline-block;">
<img src="assets/img/news/newsletter2023.png" class="sc-images" height="280">
<h5>Newsletter 2022-2023</h5>
</a>
<a href="./assets/pdf/gclab-newsletter2021-2022.pdf" target="_blank" class="newsletter-item book-el skin-blue shadow round-box" style="display: inline-block; margin-left:20px;">
<img src="assets/img/news/newsletter2022.png" class="sc-images" height="280">
<h5>Newsletter 2021-2022</h5>
</a>
</div>
</div>
<!-- <div style="text-align: center;">
<h2>Newsletters</h2>
<div style="display: flex; align-items: center; justify-content: center; margin-bottom: 10px;">
<div style="display: flex; align-items: center;">
<img src="assets/img/icons/newsletter.svg" width="30" height="30" style="margin-right: 10px;">
<font face="Courier New" size="6" color="white">
<a href="./assets/pdf/gclab-newsletter2023-2024.pdf">gclab-newsletter2023-2024</a>
</font>
</div>
</div>
<div style="display: flex; align-items: center; justify-content: center; margin-bottom: 10px;">
<div style="display: flex; align-items: center;">
<img src="assets/img/icons/newsletter.svg" width="30" height="30" style="margin-right: 10px;">
<font face="Courier New" size="6" color="white">
<a href="./assets/pdf/gclab-newsletter2022-2023.pdf">gclab-newsletter2022-2023</a>
</font>
</div>
</div>
<div style="display: flex; align-items: center; justify-content: center;">
<div style="display: flex; align-items: center;">
<img src="assets/img/icons/newsletter.svg" width="30" height="30" style="margin-right: 10px;">
<font face="Courier New" size="6" color="white">
<a href="./assets/pdf/gclab-newsletter2021-2022.pdf">gclab-newsletter2021-2022</a>
</font>
</div>
</div>
</div> -->
<!-- END NEWSLETTERS -->
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/PowerAIWorkshop.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">2</div>
<div class="month">April</div>
<div class="year">2019</div>
</div>
<div class="aside">
<div id="new21">
<h3 class="title">GCLab and EECS hosted IBM PowerAI Workshop </a></h3>
</div>
<div class="post-excerpt">We hosted a 2-day workshop at UTK on PowerAI. A team of IBMers led
by Jamie Syptak has given enlightening talks and training sessions to more than 70 attendees
over the two days. Jack Wells and Toni Skjellum presented research successes at ORNL and UT
Chattanooga respectively. The program can be found <a
href="assets/pdf/IBMPowerAIWorkshopFlyer.pdf" target="_blank"> HERE. </a></div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/sc19_DT.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">20</div>
<div class="month">February</div>
<div class="year">2019</div>
</div>
<div class="aside">
<div id="new20">
<h3 class="title">Dr. Taufer Selected as a 2019 HPCWire Person to Watch</a></h3>
</div>
<div class="post-excerpt">EECS Professor Michela Taufer, Jack Dongarra Professor in High
Performance Computing, has been selected as a 2019 HPCwire Person to Watch. HPCwire names
its annual list of People to Watch to foster a dialogue about the industry and give the
readers a personal look at the hard work, dedication, and contributions from some of the
best and brightest minds in HPC. For more information click <a
href="https://www.hpcwire.com/people-to-watch-2019/11/" target="_blank"> HERE. </a></div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-contents">
<div class="published_date">
<div class="day">28</div>
<div class="month">January</div>
<div class="year">2019</div>
</div>
<div class="aside">
<div id="new19">
<h3 class="title">Dr. Taufer Receives 2019 IBM Faculty Award</a></h3>
</div>
<div class="post-excerpt">EECS Professor Michela Taufer, Jack Dongarra Professor in High
Performance Computing, has been selected to receive a 2019 IBM Faculty Award. This award is
highly competitive and recognizes her leadership in High Performance Computing and its
importance to the computing industry. For more information click <a
href="http://www.eecs.utk.edu/eecs-professors-project-selected-to-receive-2019-ibm-faculty-award/"
target="_blank"> HERE. </a></div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-contents">
<div class="published_date">
<div class="day">11</div>
<div class="month">December</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new18">
<h3 class="title">Paper presented at ICPADS 2018</a></h3>
</div>
<div class="post-excerpt">Dr. Taufer presented our work on the power of combiner optimizations
in Mimir - our MapReduce over MPI software at <a href="https://icpads.sg/"
target="_blank">IPCADS</a> in Singapore. Join the Mimir users by downloading the very last
version of the software <a href="https://github.com/TauferLab/Mimir/releases"
target="_blank"> HERE. </a> </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-contents">
<div class="post-header"><a class="post-thumb"><img a border="0" height=300
src="assets/img/gallery/BIGDATA/Collage.png" /></a></div>
<div class="published_date">
<div class="day">4</div>
<div class="month">December</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new18">
<h3 class="title">End of Semester Poster Session for Data Analytics CS594 /C690</a></h3>
</div>
<div class="post-excerpt">The End of Semester Poster Session for Data Analytics CS594 /C690
Fall 2018 took place on Mon, Dec 3, 2018, 9:30am-11am in MinKao in the atrium. The graduate
students presented exciting posters about their work in big data analytics on
high-performance computing and cloud computing. Pictures of the event are posted <a
href="BigDataAnalytics2018.html" target="_blank">HERE.</a></div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-contents">
<div class="published_date">
<div class="day">11</div>
<div class="month">November</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new17">
<h3 class="title">Visit our group at SC18</a></h3>
</div>
<div class="post-excerpt">If you are at SC18, come by the University of Tennessee booth (booth
#4113). You can find more about my group at SC18 (Location and schedule of presentations)
together with the featured research at: <a href="https://globalcomputing.group/sc18.html"
target="_blank">https://globalcomputing.group/sc18.html</a></div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-contents">
<div class="published_date">
<div class="day">11</div>
<div class="month">November</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new16">
<h3 class="title">Mimir 1.0 MapReduce over MPI Software release</a></h3>
</div>
<div class="post-excerpt">Mimir, our MapReduce over MPI framework is now available at <a
href="https://github.com/TauferLab/Mimir/releases" target="_blank">
https://github.com/TauferLab/Mimir/releases. </a> Come by our UT booth at SC18 (#4113) to
learn more about Mimir performance.</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-contents">
<div class="published_date">
<div class="day">7</div>
<div class="month">September</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new15">
<h3 class="title">Paper accepted at the IEEE ICPADS 2018</a></h3>
</div>
<div class="post-excerpt"> Our work "On the Power of Combiner Optimizations in MapReduce over
MPI Workflows" was accepted at IEEE 24th International Conference on Parallel and
Distributed Systems (IEEE ICPADS 2018). This is work with <a
href="http://www.mcs.anl.gov/~balaji/" target="_blank"> Dr. Pavan Balaji </a> and <a
href="https://www.anl.gov/" target="_blank"> Argonne National Laboratory. </a> </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/CCDSCLyon.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">7</div>
<div class="month">September</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new14">
<h3 class="title">Dr. Taufer at the 2018 CCDSC workshop in Lyon</a></h3>
</div>
<div class="post-excerpt"> Dr. Taufer presents "Modeling Record-and-Replay for
Nondeterministic Applications on Exascale Systems" at the 2018 CCDSC workshop <a
href="https://www.icl.utk.edu/" target="_blank"> (ICL) </a>in Lyon. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height=300
src="assets/img/news/ICL.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">21</div>
<div class="month">August</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new13">
<h3 class="title">Dr.Taufer joined the <a href="https://www.icl.utk.edu/" target="_blank">
ICL</a> annual retreat and presented our research at the meeting </h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height=300
src="assets/img/news/ModSim18.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">17</div>
<div class="month">August</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new12">
<h3 class="title">Dylan Chapp from UTK and UD presents our work on modeling
record-and-replay for nondeterministic applications on exascale systems at <a
href="https://www.bnl.gov/modsim2018/" target="_blank"> ModSim 2018 </a></h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height=300
src="assets/img/news/DylanLLNL.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">17</div>
<div class="month">August</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new11">
<h3 class="title">Dylan Chapp in the top 10 of posters at the LLNL poster symposium</h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height=300
src="assets/img/news/Mike.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">16</div>
<div class="month">August</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new10">
<h3 class="title">Mike Wyatt from UTK and UD presents cutting-edge research on predicting
runtime and IO for HPC systems using neural networks at ICPP18</h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb">
<img src="assets/img/news/StephenandSean.jpg" height=300 />
</a>
</div>
<div class="post-contents">
<div class="published_date">
<div class="day">14</div>
<div class="month">August</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new9">
<h3 class="title">Dr. Stephen Herbein and Dr. Sean McDaniel officially received their
doctorate from University of Delaware</a></h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height=300
src="assets/img/news/UT.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">27</div>
<div class="month">June</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new8">
<h3 class="title">Dr. Taufer from University of Tennessee on how to consider I/O when
scheduling. Using ML to predict runtime and I/O of jobs</a></h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/PRIONN.png" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">26</div>
<div class="month">April</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new7">
<h3 class="title">Mike presents his work on PRIONN: Predicting Runtime and IO using Neural
Networks at the Salishan Conference on HPC</h3>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/GT18.jpg" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">27</div>
<div class="month">March</div>
<div class="year">2018</div>
</div>
<div class="aside">
<div id="new6">
<h3 class="title">Stephen Herbein presenting in NVIDIA's GPU Technology Conference</a></h3>
</div>
<div class="post-excerpt">Stephen presenting poster: "Creating a Portable, High-Level Graph
Analytics Paradigm For Compute and Data-Intensive Applications"</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/Shenzhen.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">20</div>
<div class="month">December</div>
<div class="year">2017</div>
</div>
<div class="aside">
<div id="new5">
<h3 class="title">Dr.Taufer in the Shenzhen Institutes of Advanced Technology</a></h3>
</div>
<div class="post-excerpt"> Dr. Taufer visits the Shenzhen Institutes of Advanced Technology
for Workshop on Data Intensive Computing. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/TaoICPADS17.jpg" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">16</div>
<div class="month">December</div>
<div class="year">2017</div>
</div>
<div class="aside">
<div id="new4">
<h3 class="title"><a href="http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=63915"
target="_blank">Tao at ICPADS17</a></h3>
</div>
<div class="post-excerpt"> Tao Gao present our work on Bloomfish: A Highly Scalable
Distributed K-mer Counting Framework at ICPADS17. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/MolecularTeam.png" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">12</div>
<div class="month">December</div>
<div class="year">2017</div>
</div>
<div class="aside">
<div id="new3">
<h3 class="title"><a
href="https://www.udel.edu/udaily/2017/december/michela-taufer-NSF-analytics-molecular-dynamics/"
target="_blank">Computer Scientist wins NSF grant</a></h3>
</div>
<div class="post-excerpt"> Dr. Taufer leads a research team advancing data analytics for
molecular dynamics, that includes Rafael Ferreira Da Silva, Trilce Estrada, Harel Weinstein,
Ewa Deelman and Michel A. Cuendet. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/SC17.png" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">14</div>
<div class="month">November</div>
<div class="year">2017</div>
</div>
<div class="aside">
<div id="new2">
<h3 class="title">Dr. Taufer in the HPC panel in SC17</h3>
</div>
<div class="post-excerpt"> Michela Taufer with Victoria Stodden, Matthew Krafczyk, Bruce
Childers, Andreas Schreiber and Miriam Leeser speaking about reproducibility and uncertainty
in HPC. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/EuroMPIUSA2017.jpg" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">27</div>
<div class="month">September</div>
<div class="year">2017</div>
</div>
<div class="aside">
<div id="new1">
<h3 class="title">Dr. Taufer at EuroMPI/USA 2017</h3>
</div>
<div class="post-excerpt"> Dr. Taufer gave an engaging keynote of how to adapt and optimize
MapReduce frameworks for HPC environments at EuroMPI/USA 2017. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/img/news/LizandThomas.jpg" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">14</div>
<div class="month">August</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Liz and Thomas at the University of Delaware UG Symposium</h3>
<div class="post-excerpt"> Almost 500 students participated in the UG Symposium. Fantastic
poster and presentation of Liz and Thomas about "Data Analytics for Modeling Soil Moisture
Patterns across United States Ecoclimatic Domains". </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">10</div>
<div class="month">July</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Dr. Taufer promoted to full professor</h3>
<div class="post-excerpt"> Dr. Taufer is among the nineteen faculty members at UD who were
promoted to professor this year. Congratulations Dr. Taufer! Read more in the <a
href="http://www.udel.edu/udaily/2017/may/faculty-promotions/">UDaily</a>. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img a border="0" height="300"
src="assets/gcl-images/taoipdps.jpg" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">2</div>
<div class="month">June</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Tao's presents Mimir at IPDPS</h3>
<div class="post-excerpt"> Tao presented successfully our paper "Mimir: Memory-Efficient and
Scalable MapReduce for Large Supercomputing Systems" at IPDPS 2017 in Orlando Florida.
Congratulations Tao! Read the paper at <a
href="http://ieeexplore.ieee.org/document/7967200/">IEEE Xplore.</a> </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img
alt="Mario Guevara, Michela Taufer and Rodrigo Vargas" border="0" height="300"
src="assets/gcl-images/ecoinformatics.jpg" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">30</div>
<div class="month">May</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">NSF grant to support cyberinfrastructures for precision agriculture</h3>
<div class="post-excerpt"> Drs. Taufer and Vargas have recieved a new NSF grant to support
development of cyberinfrastructure tools for precision agriculture. Read article in <a
href="http://www.udel.edu/udaily/2017/may/cyberinfrastructure-tools-for-precision-agriculture/">UDaily.</a>
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">30</div>
<div class="month">May</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">GCLab Members successes</h3>
<div class="post-excerpt"> Stephen Herbein successfully proposed his PhD work titled "Advanced
Schedulers For Next-Generation HPC Systems" in front of his committee composed of Michela
Taufer (Advisor, UD CIS), Sunita Chandrasekaran (UD CIS), Rui Zhang (UD CIS), Martin Schulz
(Lawrence Livermore National Laboratory), Dean Hildebrand (IBM), and Dong Ahn (Lawrence
Livermore National Laboratory). Dylan Chapp defended his MS thesis on "Study of the Impact
of Non-determinism on Numerical Reproducibility and Debugging at the Exascale."
Congratulations Stephen and Dylan. </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">03</div>
<div class="month">April</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Dr. Taufer selected as JPMorgan Chase Faculty Scholar</h3>
<div class="post-excerpt"> Dr. Taufer brings expertise is high performance computing (HPC) and
HPC infrastructures (i.e., software and hardware) for data analytics to the <a
href="http://lerner.udel.edu/centers/research-centers/institute-for-financial-services-analytics/">Institute
for Financial Services Analytics (IFSA)</a> at UD. Read article in <a
href="http://www.udel.edu/udaily/2017/april/jpmorgan-chase-fellows-scholars/">UDaily</a>.
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">03</div>
<div class="month">February</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Drs. Vargas and Taufer receive UDRF funding</h3>
<div class="post-excerpt"> Vargas and Taufer were one of four teams who received University of
Delaware Research Foundation (UDRF) funding to study how soil moisture data can be extracted
from the vast environmental data now available. Read article in <a
href="http://www.udel.edu/udaily/2017/february/ud-research-foundation-awards-funding/`">UDaily</a>.
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">18</div>
<div class="month">January</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Dr. Taufer to chair SC19</h3>
<div class="post-excerpt"> Taufer has been elected general chair of the 2019 International
Conference for High Performance Computing, Networking, Storage and Analysis (SC19). Read
article in <a
href="http://www.udel.edu/udaily/2017/january/taufer-high-performance-computing-conference/">UDaily</a>.
</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">17</div>
<div class="month">January</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Paper accepted in JCC</h3>
<div class="post-excerpt"> Our work titled "In situ data analytics and indexing of protein
trajectories" has been accepted in the Journal of Computational Chemistry (JCC) Read the
article in <a href="http://onlinelibrary.wiley.com/doi/10.1002/jcc.24729/abstract">JCC</a>.
Congratulations Travis!</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">15</div>
<div class="month">January</div>
<div class="year">2017</div>
</div>
<div class="aside">
<h3 class="title">Paper accepted at IPDPS 2017</h3>
<div class="post-excerpt"> Our paper titled "Mimir: Memory-Efficient and Scalable MapReduce
for Large Supercomputing Systems" has been accepted at IPDPS 2017. The advanced program can
be found at: <a href="http://www.ipdps.org/ipdps2017/2017_advance_program.html">IPDPS 2017
Program</a>. Congratulations Tao!</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">9</div>
<div class="month">December</div>
<div class="year">2016</div>
</div>
<div class="aside">
<h3 class="title">Dr. Taufer co-author of Science article</h3>
<div class="post-excerpt"> Dr. Taufer co-author of paper on enhancing reproducibility for
computational methods. Read article in <a
href="http://science.sciencemag.org/content/354/6317/1240">Science</a>.</div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"><img alt="Herbein Best Poster" border="0"
height="300" src="assets/gcl-images/CxL0iaSUoAEs08U.jpg" width="400" /></a></div>
<div class="post-contents">
<div class="published_date">
<div class="day">13-18</div>
<div class="month">November</div>
<div class="year">2016</div>
</div>
<div class="aside">
<h3 class="title">GCLab at SC16</h3>
<div class="post-excerpt"> Our group is part of the team presenting research at the UD
research booth at SC16. Come by to learn about our work! </div>
</div>
</div>
</div>
<div class="sp-line-75"></div>
<div class="post">
<div class="post-header"><a class="post-thumb"></a></div>
<div class="post-contents">
<div class="published_date">