Skip to content

Commit 56ecbf0

Browse files
committed
Update intro
1 parent dca5709 commit 56ecbf0

File tree

7 files changed

+58
-34
lines changed

7 files changed

+58
-34
lines changed

_data/papers.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
authors: [
33
"jeehoon.kang",
44
]
5-
venue: "Department of Computer Science and Engineering, Seoul National University, Korea (**Ph.D. Dissertation**)"
5+
venue: "Department of Computer Science and Engineering, Seoul National University, Korea"
6+
venue_short: "Ph.D. Dissertation"
67
year: 2019
78

89
copy_local: https://sf.snu.ac.kr/jeehoon.kang/thesis/jeehoon.kang.phd.thesis.pdf
@@ -16,7 +17,8 @@
1617
"Sung-Hwan Lee",
1718
"Chung-Kil Hur",
1819
]
19-
venue: "ACM SIGPLAN conference on Programming Languages Design and Implementation (**PLDI**)"
20+
venue: "ACM SIGPLAN conference on Programming Languages Design and Implementation"
21+
venue_short: "PLDI"
2022
year: 2019
2123
status: conditionally accepted
2224

@@ -38,7 +40,8 @@
3840
"Kwangkeun Yi",
3941
]
4042
cofirst_authors: [1, 2, 3]
41-
venue: "ACM SIGPLAN conference on Programming Languages Design and Implementation (**PLDI**)"
43+
venue: "ACM SIGPLAN conference on Programming Languages Design and Implementation"
44+
venue_short: "PLDI"
4245
year: 2018
4346

4447
copy_local: https://sf.snu.ac.kr/publications/crellvm.pdf
@@ -53,7 +56,8 @@
5356
"Chung-Kil Hur",
5457
"Derek Dreyer",
5558
]
56-
venue: "ACM SIGPLAN conference on Programming Languages Design and Implementation (**PLDI**)"
59+
venue: "ACM SIGPLAN conference on Programming Languages Design and Implementation"
60+
venue_short: "PLDI"
5761
year: 2017
5862
status: "**Distinguished Paper Award**"
5963

@@ -69,7 +73,8 @@
6973
"Viktor Vafeiadis",
7074
"Derek Dreyer",
7175
]
72-
venue: "ACM SIGPLAN Symposium on Principles of Programming Languages (**POPL**)"
76+
venue: "ACM SIGPLAN Symposium on Principles of Programming Languages"
77+
venue_short: "POPL"
7378
year: 2017
7479

7580
copy_local: https://sf.snu.ac.kr/publications/promising.pdf
@@ -84,7 +89,8 @@
8489
"Derek Dreyer",
8590
"Viktor Vafeiadis",
8691
]
87-
venue: "ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (**POPL**)"
92+
venue: "ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages"
93+
venue_short: "POPL"
8894
year: 2016
8995

9096
copy_local: https://sf.snu.ac.kr/publications/sepcompcert.pdf
@@ -100,7 +106,8 @@
100106
"Steve Zdancewic",
101107
"Viktor Vafeiadis",
102108
]
103-
venue: "ACM SIGPLAN Conference on Programming Languages Design and Implementation (**PLDI**)"
109+
venue: "ACM SIGPLAN Conference on Programming Languages Design and Implementation"
110+
venue_short: "PLDI"
104111
year: 2015
105112

106113
copy_local: https://sf.snu.ac.kr/publications/intptrcast.pdf
@@ -117,7 +124,8 @@
117124
"jeehoon.kang",
118125
"Kwangkeun Yi",
119126
]
120-
venue: "ACM Transactions on Programming Languages and Systems Volume 36, Issue 3 (**TOPLAS**)"
127+
venue: "ACM Transactions on Programming Languages and Systems Volume 36, Issue 3"
128+
venue_short: "TOPLAS"
121129
year: 2014
122130

123131
copy_publisher: https://dl.acm.org/citation.cfm?id=2590811

