-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1260 lines (496 loc) · 25.2 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-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Source Themes Academic 3.0.0">
<meta name="generator" content="Hugo 0.53" />
<meta name="author" content="Yihe (William) Huang, PhD">
<meta name="description" content="Software Engineer, Systems Researcher">
<link rel="alternate" hreflang="en-us" href="https://huangyihe.github.io/">
<meta name="theme-color" content="#795548">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha256-eSi1q2PG6J7g7ib17yAaWMcrr5GrtohYChqibrV7PBE=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.min.css" integrity="sha256-uFVgMKfistnJAfoCUQigIl+JfUaP47GrRKjf6CTPVmw=" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.2.5/jquery.fancybox.min.css" integrity="sha256-ygkqlh3CYSUri3LhQxzdcm0n1EQvH2Y+U5S2idbLtxs=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:400,400italic,700|Roboto+Mono">
<link rel="stylesheet" href="/styles.css">
<link rel="alternate" href="https://huangyihe.github.io/index.xml" type="application/rss+xml" title="Yihe's Personal Website">
<link rel="feed" href="https://huangyihe.github.io/index.xml" type="application/rss+xml" title="Yihe's Personal Website">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="apple-touch-icon" type="image/png" href="/img/icon-192.png">
<link rel="canonical" href="https://huangyihe.github.io/">
<meta property="twitter:card" content="summary_large_image">
<meta property="og:site_name" content="Yihe's Personal Website">
<meta property="og:url" content="https://huangyihe.github.io/">
<meta property="og:title" content="Yihe's Personal Website">
<meta property="og:description" content="Software Engineer, Systems Researcher">
<meta property="og:image" content="https://huangyihe.github.io/img/icon-192.png">
<meta property="og:locale" content="en-us">
<meta property="og:updated_time" content="2018-02-09T00:00:00+00:00">
<title>Yihe's Personal Website</title>
</head>
<body id="top" data-spy="scroll" data-target="#navbar-main" data-offset="71" >
<nav class="navbar navbar-light fixed-top navbar-expand-lg py-0" id="navbar-main">
<div class="container">
<a class="navbar-brand" href="/">Yihe's Personal Website</a>
<button type="button" class="navbar-toggler" data-toggle="collapse"
data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span><i class="fas fa-bars"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="/#about" data-target="#about">
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#publications" data-target="#publications">
<span>Publications</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#talks" data-target="#talks">
<span>Talks</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#projects" data-target="#projects">
<span>Projects</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#teaching" data-target="#teaching">
<span>Teaching</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#contact" data-target="#contact">
<span>Contact</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<span id="homepage" style="display: none"></span>
<section id="about" class="home-section">
<div class="container">
<div class="row" itemprop="author" itemscope itemtype="http://schema.org/Person" itemref="person-email person-address">
<div class="col-12 col-lg-4">
<div id="profile">
<img class="portrait" src="/img/portrait.jpg" itemprop="image" alt="Avatar">
<div class="portrait-title">
<h2 itemprop="name">Yihe (William) Huang, PhD</h2>
<h3 itemprop="jobTitle">Software Engineer, Systems Researcher</h3>
<h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
<a href="https://www.google.com" target="_blank" itemprop="url" rel="noopener">
<span itemprop="name">Google</span>
</a>
</h3>
<h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
<a href="https://www.harvard.edu" target="_blank" itemprop="url" rel="noopener">
<span itemprop="name">Harvard University</span>
</a>
</h3>
</div>
<link itemprop="url" href="https://huangyihe.github.io/">
<ul class="network-icon" aria-hidden="true">
<li>
<a itemprop="sameAs" href="mailto:[email protected]" >
<i class="fa fa-envelope big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="https://scholar.google.com/citations?user=w8Hly_UAAAAJ" target="_blank" rel="noopener">
<i class="ai ai-google-scholar big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="//github.com/huangyihe" >
<i class="fab fa-github big-icon"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-8" itemprop="description">
<h1 id="biography">Biography</h1>
<p>I am a Software Engineer at Google’s <a href="https://research.google/pubs/pub39966/" target="_blank">Spanner</a> Infrastructure team.
I go by my preferred name William in English. My legal given name Yihe (以何) means “why” in classical Chinese.</p>
<p>I received my PhD in Computer Science from
<a href="https://www.seas.harvard.edu/" target="_blank">Harvard John A. Paulson School of Engineering and Applied Sciences</a> in 2020.
My advisor was <a href="http://www.read.seas.harvard.edu/~kohler/" target="_blank">Professor Eddie Kohler</a>.</p>
<p>My research interests include operating systems, database systems, distributed systems, and a variety of other computer systems.
I have previously worked on storage and runtime systems for emerging byte-addressable persistent memory.
My <a href="pdf/HUANG-DISSERTATION-2020.pdf" target="_blank">PhD dissertation</a> focused on transaction processing and concurrency control
in modern main-memory database systems.</p>
<p>Prior to starting at Google full-time, I worked as a research intern at Oracle Labs (Burlington, MA) in summer 2016, and
at the Systems and Networking Group of Microsoft Reserach (Cambridge, UK) in summer 2018.
In Summer 2019 I worked as a software engineering intern at Google’s Sunnyvale/Mountain View campus
on a collaboration project between Google Cloud and Google Brain.
For more information on my experiences please see my <a href="pdf/yihe-cv.pdf" target="_blank">Curriculum Vitae</a>.</p>
<p>During my time away from computer screens I love to travel, read news, and more recently enjoy classical music (under the influence of my advisor, former coworkers, and my amazing partner Helen).</p>
<div class="row">
<div class="col-md-5">
<h3>Interests</h3>
<ul class="ul-interests">
<li>Operating Systems</li>
<li>Transaction Processing Systems</li>
<li>Distributed Systems</li>
<li>In-memory Database Systems</li>
<li>Database Consistency and Concurrency Control</li>
<li>Programming Language Techniques for Building Large-scale Reliable Systems</li>
</ul>
</div>
<div class="col-md-7">
<h3>Education</h3>
<ul class="ul-edu fa-ul">
<li>
<i class="fa-li fas fa-graduation-cap"></i>
<div class="description">
<p class="course">Ph.D. in Computer Science, 2020</p>
<p class="institution">Harvard University</p>
</div>
</li>
<li>
<i class="fa-li fas fa-graduation-cap"></i>
<div class="description">
<p class="course">S.M. in Computer Science, 2018</p>
<p class="institution">Harvard University</p>
</div>
</li>
<li>
<i class="fa-li fas fa-graduation-cap"></i>
<div class="description">
<p class="course">B.S.E. in Computer Engineering, 2014</p>
<p class="institution">University of Michigan</p>
</div>
</li>
<li>
<i class="fa-li fas fa-graduation-cap"></i>
<div class="description">
<p class="course">B.S. in Electrical and Computer Engineering, 2014</p>
<p class="institution">Shanghai Jiao Tong University</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="publications" class="home-section">
<div class="container">
<div class="row">
<div class="col-12 col-lg-4 section-heading">
<h1>Recent Publications</h1>
</div>
<div class="col-12 col-lg-8">
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
<span itemprop="author">
Yihe Huang, William Qian, Eddie Kohler, Barbara Liskov, Liuba Shrira</span>.
<a href="/publication/cc-vldb/" itemprop="name">Opportunities for Optimism in Contended Main-Memory Multicore Transactions</a>.
VLDB ‘20,
2020.
<p>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/pdf/p629-huang.pdf" target="_blank" rel="noopener">
PDF
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
<span itemprop="author">
Yihe Huang, Matej Pavlovic, Virendra J. Marathe, Margo Seltzer, Tim Harris, Steve Byan</span>.
<a href="/publication/bullet/" itemprop="name">Closing the Performance Gap Between Volatile and Persistent Key-Value Stores Using Cross-Referencing Logs</a>.
ATC ‘18,
2018.
<p>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/pdf/atc18-huang.pdf" target="_blank" rel="noopener">
PDF
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
<span itemprop="author">
Virendra J. Marathe, Achin Mishra, Amee Trivedi, Yihe Huang, Faisal Zaghloul, Sanidhya Kashyap, Margo Seltzer, Tim Harris, Steve Byan, Bill Bridge, Dave Dice</span>.
<a href="/publication/pm-transactions/" itemprop="name">Persistent Memory Transactions</a>.
ATC ‘17,
2017.
<p>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/pdf/pm_txns.pdf" target="_blank" rel="noopener">
PDF
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/publication/misc/pm_txns_poster.pptx" target="_blank" rel="noopener">
Poster
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
<span itemprop="author">
Yihe Huang</span>.
<a href="/publication/quals-paper/" itemprop="name">Software systems for advanced memory technologies</a>.
Harvard Univeristy PhD Qualifications Exam Thesis,
2016.
<p>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/pdf/Yihe_QualsDocs.pdf" target="_blank" rel="noopener">
PDF
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
<span itemprop="author">
Nathaniel Herman, Jeevana Priya Inala, Yihe Huang, Lillian Tsai, Eddie Kohler, Barbara Liskov, Liuba Shrira</span>.
<a href="/publication/sto-paper/" itemprop="name">Type-aware transactions for faster concurrent code</a>.
EuroSys ‘16,
2016.
<p>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/pdf/a31-herman.pdf" target="_blank" rel="noopener">
PDF
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="https://github.com/readablesystems/sto" target="_blank" rel="noopener">
Code
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/project/sto-project/">
Project
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
<span itemprop="author">
Hannah Blumberg, Yihe Huang, Dan King, Paola Mariselli</span>.
<a href="/publication/real_semantics/" itemprop="name">Real Semantics: Capturing Floating-point Imprecision</a>.
NENS ‘15,
2015.
<p>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/pdf/real_semantics.pdf" target="_blank" rel="noopener">
PDF
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="https://github.com/danking/real-semantics" target="_blank" rel="noopener">
Code
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/publication/pdf/real_semantics_poster.pdf" target="_blank" rel="noopener">
Poster
</a>
</p>
</div>
</div>
</div>
</div>
</section>
<section id="talks" class="home-section">
<div class="container">
<div class="row">
<div class="col-12 col-lg-4 section-heading">
<h1>Recent & Upcoming Talks</h1>
</div>
<div class="col-12 col-lg-8">
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/Event">
<i class="fas fa-calendar-alt pub-icon" aria-hidden="true"></i>
<span itemprop="name"><a href="/talk/nedb20-talk/nedb20-talk/">Opportunities for optimism in contended main-memory transactions</a></span>
<div itemprop="startDate">
Jan 27, 2020
9:00 AM
</div>
<div class="talk-metadata">
North East Database Day 2020
</div>
<div class="talk-links">
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/talk/nedb20-talk/nedb_abstract.pdf" target="_blank" rel="noopener">
PDF
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="https://docs.google.com/presentation/d/1iClIFTgAjyr4ntEYEBKzW8CfmfM_c7WApLkfGQtBFHM/edit?usp=sharing" target="_blank">
Slides
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/project/sto-project/">
Project
</a>
</div>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/Event">
<i class="fas fa-calendar-alt pub-icon" aria-hidden="true"></i>
<span itemprop="name"><a href="/talk/sosp19-src/sosp19-src/">On main-memory multicore transaction performance</a></span>
<div itemprop="startDate">
Oct 28, 2019
5:00 PM
</div>
<div class="talk-metadata">
ACM Student Research Competition at SOSP 2019
</div>
<div class="talk-links">
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/talk/sosp19-src/sosp19_src.pdf" target="_blank" rel="noopener">
PDF
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/talk/sosp19-src/SRC-presentation.odp" target="_blank">
Slides
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/project/sto-project/">
Project
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/talk/sosp19-src/sosp_src_poster.pdf" target="_blank" rel="noopener">
Poster
</a>
</div>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/Event">
<i class="fas fa-calendar-alt pub-icon" aria-hidden="true"></i>
<span itemprop="name"><a href="/talk/nens17-talk/">Improving optimistic concurrency control</a></span>
<div itemprop="startDate">
Dec 7, 2017
9:00 AM
</div>
<div class="talk-metadata">
IV New England Networking and Systems Day
</div>
<div class="talk-links">
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="https://docs.google.com/presentation/d/1Sn2EuArUG2zibQD9_1o8kfww__fMaiFlitJemsSwhPU/edit?usp=sharing" target="_blank">
Slides
</a>
<a class="btn btn-outline-primary my-1 mr-1 btn-sm" href="/project/sto-project/">
Project
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="home-section">
<div class="container">
<div class="row">
<div class="col-12 col-lg-4 section-heading">
<h1>Projects</h1>
</div>
<div class="col-12 col-lg-8">