diff --git a/_data/keynotes.yaml b/_data/keynotes.yaml new file mode 100644 index 0000000..d2b56f3 --- /dev/null +++ b/_data/keynotes.yaml @@ -0,0 +1,31 @@ +keynotes: + - title: "Migratable Objects: The evolution and journey of an idea" + speaker: "Laxmikant (Sanjay) Kale" + role: "Paul and Cynthia Saylor Professor Emeritus of Computer Science" + affiliation: "Parallel Programming Laboratory, University of Illinois" + date: "2024-06-05" + time: "9:50 AM" + image: "./assets/images/keynotes/kale.png" + abstract: | + "Migratable Objects programming model and its embodiment in systems such as Charm++, Adaptive MPI, and Charm4Py, has led to development of some highly scalable, and highly adaptive, parallel applications. We trace the beginnings of its conception in the needs of combinatorial search and logic programming applications in the early days of parallel computing. This led to concepts of message-driven execution (aka task-based models), chares (message-driven objects or a form of Actors) and migratable task-seeds. When we started addressing science and engineering applications, with their iterative structure and spatial decompositions, the Charm++ model evolved to incorporate indexed collections of Chares, and asynchronous collective communication structures over them. The persistence or predictability of load and communication patterns in such applications gave rise to dynamic load balancing capabilities by allowing the chare objects to migrate across nodes, and associated distributed location management. Advent of large multi-core nodes as well as GPGPUs didn’t change the fundamental structure of these programming models, but required simple adoption of new within-node task-handling capabilities. + + I will review the successes and failures of this model, and reflect on where it stands today. I also look at other current systems that incorporate some of the ideas from this programming model, either by independent discovery, or partially derived from Charm++. Along the way, I will posit some reflections on what makes research ideas succeed or fail, in a field such as parallel programming, which is influenced by subjective preferences and perceived advantages." + bio: | + "Professor Laxmikant Kale is the director of the Parallel Programming Laboratory and Research Professor, as well as the Paul and Cynthia Saylor Professor Emeritus of Computer Science at the University of Illinois at Urbana-Champaign.Prof. Kale has been working on various aspects of parallel computing, with a focus on enhancing performance and productivity via adaptive runtime systems, and with the belief that only interdisciplinary research involving multiple CSE and other applications can bring back well-honed abstractions into Computer Science that will have a long-term impact on the state-of-art. + His collaborations include the widely used Gordon-Bell award winning (SC 2002) biomolecular simulation program NAMD, and other collaborations on computational cosmology, quantum chemistry, rocket simulation, space-time meshes, and other unstructured mesh applications. He takes pride in his group's success in distributing and supporting software embodying his research ideas, including Charm++, Adaptive MPI and Charm4Py. He and his team won the HPC Challenge award at Supercomputing 2011, for their entry based on Charm++. Prof. Kale is a fellow of the ACM and IEEE, and a winner of the 2012 IEEE Sidney Fernbach award." + + - title: "Keynote 2" + speaker: TBA + abstract: "TBA" + bio: "TBA" + date: "2024-06-06" + time: "9:00 AM" + image: + + - title: "Keynote 3" + speaker: TBA + abstract: "TBA" + bio: "TBA" + date: "2024-06-07" + time: "9:00 AM" + image: diff --git a/_data/program.yml b/_data/program.yml index caef6b8..545c5a3 100755 --- a/_data/program.yml +++ b/_data/program.yml @@ -3,31 +3,6 @@ online: record: false url: -# keynotes: -# - title: "Keynote 1" -# speaker: TBA -# abstract: "TBA" -# bio: "TBA" -# date: "2024-06-05" -# time: "9:50 AM" -# image: - -# - title: "Keynote 2" -# speaker: TBA -# abstract: "TBA" -# bio: "TBA" -# date: "2024-06-06" -# time: "9:00 AM" -# image: - -# - title: "Keynote 3" -# speaker: TBA -# abstract: "TBA" -# bio: "TBA" -# date: "2024-06-07" -# time: "9:00 AM" -# image: - schedule: - type: wst location: Department of Computer Science diff --git a/assets/images/keynotes/kale.png b/assets/images/keynotes/kale.png new file mode 100644 index 0000000..f1ebc0c Binary files /dev/null and b/assets/images/keynotes/kale.png differ diff --git a/keynotes.html b/keynotes.html index db67224..229cc58 100644 --- a/keynotes.html +++ b/keynotes.html @@ -8,25 +8,31 @@

Keynote Speakers

- {% if site.data.program.keynotes %} + {% if site.data.keynotes.keynotes %}
- {% for keynote in site.data.program.keynotes %} -
-
- {% if keynote.image %} -
- {{ keynote.title }} -
+ {% for keynote in site.data.keynotes.keynotes %} +
+ {% if keynote.image %} +
+ {{ keynote.title }} +
+ {% endif %} +
+

{{ keynote.title }}

+

Speaker: {{ keynote.speaker }}

+ {% if keynote.role %} +

Role: {{ keynote.role }}

+ {% endif %} + {% if keynote.affiliation %} +

Affiliation: {{ keynote.affiliation }}

{% endif %} -
-

{{ keynote.title }}

-

Speaker: {{ keynote.speaker }}

-

Date: {{ keynote.date }} | Time: {{ keynote.time }}

-

Abstract:
{{ keynote.abstract }}

-

Bio:
{{ keynote.bio }}

-
+

Date: {{ keynote.date }} | Time: {{ keynote.time }}

+

Abstract:
{{ keynote.abstract }}

+

Bio:
{{ keynote.bio }}

+ {% endfor %} {% else %} {% include tba.html %}