Skip to content

Commit 9883e0f

Browse files
committed
Add more details about speakers
1 parent f3bb436 commit 9883e0f

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

_data/meetinglist.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@
55
label: caas_01Feb2024
66
agenda:
77
- title: "Exocompilation for productive programming of hardware accelerators"
8-
speaker: "Yuka Ikarashi"
8+
speaker:
9+
image: "https://media.licdn.com/dms/image/C5603AQHzxnclCX9tEw/profile-displayphoto-shrink_800_800/0/1597949617547?e=1712188800&v=beta&t=-vVNhjYV5MvUcua07Go3u6nPi43NVmPwnaIyULx8IOI"
10+
name: "Yuka Ikarashi"
11+
bio: |
12+
Yuka Ikarashi is a fourth-year PhD candidate at MIT CSAIL, advised
13+
by Jonathan Ragan-Kelley. She is interested in creating compiler
14+
systems and programming languages for real-world applications. She
15+
is a co-creator of the Exo programming language and has been a
16+
developer for other compiler frameworks such as Clang/LLVM and ROOT.
17+
She previously worked at Apple, Amazon, and CERN. She received
18+
Masason Foundation Fellowship and Funai Foundation Fellowship awards.
919
description: |
1020
High-performance kernel libraries are critical to exploiting
1121
accelerators and specialized instructions in many applications. Because

_pages/meetings.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,24 @@ or follow us on [LinkedIn](https://www.linkedin.com/groups/9579649/).</i>
4040
<ul>{% for item in meeting.agenda %}
4141
<li><strong>{{item.title}}</strong>
4242
{% if item.speaker %}
43+
{% if item.speaker.first %}
44+
({{ item.speaker.name }})
45+
{% else %}
4346
({{item.speaker}})
4447
{% endif %}
48+
{% endif %}
4549
{% if item.description %}
46-
<br/> <i>Abstract:</i>{{item.description | markdownify }}
50+
<br /> <i>Abstract:</i>{{item.description | markdownify }}
51+
{% endif %}
52+
{% if item.speaker and item.speaker.first %}
53+
<div class="row">
54+
<div class="col-md-1">
55+
<img style="border-radius:50%" width="72px" class="shadow-4-strong" alt="{{item.speaker.name}}" src="{{item.speaker.image}}" />
56+
</div>
57+
<div class="col-md-11">
58+
<i>{{item.speaker.bio}}</i>
59+
</div>
60+
</div>
4761
{% endif %}
4862
{% if item.slides %}
4963
<a style="text-decoration:none;" href="{{item.slides}}">Slides</a>

0 commit comments

Comments
 (0)