-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1068 lines (861 loc) · 55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
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>
<html lang="en" class="no-js" id="body">
<!-- BEGIN HEAD -->
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>GeekPie HPC</title>
<meta name="description" content="">
<link rel="shortcut icon" href="/img/32x32/geekpie.png" type="image/png">
<!-- Open Graph data-->
<meta property="og:type" content="blog">
<meta property="og:title" content="GeekPie HPC">
<meta property="og:site_name" content="GeekPie HPC">
<meta property="og:url" content="https://hpc.geekpie.club/">
<meta property="og:description" content="">
<!-- end Open Graph data-->
<link href="https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700" rel="stylesheet" type="text/css">
<!-- GLOBAL MANDATORY STYLES -->
<link href="/vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet" type="text/css" />
<link href="/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="/vendor/animate.css/animate.css" rel="stylesheet">
<link rel="stylesheet" href="/sass/layout.css">
<meta name="generator" content="Hexo 5.0.0">
</head>
<!-- END HEAD -->
<body>
<!--========== HEADER ==========-->
<header class="header navbar-fixed-top">
<!-- Navbar -->
<nav class="navbar" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="menu-container js_nav-item">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="toggle-icon"></span>
</button>
<!-- Logo -->
<div class="logo">
<!-- En caso de una text -->
<a class="logo-wrap" href="#body" style="text-decoration: none;">
<img class="logo-img logo-img-main" src="img/geekpie-hpc-logo.png" alt="Asentus Logo">
<img class="logo-img logo-img-active" src="img/geekpie-hpc-logo.png" alt="Asentus Logo">
</a>
</div>
<!-- End Logo -->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse nav-collapse">
<div class="menu-container">
<ul class="nav navbar-nav navbar-nav-right">
<li class="js_nav-item nav-item">
<a class="nav-item-child nav-item-hover" href="#body">
Home
</a>
</li>
<li class="js_nav-item nav-item">
<a class="nav-item-child nav-item-hover" href="#work">
Work
</a>
</li>
<li class="js_nav-item nav-item">
<a class="nav-item-child nav-item-hover" href="#about">
About
</a>
</li>
<li class="js_nav-item nav-item">
<a class="nav-item-child nav-item-hover" href="#experience">
Tech Stack
</a>
</li>
<li class="js_nav-item nav-item">
<a class="nav-item-child nav-item-hover" href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
<!-- End Navbar Collapse -->
</div>
</nav>
<!-- Navbar -->
</header>
<!--========== END HEADER ==========-->
<!--========== HERO ==========-->
<div class="promo-block parallax-window" data-parallax="scroll" data-image-src="img/1920x1080/hero.jpeg"
data-position="-150px center">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="promo-block-divider">
<h1 class="promo-block-title">ShanghaiTech<br>GeekPie_HPC</h1>
<p class="promo-block-text">A Supercomputing Group @ ShanghaiTech University</p>
</div>
<ul class="list-inline">
<li><a title="Telegram" href="https://t.me/+XIV5suoEefw0YWRl" class="fa fa-telegram"><i></i></a>
</li>
<li><a title="Slack" href="https://geekpiehpc.slack.com" class="fa fa-slack"><i></i></a></li>
<li><a title="Github" href="https://github.com/geekpiehpc" class="fa fa-github"><i></i></a></li>
<li><a title="Linkedin" href="https://www.linkedin.com/company/72001397/"
class="fa fa-linkedin"><i></i></a></li>
<li><a title="Twitter" href="https://twitter.com/Geekpie_HPC" class="fa fa-twitter"><i></i></a>
</li>
</ul>
</div>
</div>
<!--// end row -->
</div>
</div>
<!--========== HERO ==========-->
<!-- Portfolio -->
<div id="work">
<div class="container content-lg">
<div class="row">
<div class="col-sm-3 sm-margin-b-30">
<div class="text-right sm-text-left">
<h2 class="margin-b-0">Works</h2>
<p>Our Competitions and Awards.</p>
</div>
</div>
<div class="col-sm-8 col-sm-offset-1">
<!-- Masonry Grid -->
<div class="masonry-grid row row-space-2">
<div class="masonry-grid-sizer col-xs-6 col-sm-6 col-md-1"></div>
<div class="masonry-grid-item col-xs-12 col-sm-6 col-md-8 margin-b-4">
<!-- Work -->
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class="full-width img-responsive" src="img/800x400/turing.jpg"
alt="Portfolio Image">
<div class="work-overlay-label">
<p> ASC 18</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">ASC 18</h3>
<span>May. 2018, NanChang</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
<p>First appearance in ASC. Won <b>Silver Medal</b> (ranked 2nd
overall)</p>
<p>Also won <b>e Prize</b> for outstanding performance in AI
comprehension competition.</p>
<p>
<b><a target="_blank" rel="noopener"
href="http://www.asc-events.org/ASC18/"> Show
me more </a></b>
</p>
<ul class="list-inline work-popup-tag">
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://zhuanlan.zhihu.com/p/37252841">Interview,
</a>
</li>
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://baijiahao.baidu.com/s?id=1600130521944567929&wfr=spider&for=pc">news</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>Student:</strong> Zhiqiang Xie,
Jianzhong Liu, Haocong Luo, Zheqi Shen, Chen Chen</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin</p>
<p class="margin-b-5"><strong>Sponsor:</strong> Inspur, Nvidia</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Work -->
</div>
<div class="masonry-grid-item col-xs-12 col-sm-6 col-md-4 margin-b-4">
<!-- Work -->
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class="full-width img-responsive" src="img/397x400/SC19Square.png"
alt="Portfolio Image">
<div class="work-overlay-label">
<p> SC19</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">SC19</h3>
<span>Nov. 2019, Denver, Colorado</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
First appearance in SC.
<p>
<b><a target="_blank" rel="noopener"
href="https://www.studentclustercompetition.us/2019/Teams/GeekPieHPC/index.html">
Show me more </a></b>
</p>
<ul class="list-inline work-popup-tag">
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://blogs.nvidia.cn/2019/11/13/student-cluster-challenge-sc19/">News,
</a>
</li>
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://www.youtube.com/watch?v=kS7bmSHxH3o&feature=youtu.be">Videos
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>Student:</strong> Yuzhuo Jing, Jia Du,
Letong Wang, Jianzhong Luo, Yanjie Song</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin</p>
<p class="margin-b-5"><strong>Sponsor:</strong> Inspur, Nvidia</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Work -->
</div>
<div class="masonry-grid-item col-xs-12 col-sm-6 col-md-8 margin-b-4">
<!-- Work -->
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class="full-width img-responsive" src="img/SC21.jpg" alt="Portfolio Image">
<div class="work-overlay-label">
<p>SC21</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">SC 21</h3>
<span>2021 Nov Shanghai, Virtual</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
<p>Just lower than THUSC, nearly catch up with THU.</p>
<p>
<b><a target="_blank" rel="noopener"
href="https://sc21.supercomputing.org/program/studentssc/student-cluster-competition/">
Show
me more </a></b>
</p>
<ul class="list-inline work-popup-tag">
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://zhuanlan.zhihu.com/p/435566574">news</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>Student:</strong> Yiwei Yang, Songhui
Cao, Siyuan Zhang, Chuyi Zhao, Haotian Jing, Yuchen Ji</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin</p>
<p class="margin-b-5"><strong>Sponsor:</strong> SIST, Library
ShanghaiTech</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Work -->
</div>
<div class="masonry-grid-item col-xs-12 col-sm-6 col-md-4 md-margin-b-4">
<!-- Work -->
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class="full-width img-responsive" src="img/800x400/isc18.png"
alt="Portfolio Image">
<div class="work-overlay-label">
<p> ISC18</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">ISC18</h3>
<span>Jun. 2018, Frankfurt, Germany</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
Won <b>highest HPCG</b>, ranked <b>4th</b> overall and <b>Fan
Favorite</b> Award.
<p>
<b><a target="_blank" rel="noopener"
href="https://www.isc-hpc.com/id-2018.html"> Show me
more </a></b>
</p>
<ul class="list-inline work-popup-tag">
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://www.hpcadvisorycouncil.com/events/2018/isc18-student-cluster-competition/">Results,
</a>
</li>
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://www.youtube.com/watch?v=Z2KHSeetRjg&feature=youtu.be">Intro
Video, </a>
</li>
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://www.hpcwire.com/2018/07/10/tsinghua-powers-through-isc18-field/">Ranks</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>Student:</strong> Zhiqiang Xie,
Jianzhong Liu, Haocong Luo, Zheqi Shen, Chen Chen</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin</p>
<p class="margin-b-5"><strong>Sponsor:</strong> Inspur, Nvidia</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class="full-width img-responsive" src="img/800x400/isc21.png"
alt="Portfolio Image" width="200px">
<div class="work-overlay-label">
<p> ISC21</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">ISC18</h3>
<span>Jun. 2021, ShanghaiTech Virtual</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
Fourth in HPL, we never catch up with THU a little bit.
<p>
<b><a target="_blank" rel="noopener" href=""> Show me
more </a></b>
</p>
<ul class="list-inline work-popup-tag">
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="http://www.hpcadvisorycouncil.com/events/student-cluster-competition/team-shanghai.php">Intro,
</a>
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://www.youtube.com/watch?v=W7YwblnuOjI&t=1440s">
Video
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>Student:</strong> Yiwei Yang, Yuhao
Song, Haoyi Wu, Siyuan Zhang, Songhui Cao, Hongyang Lin</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin</p>
<p class="margin-b-5"><strong>Sponsor:</strong> ShanghaiTech Library
and Information Center</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Work -->
</div>
<div class="masonry-grid-item col-xs-12 col-sm-6 col-md-4 md-margin-b-4">
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class="full-width img-responsive" src="img/800x400/asc22.jpeg"
alt="Portfolio Image">
<div class="work-overlay-label">
<p> ASC22/ISC22</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">ASC22</h3>
<span>Jun. 2022, Hefei, China</span>
</div>
<div class="margin-b-30">
<h3 class="margin-b-5">ISC22</h3>
<span>Jun. 2022, Hamburg, Germany</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
Overall 4th and 2th in Code Challenge @ISC, and preparing for the ASC finals.
<ul class="list-inline work-popup-tag">
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>ASC Student:</strong>Jiajun Cheng,
Mianhan
Liu, Haotian Jing, Siyuan Zhang, Yuchen Ji</p>
<p class="margin-b-5"><strong>ISC Student:</strong>Jiajun Cheng,
Feiran Qin, Cheng Peng, Zecheng, Li, Zike Xu, Dinghao Cheng</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin, Eng. Yindong Zhang</p>
<p class="margin-b-5"><strong>Sponsor:</strong>ShanghaiTech,
Library and Information Center</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="masonry-grid-item col-xs-12 col-sm-6 col-md-4 md-margin-b-4">
<!-- Work -->
<div class="work work-popup-trigger">
<div class="work-overlay">
<img class=" img-responsive" src="img/sc20.jpg" alt="Portfolio Image">
<div class="work-overlay-label">
<p> SC20</p>
</div>
</div>
<div class="work-popup-overlay">
<div class="work-popup-content">
<a href="javascript:void(0);" class="work-popup-close">Hide</a>
<div class="margin-b-30">
<h3 class="margin-b-5">SC20</h3>
<span>Nov. 2020, ShanghaiTech, Shanghai (Virtual Event)</span>
</div>
<div class="row">
<div class="col-sm-8 work-popup-content-divider sm-margin-b-20">
<div class="margin-t-10 sm-margin-t-0">
ranked <b>3rd</b> in IO500.
<p>
<b><a target="_blank" rel="noopener"
href="https://studentclustercompetition.us/2020/Teams/Team08/index.html">
Show me more </a></b>
</p>
<ul class="list-inline work-popup-tag">
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://vscc20.studentclustercompetition.us/">Results,
</a>
</li>
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener" href="https://youtu.be/KKeGgy5kV_4">Intro
Video, </a>
</li>
<li class="work-popup-tag-item">
<a class="work-popup-tag-link" target="_blank"
rel="noopener"
href="https://www.youtube.com/watch?v=zvuRphEIkZI">Summary
Video, </a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="margin-t-10 sm-margin-t-0">
<p class="margin-b-5"><strong>Student:</strong> Yiwei Yang,
Yixuan
Meng, Zijun Xu, Kaiyuan Xu, Tianyuan Wu, Yuchen Liu</p>
<p class="margin-b-5"><strong>Advisor:</strong> Prof. Shu Yin
</p>
<p class="margin-b-5"><strong>Sponsor:</strong> ShanghaiTech,
Library and Information Center</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Work -->
</div>
</div>
<!-- End Masonry Grid -->
</div>
</div>
<!--// end row -->
</div>
</div>
<!-- Portfolio -->
<!-- About -->
<div id="about">
<div class="container content-lg">
<div class="row">
<div class="col-sm-3 sm-margin-b-30">
<div class="text-right sm-text-left">
<h2 class="margin-b-0">Intro</h2>
<p>What I am all about.</p>
</div>
</div>
<div class="col-sm-8 col-sm-offset-1">
<div class="margin-b-60">
<b>GeekPie_</b> is a student association debuted when the first batch of ShanghaiTech
undergraduates
entered this school. Since the inception of our association, it has been collecting
<b>EECS-related</b>
geeks in Schools of Information and Science Technology (SIST) in ShanghaiTech and nurturing
enthusiasts towards gorgeous masters.
</div>
<div class="margin-b-60">
As the youngest section of GeekPie_, GeekPie_HPC is growing steadily. Inspired by the
success in
<b>ASC</b>, <b>ISC</b> and <b>SC</b> student cluster competitions, newcomers influx, endowed
with courage,
eagerness, and full devotion. We are grateful to the <b>School of Information Science and
Technology (SIST)</b> and the <b>Library and Information Center</b> for supporting us
with
comprehensive
HPC resources. With fresh blood injected into this vigorous team and more advanced HPC
resources
this year, GeekPie_HPC is sure to become one of the most influential student supercomputing
teams in the next competition.
</div>
<!-- Progress Box -->
<div class="progress-box">
<h5> Diversity <span class="color-heading pull-right"></span></h5>
<div class="progress">
<div class="progress-bar bg-color-base" role="progressbar" data-width="87"></div>
</div>
</div>
<div class="progress-box">
<h5> Strength <span class="color-heading pull-right"></span></h5>
<div class="progress">
<div class="progress-bar bg-color-base" role="progressbar" data-width="96"></div>
</div>
</div>
<div class="progress-box">
<h5> History <span class="color-heading pull-right"></span></h5>
<div class="progress">
<div class="progress-bar bg-color-base" role="progressbar" data-width="52"></div>
</div>
</div>
<div class="progress-box">
<h5> Enthusiasm <span class="color-heading pull-right"></span></h5>
<div class="progress">
<div class="progress-bar bg-color-base" role="progressbar" data-width="77"></div>
</div>
</div>
<!-- End Progress Box -->
</div>
</div>
<!--// end row -->
</div>
</div>
<!-- End About -->
<!-- experience -->
<div id="experience">
<div class="bg-color-sky-light" data-auto-height="true">
<div class="container content-lg">
<div class="row">
<div class="col-sm-3 sm-margin-b-30">
<div class="text-right sm-text-left">
<h2 class="margin-b-0">Tech Stack</h2>
<p>Something we are equipped</p>
</div>
</div>
<div class="col-sm-8 col-sm-offset-1">
<div class="row row-space-2 margin-b-4">
<div class="col-md-4 md-margin-b-4">
<div class="service " data-height="height">
<div class="service-element">
<i class="service-icon icon-chemistry"></i>
</div>
<div class="service-info">
<h3> Spack</h3>
<p class=" ">Spack is a package manager for supercomputers, Linux, and
macOS. It
makes installing scientific software easy. </p>
<div class="service-button">
<button class="btn btn-theme btn-default-bg"> Great to see more
</button>
</div>
</div>
<a href="http://spack.io/" class="content-wrapper-link"></a>
</div>
</div>
<div class="col-md-4 md-margin-b-4">
<div class="service bg-color-base wow zoomIn " data-height="height"
data-wow-duration=".3" data-wow-delay=".1s">
<div class="service-element">
<i class="service-icon color-white icon-screen-tablet"></i>
</div>
<div class="service-info">
<h3 class="color-white"> Grafana</h3>
<p class=" color-white ">Grafana is the open source analytics & monitoring
solution for every database.</p>
<div class="service-button">
<button class="btn btn-theme btn-white-bg"> Great to see more </button>
</div>
</div>
<a href="https://grafana.com/" class="content-wrapper-link"></a>
</div>
</div>
<div class="col-md-4 md-margin-b-4">
<div class="service " data-height="height">
<div class="service-element">
<i class="service-icon icon-badge"></i>
</div>
<div class="service-info">
<h3> Cuda</h3>
<p class=" ">CUDA® is a parallel computing platform and programming model
developed by NVIDIA for general computing on graphical processing units
(GPUs).</p>
<div class="service-button">
<button class="btn btn-theme btn-default-bg"> Great to see more
</button>
</div>
</div>
<a href="https://developer.nvidia.com/" class="content-wrapper-link"></a>
</div>
</div>
</div>
<!--// end row -->
</div>
</div>
<!--// end row -->
</div>
</div>
</div>
<!-- End experience -->
<!-- experience -->
<div id="experience">
<div class="bg-color-sky-light" data-auto-height="true">
<div class="container content-lg">
<div class="row">
<div class="col-sm-3 sm-margin-b-30">
<div class="text-right sm-text-left">
<h2 class="margin-b-0">Activity</h2>
<p>What we've provided for advancement</p>
</div>
</div>
<div class="col-sm-8 col-sm-offset-1">
<div class="row row-space-2 margin-b-4">
<div class="event" data-event-date="2021-11-27">
<div class="event-title">
<a href="/2022/2/28/Harry_Chen_invite_talk/index.html">
<h2>TUNA x GeekPie</h2>
</a>
</div>
<div class="event-meta">
<span><i class="fa fa-calendar fa-fw"></i> 2022-02-28 14:00-15:30 </span>
<span><i class="fa fa-map-marker fa-fw"></i> Wagas, Shanghai Greenland
Center</span>
<span class="event-status">
<span class="label label-info">Finished</span></span>
</div>
<div class="event-abstract">
The lecturer is <a href="https://harrychen.xyz">Harry Chen</a>. He will visit us
for guidance of his pitfalls at ASC20-21. Miao.
</div>
</div>
<div class="event" data-event-date="2021-11-27">
<div class="event-title">
<a href="/2021/11/27/SC21_Experiences/">
<h2>SC21 Experience </h2>
</a>
</div>
<div class="event-meta">
<span><i class="fa fa-calendar fa-fw"></i> 2021-11-27 18:00-19:30 </span>
<span><i class="fa fa-map-marker fa-fw"></i> SIST 1A200</span>
<span class="event-status">
<span class="label label-info">Finished</span></span>
</div>
<div class="event-abstract">
The GeekPie_HPC team has achieved the second place in the team in this year's
SC21, and here's the inside talk.
</div>
</div>
<div class="event" data-event-date="2021-04-17">
<div class="event-title">
<a href="/archives/">
<h2>Recruitment for ASC2022</h2>
</a>
</div>
<div class="event-meta">
<span><i class="fa fa-calendar fa-fw"></i>2021-06-01 23:59 </span>
<span><i class="fa fa-envelope fa-fw"></i> <a font-size:2.5em=""
href="mailto:[email protected]">yangyw</a> </span>
<span class="event-status">
<span class="label label-info">Finished</span></span>
</div>
<div class="event-abstract">
<h4>Application requirements</h4>
<li>Full-time undergraduate students from year 1 to 3 at ShanghaiTech, majoring
in
any
field, with a strong interest in high-performance computing and computer
architecture.</li>
<li>Have some self-learning ability and the ability to read English documents.
</li>
<li>The ability to program in C++ and master basic knowledge of algorithms/data
structures.</li>
<li>Extensive friendships with students from THU, USTC and prestigious foreign
universities (female students are preferred).</li>
<li>Able to spare 2 days a week.</li>
</div>
</div>
<div class="event" data-event-date="2021-05-16">
<div class="event-title">
<a href="/2021/05/16/Jump_Trading_Invite/">
<h2>Jump Trading Invite Talk</h2>
</a>
</div>
<div class="event-meta">
<span><i class="fa fa-calendar fa-fw"></i> 2021-05-16 19:30-20:30 </span>
<span><i class="fa fa-map-marker fa-fw"></i> SIST 1A200</span>
<span class="event-status">
<span class="label label-info">Finished</span></span>
</div>
<div class="event-abstract">
Wanna a job at Fintech Company? Wanna more info of transient algorithm market
trading? Wanna attend the HFT industry? Come and talk!.
</div>
</div>
<div class="event" data-event-date="2021-05-10">
<div class="event-title">
<a href="/2021/05/10/CS131_Invite/">
<h2>ICE Zhang Invite Talk</h2>
</a>
</div>
<div class="event-meta">
<span><i class="fa fa-calendar fa-fw"></i> 2021-05-10 18:00-19:30 </span>
<span><i class="fa fa-map-marker fa-fw"></i> SIST 1A104</span>
<span class="event-status">
<span class="label label-info">Finished</span></span>
</div>
<div class="event-abstract">
The title is <a
href="https://math.jhu.edu/~eriehl/ASL-HoTT.pdf">Curry-Howard-Voevodsky</a>.
The
Curry-Howard correspondence relates formal proofs in logic and computer programs
in
a typed functional programming language.
</div>
</div>
</div>
<!--// end row -->
</div>
</div>
<!--// end row -->
</div>
</div>
</div>
<!-- Contact -->
<div id="contact">
<div class="bg-color-sky-light">
<div class="container content-lg">
<div class="row">
<div class="col-sm-3 sm-margin-b-30">
<div class="text-right sm-text-left">
<h2 class="margin-b-0">Contacts</h2>
<p>For more harmony</p>
</div>
</div>
<div class="col-sm-8 col-sm-offset-1">
<div class="row">
<div class="col-md-3 col-xs-6 md-margin-b-30">
<h5>Location</h5>
<a
href="https://www.google.com/maps/place/%E4%B8%8A%E6%B5%B7%E7%A7%91%E6%8A%80%E5%A4%A7%E5%AD%B8/@31.1763787,121.5902685,17z/data=!4m12!1m6!3m5!1s0x35b27828f381499b:0x5ae88f32ad8196b1!2z5LiK5rW356eR5oqA5aSn5a24!8m2!3d31.1763741!4d121.5924518!3m4!1s0x35b27828f381499b:0x5ae88f32ad8196b1!8m2!3d31.1763741!4d121.5924518">Pudong,
Shanghai</a>
</div>
<div class="col-md-3 col-xs-6 md-margin-b-30">
<h5>Phone</h5>
<a href="tel:+86 02120685225">+86 21 2068 5225</a>
</div>
<div class="col-md-3 col-xs-6 md-margin-b-30">
<h5>Email</h5>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="col-md-3 col-xs-6 md-margin-b-30">
<h5>Wiki</h5>