-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
213 lines (192 loc) · 10.4 KB
/
index.html
File metadata and controls
213 lines (192 loc) · 10.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zirui Wang - Academic Homepage</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">Zirui Wang</div>
<div class="nav-menu" id="nav-menu">
<a href="#home" class="nav-link">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#news" class="nav-link">News</a>
<a href="#publications" class="nav-link">Publications</a>
</div>
<div class="nav-toggle" id="nav-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-container">
<div class="hero-content">
<div class="hero-text">
<h1 class="hero-title">
<span class="typing-animation">Hello, I'm Zirui Wang</span>
</h1>
<p class="hero-subtitle">2nd-year PhD Student in Computer Science</p>
<p class="hero-description">
Research interests in machine learning systems and storage systems.
Working on building efficient and scalable systems for next-generation data-intensive applications.
</p>
<div class="hero-buttons">
<a href="#publications" class="btn btn-primary">View Publications</a>
<a href="./CV.pdf" class="btn btn-secondary" target="_blank">View CV</a>
</div>
</div>
<div class="hero-image">
<div class="profile-card">
<div class="profile-image">
<img src="./portrait.jpg" alt="Zirui Wang">
</div>
<div class="profile-info">
<h3>Zirui Wang</h3>
<p>CS PhD Student</p>
<div class="social-links">
<a href="mailto:eeb9sd@virginia.edu" class="social-link"><i class="fas fa-envelope"></i></a>
<a href="https://scholar.google.com/citations?user=LgRnfRAAAAAJ&hl=en" class="social-link"><i class="ai ai-google-scholar-square"></i></a>
<a href="https://github.com/JerryW35" class="social-link"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/zirui-wang-7665aa336/" class="social-link"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="scroll-indicator">
<span></span>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-text">
<p>
I am a PhD student in Computer Science at the University of Virginia, working under the supervision of <a href="https://tddg.github.io/" target="_blank">Prof. Yue Cheng</a> in the <a href="https://ds2-lab.github.io/" target="_blank">DS2 Lab</a>.
My research interests include machine learning systems, cache systems, and distributed systems.
I am dedicated to building efficient and scalable systems for next-generation data-intensive applications.
</p>
<p>
My research focuses on addressing challenges in real-world storage systems, driven by the complexities of modern
data-intensive computer systems. I am particularly interested in serverless AI, storage systems for AI, and serverless computing
using an end-to-end approach that spans applications, middleware, platforms, and low-level operating systems.
</p>
</div>
<div class="education">
<h3>Education</h3>
<div class="education-item">
<div class="education-year">2024 - Present</div>
<div class="education-details">
<h4>PhD in Computer Science</h4>
<p>University of Virginia</p>
</div>
</div>
<div class="education-item">
<div class="education-year">2022 - 2024</div>
<div class="education-details">
<h4>MS in Computer Science</h4>
<p>Boston University</p>
</div>
</div>
<div class="education-item">
<div class="education-year">2018 - 2022</div>
<div class="education-details">
<h4>BS in Computer Science</h4>
<p>Hangzhou Dianzi University</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- News Section -->
<section id="news" class="section section-alt">
<div class="container">
<h2 class="section-title">News</h2>
<div class="news-timeline-wrapper">
<div id="news-container" class="news-timeline">
<!-- News items will be loaded from news_data.js -->
</div>
<div id="news-toggle-container" class="news-toggle-wrapper" style="display: none;">
<button id="news-toggle-btn" class="btn btn-secondary">Show More</button>
</div>
</div>
</div>
</section>
<!-- Publications Section -->
<section id="publications" class="section">
<div class="container">
<h2 class="section-title">Publications</h2>
<div class="publications-container">
<div class="publication-item">
<div class="publication-year">2025</div>
<div class="publication-content">
<h3>"Efficient and Workload-Aware LLM Serving via Runtime Layer Swapping and KV Cache Resizing"</h3>
<p class="authors">Zhaoyuan Su, Tingfeng Lan, <strong>Zirui Wang</strong>, Juncheng Yang, Yue Cheng</p>
<p class="venue">Preprint</p>
<div class="publication-links">
<a href="https://www.arxiv.org/abs/2506.02006" class="pub-link">PDF</a>
</div>
</div>
</div>
<div class="publication-item">
<div class="publication-year">2025</div>
<div class="publication-content">
<h3>"Towards Efficient LLM Storage Reduction via Tensor Deduplication and Delta Compression"</h3>
<p class="authors"><strong>Zirui Wang</strong>, Tingfeng Lan, Zhaoyuan Su, Juncheng Yang, Yue Cheng</p>
<p class="venue">23rd USENIX Symposium on Networked Systems Design and Implementation (NSDI 2026)</p>
<div class="publication-links">
<a href="https://arxiv.org/abs/2505.06252" class="pub-link">PDF</a>
</div>
</div>
</div>
<div class="publication-item">
<div class="publication-year">2024</div>
<div class="publication-content">
<h3>"Everything You Always Wanted to Know About Storage Compressibility of Pre-Trained ML Models but Were Afraid to Ask"</h3>
<p class="authors">Zhaoyuan Su, Ammar Ahmed, <strong>Zirui Wang</strong>, Ali Anwar, Yue Cheng</p>
<p class="venue">50th International Conference on Very Large Data Bases (VLDB 2024)</p>
<div class="publication-links">
<a href="https://arxiv.org/abs/2402.13429" class="pub-link">PDF</a>
</div>
</div>
</div>
<div class="publication-item">
<div class="publication-year">2021</div>
<div class="publication-content">
<h3>"Temporal Cue Guided Video Highlight Detection with Low-Rank Audio-Visual Fusion"</h3>
<p class="authors">Qinghao Ye*, Xiyue Shen*, Yuan Gao*, <strong>Zirui Wang</strong>*, Qi Bi, Ping Li, Guang Yang</p>
<p class="venue">International Conference on Computer Vision (ICCV 2021)</p>
<div class="publication-links">
<a href="https://openaccess.thecvf.com/content/ICCV2021/papers/Ye_Temporal_Cue_Guided_Video_Highlight_Detection_With_Low-Rank_Audio-Visual_Fusion_ICCV_2021_paper.pdf" class="pub-link">PDF</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 Zirui Wang. All rights reserved.</p>
<div class="clustrmap-wrapper">
<script type="text/javascript" id="clustrmaps" src="//clustrmaps.com/map_v2.js?d=jgvG1Cz5n6A4qeQr02pL8lp-TmS6aqfLnJ4dw1TuKX0&cl=ffffff&w=a"></script>
</div>
</div>
</footer>
<script src="news_data.js"></script>
<script src="script.js"></script>
</body>
</html>