Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated layout to fit mobile #3

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 43 additions & 18 deletions index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,49 @@
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<table>
<tbody>
<tr>
<td class="bio">
<h1 class="name center">Pratyush Das</h1>
<div class="email center">[email protected]</div>
<p>I am a PhD student in Computer Science at Purdue University studying compilers, advised by Professor <a href="https://engineering.purdue.edu/~milind/">Milind Kulkarni</a>.</p>
<p>My research interests lie in using staging compilers to improve the performance of high performance systems. I have looked at improving the performance of operations over files stored in distributed file systems (<a href="https://www.usenix.org/system/files/nsdi23-mustafa.pdf">NSDI'23</a>, <a href="https://www.cs.purdue.edu/homes/rompf/papers/das-gpce24.pdf">GPCE'24</a>), and am currently looking into further extending the idea to speed up sparse tensor computations.</p>
<p>During the summer of 2023, I interned at Apple, working on a custom target and runtime for the Swift programming language.</p>
<p>As an undergrad, I interned with Princeton University for multiple years, working on software for High Energy Physics. During this period, I was a core developer of two software projects that found significant adoption in the Physics community - <a href=https://awkward-array.org/quickstart.html>Awkward Array</a>, a library for irregularly shaped tensor computations, and <a href="https://uproot.readthedocs.io/en/latest/">uproot</a>, a Python re-implementation of I/O for Physics data motivated by interoperability with other existing Python packages. I also made significant contributions to the following LLVM based projects: <a href="https://enzyme.mit.edu/">Enzyme</a>, <a href="https://root.cern/cling/">Cling</a> and <a href="https://clang.llvm.org/">Clang</a>.
<p>My CV can be found <a href=https://github.com/reikdas/CV/raw/master/academic-cv.pdf>here</a>.
</td>
<td class="photo">
<img src="assets/photo.png" width="100%" height="100%">
</td>
</tr>
</tbody>
</table>
<div class="header">
<h1 class="name" style="width: 100%; text-align: center">Pratyush Das</h1>
<div class="email" style="width: 100%; text-align: center">[email protected]</div>
</div>

<div class="bio">
<p style="width:65%">
I am a PhD student in Computer Science at Purdue University
studying compilers, advised by Professor
<a href="https://engineering.purdue.edu/~milind/">Milind Kulkarni</a>.
<br/> <br/>
My research interests lie in using staging compilers to improve the
performance of high performance systems. I have looked at improving the
performance of operations over files stored in distributed file systems
(<a href="https://www.usenix.org/system/files/nsdi23-mustafa.pdf">NSDI'23</a>,
<a href="https://www.cs.purdue.edu/homes/rompf/papers/das-gpce24.pdf">GPCE'24</a>)
and I am currently looking into further extending the idea to speed up
sparse tensor computations.
<br/><br/>
During the summer of 2023, I interned
at Apple, working on a custom target and runtime for the Swift
programming language.

As an undergrad, I interned with Princeton University for multiple
years, working on software for High Energy Physics. During this period,
I was a core developer of two software projects that found
significant adoption in the Physics community -
<a href=https://awkward-array.org/quickstart.html>Awkward Array</a> (library for irregularly shaped tensor computations) and
<a href="https://uproot.readthedocs.io/en/latest/">uproot</a> (Python
re-implementation of I/O for physics motivated by interoperability
with other existing Python packages). I also made significant contributions
to the following LLVM based projects:
<a href="https://enzyme.mit.edu/">Enzyme</a>,
<a href="https://root.cern/cling/">Cling</a> and
<a href="https://clang.llvm.org/">Clang</a>.
<br/><br/>
My CV can be found
<a href=https://github.com/reikdas/CV/raw/master/academic-cv.pdf>here</a>.
</p>
<p style="width: 35%; text-align: center">
<img src="assets/photo.png" style="width:80%;"/>
</p>
</div>
<h2>Publications</h2>
<ul class="publications">
{% for pub in publications %}
Expand Down
23 changes: 15 additions & 8 deletions src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ td {
}

.bio {
padding-right: 2.5%;
width: 63%;
vertical-align: center;
display: flex;
flex-flow: wrap;
align-items: center;
justify-content: center;
}

.photo {
padding-left: 2.5%;
height: 20em;
width: 30%;
@media (max-width: 800px) {
.bio {
flex-direction: column-reverse;
}
}

.self-author {
@include bold;
}
Expand Down Expand Up @@ -98,3 +98,10 @@ ul {
list-style-type: circle;
margin-left: 13px;
}

.header {
display: flex;
flex-flow: wrap;
align-items: center;
justify-content: center;
}
Loading