_includes/person_contact.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{%- assign person_id = include.person_id %}
2+
{%- assign person = site.data.people | where:"id",person_id | sample %}
3+
4+
5+
#### Contact
6+
7+
- Email: [{{ person.id }}@kaist.ac.kr](mailto:{{ person.id }}@kaist.ac.kr)
8+
- GitHub: [{{ person.github }}](https://github.com/{{ person.github }})
9+
- [DBLP]({{ person.dblp }}) [Google Scholar]({{ person.google_scholar }})
10+
- Place: {{ person.place }}

_includes/person_education.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{%- assign person_id = include.person_id %}
2+
{%- assign person = site.data.people | where:"id",person_id | sample %}
3+
4+
5+
#### Education
6+
7+
{% for education in person.educations %}
8+
- {{ education }}
9+
{% endfor %}

_includes/person_header.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,4 @@
22
{%- assign person = site.data.people | where:"id",person_id | sample %}
33

44

5-
## <a name="{{ person.id }}"></a> {{ person.name }} / {{ person.korean_name }} ({{ person.title }})
6-
7-
8-
#### Contact <img align="right" style="width: 25%;" src="{{ site.baseurl}}/assets/{{ person.id }}.jpg" alt="{{ person.name }}">
9-
10-
11-
- Email: [{{ person.id }}@kaist.ac.kr](mailto:{{ person.id }}@kaist.ac.kr)
12-
- GitHub: [{{ person.github }}](https://github.com/{{ person.github }})
13-
- [DBLP]({{ person.dblp }}) [Google Scholar]({{ person.google_scholar }})
14-
- Place: {{ person.place }}
15-
16-
17-
#### Education
18-
19-
{% for education in person.educations %}
20-
- {{ education }}
21-
{% endfor %}
5+
## <a name="{{ person.id }}"></a> {{ person.name }} / {{ person.korean_name }} ({{ person.title }}) <img align="right" style="width: 25%;" src="{{ site.baseurl}}/assets/{{ person.id }}.jpg" alt="{{ person.name }}">

_includes/publications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
{{ author_links | join: ", " }}{% if paper.cofirst_authors %} (\*: co-first authors in alphabetical order){% endif %}.
2020

21-
{{ paper.venue }}, **{{ paper.year }}**{% if paper.status %} ({{ paper.status }}){% endif %}.
21+
**({% if paper.venue_short %}{{ paper.venue_short }} {% endif %}{{ paper.year }})** {{ paper.venue }}{% if paper.status %} ({{ paper.status }}){% endif %}.
2222

2323
{% if paper.copy_local %}\[[paper]({{ paper.copy_local }})\]{% endif %}
2424
{% if paper.website %}\[[project page]({{ paper.website }})\]{% endif %}

index.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ excerpt: "Where theory meets practice"
1010
{% assign pi_url = pi_url | strip %}
1111

1212
Welcome to Concurrency and Parallelism Laboratory at [KAIST](https://www.kaist.ac.kr) [School of
13-
Computing](https://cs.kaist.ac.kr). We are designing and verifying concurrent and parallel software
14-
and hardware that greatly improve performance and significantly reduce power consumption.
13+
Computing](https://cs.kaist.ac.kr). We are designing concurrent and parallel systems that greatly
14+
improve performance and significantly reduce power consumption, thereby serving as the basis for the
15+
next-generation massive data processing.
1516

16-
**We are actively recruiting motivated students of all levels interested in concurrency,
17-
parallelism, verification, and compiler.** If interested, please send an email to {{ pi_url }}.
17+
**We are actively recruiting motivated students of all levels interested in designing concurrent and
18+
parallel systems,** ranging from (hardware) caches to garbage collectors to deep learning
19+
accelerators. If interested, please send an email to {{ pi_url }}.
1820

1921

2022

@@ -47,10 +49,11 @@ parallelism, verification, and compiler.** If interested, please send an email t
4749

4850
## Research
4951

50-
We are designing and verifying concurrent and parallel software and hardware that greatly improve
51-
performance and significantly reduce power consumption. Our general strategy in attacking this goal
52-
is to discover the underlying principles and to develop formal methods. Specifically, we are working
53-
on or going to work on the following projects:
52+
We are designing concurrent and parallel systems that greatly improve performance and significantly
53+
reduce power consumption, thereby serving as the basis for the next-generation massive data
54+
processing. Our general strategy in attacking this goal is (1) to holistically understand computer
55+
systems from microarchitectures to algorithms, and (2) to develop abstraction layers that realize
56+
the intrinsic parallelism of the workloads. Specifically, we are working on the following projects:
5457

5558
- **Designing concurrent systems**: It is difficult to develop efficient and yet safe concurrent
5659
software/hardware, because efficient systems should allow concurrent accesses from multiple

jeehoon.kang.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ excerpt: "Jeehoon Kang's website"
77

88
{% include person_header.md person_id=person_id %}
99

10+
I am an Assistant Professor at [KAIST School of Computing](https://cs.kaist.ac.kr) and the Principal
11+
Investigator of [Concurrency and Parallelism Laboratory](https://cp.kaist.ac.kr). I received my
12+
Ph.D. from Seoul National University under the supervision of [Prof. Chung-Kil
13+
Hur](https://sf.snu.ac.kr/gil.hur). I am interested in concurrency and parallelism broadly
14+
construed, from microarchitectures to programming languages to algorithms, since concurrency and
15+
parallelism are at the heart of massive data processing.
16+
17+
{% include person_contact.md person_id=person_id %}
18+
{% include person_education.md person_id=person_id %}
19+
1020

1121
#### Experiences
1222

0 commit comments

Comments
 (0)