-
Notifications
You must be signed in to change notification settings - Fork 115
/
people.yml
3411 lines (3032 loc) · 66.9 KB
/
people.yml
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
#
# Database of People participating in JLESC
#
#
# ## Purpose
#
# - data source for the table on `about/people/`
# - data source for custom _person_ Liquid tags
#
#
# ## Identifier Format
#
# For the sake of uniqueness and uniformity, construct a person's identifier according to this
# scheme:
#
# SURNAME1_SURNAME2_GIVEN_NAME_INITIAL
#
# Only use lower case letters, numbers and underscores!
#
# Examples:
#
# "Jack Johnson" -> johnson_j
# "Betty Katherine O'Connor" -> oconnor_b
# "Yin Wing Wang" -> wing_wang_y
#
#
# ## Required Attributes
#
# sur_name surnames, e.g. "Johnson", "O'Conner", "Wing Wang"
# given_name given names, e.g. "Jack", "Betty Katherine", "Yin"
# affiliation institute ID as defined in `_data/institutes.yml`; either a single ID or a YAML
# list of IDs
#
#
# ## Optional Attributes
#
# position ID of the person's position at the first (or only) affiliation; ID must be an
# entry in `_data/positions.yml`
# topics free text describing the research interest (should be as short as possible!)
# email official person's email address (should be of first (or only) affiliation)
# homepage official private person's homepage (e.g. profile page at first (or only)
# affiliation)
#
#
# ## Notes
#
# - The email addresses displayed on the 'People' page are obfuscated to prevent them being grabbed
# by (spam) bots.
#
# - stick to a total line length of 100 characters ................................ this is here ->|
# For longer text fields (e.g. 'topics') use YAML's "Folded style" [1]:
#
# johnson_j:
# ...
# topics: >
# a really long description spanning
# multiple lines
# ...
#
# - keep the entries in alphanumerical order with respect to the identifier
#
#
# [1]: https://en.wikipedia.org/wiki/YAML#Newlines_folded
#
#
aach_m:
sur_name: Aach
given_name: Marcel
affiliation: jsc
position:
topics:
email: [email protected]
homepage:
acosta_j:
sur_name: Acosta
given_name: Juan
affiliation: bsc
position:
topics:
email: [email protected]
homepage:
acosta_m:
sur_name: Acosta
given_name: Mario
affiliation: bsc
position:
topics:
email: [email protected]
homepage:
adhi_b:
sur_name: Adhi
given_name: Boma
affiliation: riken
position:
topics:
email:
homepage:
agullo_e:
sur_name: Agullo
given_name: Emmanuel
affiliation: inria
position:
topics:
email: [email protected]
homepage: https://team.inria.fr/hiepacs/team-members/emmanuel-agullo/
allen_g:
sur_name: Allen
given_name: Gabrielle
affiliation: uiuc
position: permanent
topics: Applications & Software Frameworks & Astrophysics
email: [email protected]
homepage: http://www.ncsa.illinois.edu/assets/php/directory/contact.php?contact=gdallen
altenbernd_m:
sur_name: Altenbernd
given_name: Mirco
affiliation: external
position: phd
topics:
email: [email protected]
homepage: https://www.ians.uni-stuttgart.de/institute/team/Altenbernd-00001/
alvarez_c:
sur_name: Alvarez
given_name: Carlos
affiliation: bsc
position: permanent
topics: programming models, FPGAs
email: [email protected]
homepage:
alvarez_d:
sur_name: Alvarez
given_name: David
affiliation: bsc
position: phd
topics:
email: [email protected]
homepage:
amer_a:
sur_name: Amer
given_name: Abdelhalim
affiliation: anl
position: post_doc
topics: Programming Models
email: [email protected]
homepage: http://www.mcs.anl.gov/~aamer/
antoniu_g:
sur_name: Antoniu
given_name: Gabriel
affiliation: inria
position: permanent
topics: Big Data & I/O
email: [email protected]
homepage: https://team.inria.fr/kerdata/gabriel-antoniu/
anzt_h:
sur_name: Anzt
given_name: Hartwig
affiliation: utk
position: permanent
topics: Numerical methods
email: [email protected]
homepage: https://hartwiganzt.github.io/
applencourt_t:
sur_name: Applencourt
given_name: Thomas
affiliation: anl
position:
topics:
email: [email protected]
homepage:
artigues_a:
sur_name: Artigues
given_name: Antoni
affiliation: bsc
position:
email: [email protected]
homepage: https://www.bsc.es/about-bsc/staff-directory/artigues-antoni
attig_n:
sur_name: Attig
given_name: Norbert
affiliation: jsc
position: permanent
email: [email protected]
homepage: http://www.fz-juelich.de/SharedDocs/Personen/IAS/JSC/EN/staff/attig_n.html
aumage_o:
sur_name: Aumage
given_name: Olivier
affiliation: inria
position: permanent
email: [email protected]
homepage:
aupy_g:
sur_name: Pallez
given_name: Guillaume
affiliation: inria
position: permanent
topics: storage, resilience
email: [email protected]
homepage: https://gaupy.org
badia_r:
sur_name: Badia
given_name: Rosa M.
affiliation: bsc
position: permanent
topics: Programming Models
email: [email protected]
homepage: https://sites.google.com/site/rosambadia/
balaji_p:
sur_name: Balaji
given_name: Pavan
affiliation: anl
position: permanent
topics: Programming Models, Resilience
email: [email protected]
homepage: http://www.mcs.anl.gov/~balaji/
balaprakash_p:
sur_name: Balaprakash
given_name: Prasanna
affiliation: anl
position:
topics: artificial intelligence, machine learning, optimization, and high-performance computing
email: [email protected]
homepage: http://www.mcs.anl.gov/person/prasanna-balaprakash
balasz_g:
sur_name: Balasz
given_name: Gerofi
affiliation: riken
position:
topics:
email: [email protected]
homepage: http://www-sys-aics.riken.jp/Members/gerofi.html
bandet_a:
sur_name: Bandet
given_name: Alexis
affiliation: inria
position: phd
topics:
email: [email protected]
homepage:
barcelo_a:
sur_name: Barcelo
given_name: Alex
affiliation: bsc
position: phd
topics: Big Data & I/O
email: [email protected]
homepage:
barry_d:
sur_name: Barry
given_name: Daniel
affiliation: utk
position:
topics:
email: [email protected]
homepage:
bauer_g:
sur_name: Bauer
given_name: Greg
affiliation: ncsa
position: permanent
topics:
email: [email protected]
homepage:
bautista_gomez_l:
sur_name: Bautista Gomez
given_name: Leonardo
affiliation: bsc
position: permanent
topics: Resilience
email: [email protected]
homepage: leobago.com
baumann_t:
sur_name: Baumann
given_name: Thomas
affiliation: jsc
position: phd
topics: numerical methods, time integration, resilience
email: [email protected]
homepage:
baumeister_p:
sur_name: Baumeister
given_name: Paul
affiliation: jsc
position: post_doc
topics: performance optimization and analysis, applications, advanced architectures
email: [email protected]
homepage: http://www.fz-juelich.de/SharedDocs/Personen/IAS/JSC/EN/staff/baumeister_p.html
beams_n:
sur_name: Beams
given_name: Natalie
affiliation: ncsa
position: phd
topics:
email: [email protected]
homepage: http://web.engr.illinois.edu/~beams2/
beltran_v:
sur_name: Beltran
given_name: Vicenc
affiliation: bsc
position: permanent
topics: Programming Models, Resilience
email: [email protected]
homepage:
benoit_a:
sur_name: Benoit
given_name: Anne
affiliation: inria
position: permanent
topics: Resilience
email: [email protected]
homepage: http://graal.ens-lyon.fr/~abenoit/
bienz_a:
sur_name: Bienz
given_name: Amanda
affiliation: uiuc
position: post_doc
topics: Numerics
email: [email protected]
homepage: http://web.engr.illinois.edu/~bienz2/
bleuse_r:
sur_name: Bleuse
given_name: Raphaël
affiliation: inria
position: phd
topics:
email: [email protected]
homepage:
bode_m:
sur_name: Bode
given_name: Mathis
affiliation: jsc
position:
topics:
email: [email protected]
homepage:
boito_f:
sur_name: Zanon Boito
given_name: Francieli
affiliation: inria
position: permanent
topics:
email: [email protected]
homepage: http://www.inf.ufrgs.br/~fzboito/
borrell_r:
sur_name: Borrell
given_name: Ricard
affiliation: bsc
position: post_doc
topics:
email: [email protected]
homepage: https://www.bsc.es/borrell-ricard
bosilca_g:
sur_name: Bosilca
given_name: George
affiliation: utk
position: permanent
topics: HPC, Resilience, programming models
email: [email protected]
homepage: http://www.icl.utk.edu/~bosilca/
bouge_l:
sur_name: Bougé
given_name: Luc
affiliation: inria
position: permanent
topics: Big Data & I/O
email: [email protected]
homepage: https://team.inria.fr/kerdata/luc-bouge/
bouteiller_a:
sur_name: Aurelien
given_name: Bouteiller
affiliation: utk
position: permanent
topics: HPC, Resilience, programming models
email: [email protected]
homepage: http://www.icl.utk.edu/~bouteill/
bouvier_t:
sur_name: Bouvier
given_name: Thomas
affiliation: inria
position: phd
topics:
email: [email protected]
homepage: https://team.inria.fr/kerdata/thomas-bouvier/
brown_m:
sur_name: Maxine D.
given_name: Brown
affiliation: uiuc
position: permanent
topics:
email: [email protected]
homepage: https://www.evl.uic.edu/maxine/
buch_r:
sur_name: Ronak
given_name: Buch
affiliation: uiuc
position: phd
topics:
email: [email protected]
homepage: http://web.engr.illinois.edu/~rabuch2/
burbano_m:
sur_name: Burbano
given_name: Mario
affiliation: inria
position:
topics:
email: [email protected]
homepage:
cainolores_s:
sur_name: Caino-Lores
given_name: Silvina
affiliation: utk
position:
topics:
email: [email protected]
homepage:
caklovic_g:
sur_name: Caklovic
given_name: Gayatri
affiliation: jsc
position: phd
topics: Numerical methods, parallel-in-time integration
email: [email protected]
homepage:
calhoun_j:
sur_name: Calhoun
given_name: Jon
affiliation: external
position: permanent
topics: HPC, Resilience, Lossy Compression
email: [email protected]
homepage: http://jonccal.people.clemson.edu/
calmet_h:
sur_name: Calmet
given_name: Hadrien
affiliation: bsc
position: permanent
topics:
email: [email protected]
homepage:
cappello_f:
sur_name: Cappello
given_name: Franck
affiliation: anl
position: permanent
topics:
email: [email protected]
homepage: http://www.mcs.anl.gov/person/franck-cappello
carns_p:
sur_name: Carns
given_name: Phil
affiliation: anl
position:
topics:
email: [email protected]
homepage: http://www.mcs.anl.gov/person/phil-carns
casas_m:
sur_name: Casas
given_name: Marc
affiliation: bsc
position: permanent
topics: HPC, Programming Models, Resilience
email: [email protected]
homepage: http://www.bsc.es/about-bsc/staff-directory/casas-marc
castrillo_m:
sur_name: Castrillo
given_name: Miguel
affiliation: bsc
position:
topics:
email: [email protected]
homepage:
cavelan_a:
sur_name: Cavelan
given_name: Aurélien
affiliation: inria
position: phd
topics: Resilience
email: [email protected]
homepage: http://perso.ens-lyon.fr/aurelien.cavelan/
caviedes-voullieme_d:
sur_name: Daniel
given_name: Caviedes-Voullième
affiliation: jsc
position:
topics:
email:
homepage:
cela_j:
sur_name: Cela Espin
given_name: Jose Maria
affiliation: bsc
position: permanent
topics:
email: [email protected]
homepage: https://www.bsc.es/cela-espin-jose-maria
cerf_s:
sur_name: Cerf
given_name: Sophie
affiliation: inria
position: permanent
topics:
email: [email protected]
homepage:
chard_k:
sur_name: Kyle
given_name: Chard
position:
affiliation: anl
topics:
email: [email protected]
homepage:
channing_g:
sur_name: Channing
given_name: Georgia
position:
affiliation: utk
topics:
email: [email protected]
homepage:
chen_j:
sur_name: Chen
given_name: Jian
affiliation: riken
position:
topics:
email: [email protected]
homepage:
cherrueau_r_a:
sur_name: Cherrueau
given_name: Ronan Alexandre
affiliation: inria
position:
topics:
email: [email protected]
homepage: https://rcherrueau.github.io/
cheriere_n:
sur_name: Cheriere
given_name: Nathanael
affiliation: inria
position: phd
topics: Big Data & I/O
email: [email protected]
homepage: http://perso.eleves.ens-rennes.fr/~ncherier/
chien_a:
sur_name: Chien
given_name: Andrew A.
affiliation: anl
position: permanent
topics: Applications, system software, networking, and architecture
email: [email protected]
homepage: https://www.cs.uchicago.edu/directory/andrew-chien
christodoulis_g:
sur_name: Christodoulis
given_name: Georgios
affiliation: inria
position:
topics:
email: [email protected]
homepage:
conejero_f:
sur_name: Conejero
given_name: Francisco Javier
affiliation: bsc
position:
topics:
email: [email protected]
homepage:
cortes_t:
sur_name: Cortes
given_name: Toni
affiliation: bsc
position: permanent
topics: operating systems, middleware and runtimes for parallel machines and clusters of workstations
email: [email protected]
homepage: http://people.ac.upc.edu/toni/Toni_web_site/Toni_Cortes_-_Welcome.html
costan_a:
sur_name: Costan
given_name: Alexandru
affiliation: inria
position:
topics:
email: [email protected]
homepage: https://team.inria.fr/kerdata/alexandru-costan/
constantinescu_e:
sur_name: Constantinescu
given_name: Emil
affiliation: anl
position: permanent
topics: applied mathematics
email: [email protected]
homepage: http://www.mcs.anl.gov/~emconsta/
coulaud_o:
sur_name: Coulaud
given_name: Olivier
affiliation: inria
position:
topics:
email: [email protected]
homepage: http://people.bordeaux.inria.fr/coulaud/
coullon_h:
sur_name: Coullon
given_name: Helene
affiliation: inria
position: permanent
topics:
email: [email protected]
homepage: http://helene-coullon.fr/
croubois_h:
sur_name: Croubois
given_name: Hadrien
affiliation: inria
position: phd
topics:
email: [email protected]
homepage: https://hadriencroubois.com/
darte_a:
sur_name: Darte
given_name: Alain
affiliation: inria
position: permanent
topics:
email: [email protected]
homepage: http://perso.ens-lyon.fr/alain.darte/
danalis_a:
sur_name: Danalis
given_name: Anthony
affiliation: utk
position:
topics: tools
email: [email protected]
homepage:
daoudi_i:
sur_name: Daoudi
given_name: Idriss
affiliation: anl
position: post_doc
topics:
email: [email protected]
homepage:
dawson_w:
sur_name: Dawson
given_name: William
affiliation: riken
position:
topics:
email: [email protected]
homepage: http://william-dawson.github.io
delamare_s:
sur_name: Delamare
given_name: Simon
affiliation: inria
position: permanent
topics:
email: Simon Delamare <[email protected]>
homepage:
denis_a:
sur_name: Denis
given_name: Alexandre
affiliation: inria
position: permanent
topics:
email: [email protected]
homepage: http://people.bordeaux.inria.fr/adenis/
desprez_f:
sur_name: Desprez
given_name: Frédéric
affiliation: inria
position: permanent
topics:
email: [email protected]
homepage: https://fdesprez.github.io/
di_s:
sur_name: Di
given_name: Sheng
affiliation: anl
position: post_doc
email: [email protected]
homepage: http://www.mcs.anl.gov/person/sheng-di
di_napoli_e:
sur_name: Di Napoli
given_name: Edoardo
affiliation: jsc
position: permanent
topics: numerical linear algebra, materials science
email: [email protected]
homepage: http://www.jara.org/index.php?id=1314
diaz_j:
sur_name: Diaz
given_name: Julien
affiliation: inria
position:
topics: Numerical and mathematical aspects related to elastodynamic and acoustic wave propagation phenomena
email: [email protected]
homepage: https://team.inria.fr/magique3d/team-members/julien-diaz/
dirand_e:
sur_name: Dirand
given_name: Estelle
affiliation: inria
position: phd
topics: In-Situ Analytics and Visualization
email: [email protected]
homepage:
doblas_reyes_f:
sur_name: Doblas-Reyes
given_name: Francisco
affiliation: bsc
position:
topics:
email: [email protected]
homepage: https://www.bsc.es/about-bsc/staff-directory/doblas-reyes-francisco-j
domke_j:
sur_name: Domke
given_name: Jens
affiliation: riken
position: permanent
topics: Benchmarking
email: [email protected]
homepage: https://domke.gitlab.io/
dongarra_j:
sur_name: Dongarra
given_name: Jack
affiliation: utk
position: permanent
topics:
email: [email protected]
homepage: http://www.netlib.org/utk/people/JackDongarra/
dorier_m:
sur_name: Dorier
given_name: Matthieu
affiliation: anl
position: post_doc
topics: Big Data & I/O
email: [email protected]
homepage: https://dorier.github.io
dreher_m:
sur_name: Dreher
given_name: Matthieu
affiliation: anl
position: post_doc
topics: Programming Models
email: [email protected]
homepage: http://www.mcs.anl.gov/person/matthieu-dreher
dubey_a:
sur_name: Dubey
given_name: Anshu
affiliation: anl
position: permanent
topics: Applications
email: [email protected]
homepage: https://www.anl.gov/profile/anshu-dubey
du_y:
sur_name: Du
given_name: Yishu
affiliation: inria
position: phd
email: [email protected]
homepage:
dun_n:
sur_name: Dun
given_name: Nan
affiliation: anl
position: alumnus
email:
homepage:
echevarria_p:
sur_name: Echevarria
given_name: Pablo
affiliation: bsc
position:
topics:
email: [email protected]
homepage:
egele_r:
sur_name: Egele
given_name: Romain
affiliation: anl
position:
topics:
email: [email protected]
homepage:
ejarque_j:
sur_name: Ejarque
given_name: Jorge
affiliation: bsc
position:
topics:
email: [email protected]
homepage: https://www.bsc.es/ejarque-jorge
estrada_j:
sur_name: Estrada
given_name: Jorge
affiliation: bsc
position: post_doc
topics: Protein Biophysics, Monte Carlo
email: [email protected]
homepage: https://www.bsc.es/about-bsc/staff-directory/estrada-jorge
feld_c:
sur_name: Feld
given_name: Christian
affiliation: jsc
position: permanent
topics: Performance Tools
email: [email protected]
homepage: http://www.fz-juelich.de/SharedDocs/Personen/IAS/JSC/EN/staff/feld_c.html
ferrier_n:
sur_name: Ferrier
given_name: Nicola
affiliation: anl
position:
topics:
email: [email protected]
homepage:
finkel_h:
sur_name: Finkel
given_name: Hal
affiliation: anl
position: permanent
topics:
email: [email protected]
homepage: https://www.alcf.anl.gov/staff-directory/hal-finkel
fischer_p:
sur_name: Fischer
given_name: Paul
affiliation: uiuc
position:
topics:
email: [email protected]
homepage:
freitas_h:
sur_name: Freitas
given_name: Henrique
affiliation: inria
position:
topics:
email: [email protected]
homepage: https://team.inria.fr/exase/author/hcfreitas/
frings_w:
sur_name: Frings
given_name: Wolfgang
affiliation: jsc
position: permanent
topics: I/O, benchmarking, HPC
email: [email protected]
homepage: http://www.fz-juelich.de/SharedDocs/Personen/IAS/JSC/EN/staff/frings_w.html
fritz_j:
sur_name: Fritz
given_name: Jakob
affiliation: jsc
position:
topics: CI, benchmarking, RSE
email: [email protected]
homepage: https://www.fz-juelich.de/profile/fritz_j
fujita_k:
sur_name: Fujita
given_name: Kohei
affiliation: riken
position:
topics:
email: [email protected]
homepage:
garcia_de_gonzalo_s:
sur_name: Garcia De Gonzalo
given_name: Simon
affiliation: uiuc
position: phd
topics:
email: [email protected]
homepage: http://xpacc.illinois.edu/about-us/directory/simon-garcia/
gasper_f:
sur_name: Gasper
given_name: Fabian
affiliation: jsc
position:
topics:
email: f.gasper@fz-juelich
homepage: http://www.fz-juelich.de/ibg/ibg-3/EN/Staff/G/Gasper,%20Fabian.html?nn=1239630
gautier_t:
sur_name: Gautier
given_name: Thierry
affiliation: inria
position: permanent
topics: Programming Models
email: [email protected]
homepage: http://avalon.ens-lyon.fr/members/tgautier
geimer_m:
sur_name: Geimer
given_name: Markus
affiliation: jsc
position: permanent
topics:
email: [email protected]
homepage: https://www.fz-juelich.de/SharedDocs/Personen/IAS/JSC/EN/staff/geimer_m.html
gerofi_b:
sur_name: Gerofi