-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
309 lines (300 loc) · 14.7 KB
/
index.html
File metadata and controls
309 lines (300 loc) · 14.7 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shamrock - Multi-GPU Hydrodynamics Framework</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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.4.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<img src="_static/logo.png" alt="Shamrock Logo" class="logo">
<span class="logo-text">Shamrock</span>
</div>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="talks.html">Talks</a></li>
<li><a href="https://github.com/Shamrock-code/Shamrock" class="github-btn">
<i class="fab fa-github"></i> GitHub
</a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">
An open-source, <span class="gradient-text">multi-GPU hydrodynamics framework</span> for astrophysics
</h1>
<p class="hero-subtitle">
Shamrock is a general-purpose HPC hydrodynamics simulation code focused on astrophysical applications.
The entire codebase is written in C++17, with all accelerated components implemented using SYCL, which can be compiled
directly to native CUDA, ROCm, OpenMP, OpenCL, and more. Shamrock also supports multiple GPUs and
heterogeneous clusters using MPI.
</p>
<div class="hero-buttons">
<a href="https://shamrock-code.github.io/Shamrock/mkdocs/usermanual/quickstart/" class="btn btn-primary">
<i class="fas fa-rocket"></i> Get Started
</a>
<a href="#quick-links" class="btn btn-secondary">
<i class="fas fa-book"></i> Documentation
</a>
</div>
</div>
<div class="hero-image">
<img src="_static/no_background_nocolor.png" alt="Shamrock Banner" class="banner">
<!-- Rotating Image Gallery -->
<div class="rotating-gallery">
<div class="gallery-container">
<div class="gallery-slide active">
<img src="_static/rolling_pics/disc.png" alt="Disc Simulation" class="gallery-image">
</div>
<div class="gallery-slide">
<img src="_static/rolling_pics/bardeen.png" alt="Bardeen Simulation" class="gallery-image">
</div>
<div class="gallery-slide">
<img src="_static/rolling_pics/1gcircum.png" alt="Circumstellar Simulation" class="gallery-image">
</div>
<div class="gallery-indicators">
<span class="indicator active" data-slide="0"></span>
<span class="indicator" data-slide="1"></span>
<span class="indicator" data-slide="2"></span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Performance Records -->
<section id="performance" class="performance">
<div class="container">
<h2 class="section-title">Performance Records</h2>
<div class="performance-table-container">
<table class="performance-table">
<thead>
<tr>
<th>Method</th>
<th>System Configuration</th>
<th>Performance</th>
<th>Weak Scaling Efficiency</th>
</tr>
</thead>
<tbody>
<tr>
<td>SPH (Multi-GPU)</td>
<td>Aurora<br>(24k GPU tiles)</td>
<td>223,287,132,071<br>particles per second</td>
<td>82.9%</td>
</tr>
<tr>
<td>SPH (Single GPU)</td>
<td>H100 SXM5</td>
<td>20,000,000<br>particles per second</td>
<td>—</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Quick Links -->
<section id="quick-links" class="quick-links">
<div class="container">
<div class="quick-links-grid">
<a href="https://shamrock-code.github.io/Shamrock/mkdocs/" class="quick-link-card">
<i class="fas fa-book"></i>
<h3>Main Documentation</h3>
<p>Comprehensive user documentation and guides</p>
</a>
<a href="https://shamrock-code.github.io/Shamrock/sphinx/index.html" class="quick-link-card">
<i class="fab fa-python"></i>
<h3>Python Module Doc</h3>
<p>Python bindings documentation and examples</p>
</a>
<a href="https://shamrock-code.github.io/Shamrock/sphinx/_as_gen/index.html" class="quick-link-card">
<i class="fas fa-code"></i>
<h3>Examples</h3>
<p>Browse through practical examples and use cases</p>
</a>
<a href="https://github.com/Shamrock-code/Shamrock" class="quick-link-card">
<i class="fab fa-github"></i>
<h3>GitHub Repo</h3>
<p>Source code, issues, and contributions</p>
</a>
<a href="https://shamrock-code.github.io/Shamrock/doxygen/" class="quick-link-card">
<i class="fas fa-cogs"></i>
<h3>C++ API</h3>
<p>Complete C++ API documentation and reference</p>
</a>
<a href="https://shamrock-code.github.io/Shamrock/sphinx/api.html" class="quick-link-card">
<i class="fab fa-python"></i>
<h3>Python API</h3>
<p>Complete Python API documentation and reference</p>
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="features">
<div class="container">
<h2 class="section-title">Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon purple">
<i class="fas fa-server"></i>
</div>
<h3>Multi-GPU Support</h3>
<p>Scale seamlessly from laptops to exascale supercomputers with native multi-GPU and heterogeneous cluster support using MPI.</p>
</div>
<div class="feature-card">
<div class="feature-icon lime">
<i class="fas fa-layer-group"></i>
</div>
<h3>Multi-methods</h3>
<p>Support for multiple hydrodynamics solvers including both grid-based and particle-based methods for comprehensive astrophysical simulations.</p>
</div>
<div class="feature-card">
<div class="feature-icon teal">
<i class="fas fa-atom"></i>
</div>
<h3>Astrophysical Focus</h3>
<p>Specialized for astrophysical applications with support for SPH, AMR, and other advanced hydrodynamics methods.</p>
</div>
<div class="feature-card">
<div class="feature-icon blue">
<i class="fas fa-cogs"></i>
</div>
<h3>SYCL Acceleration</h3>
<p>All accelerated components use SYCL, compiled directly to native CUDA, ROCm, OpenMP, OpenCL, and more for maximum performance.</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i class="fas fa-code"></i>
</div>
<h3>Modern C++17</h3>
<p>Built with modern C++17 standards, providing robust performance and maintainable code for scientific computing.</p>
</div>
</div>
</div>
</section>
<!-- Quick Start Section -->
<section id="quickstart" class="quickstart">
<div class="container">
<h2 class="section-title">Quick Start</h2>
<div class="quickstart-content">
<div class="quickstart-card">
<div class="quickstart-icon">
<i class="fas fa-rocket"></i>
</div>
<h3>Ready to Get Started?</h3>
<p>Follow our comprehensive quickstart guide to install Shamrock and run your first hydrodynamics simulation. The guide covers installation, device selection, and basic usage patterns.</p>
<a href="https://shamrock-code.github.io/Shamrock/mkdocs/usermanual/quickstart/" class="btn btn-primary">
<i class="fas fa-external-link-alt"></i> View Quickstart Guide
</a>
</div>
<div class="quickstart-features">
<div class="quickstart-feature">
<i class="fas fa-download"></i>
<h4>Installation</h4>
<p>Multiple installation methods: from source, Spack, Homebrew, or Docker</p>
</div>
<div class="quickstart-feature">
<i class="fas fa-microchip"></i>
<h4>Device Selection</h4>
<p>Choose between GPU and CPU devices with our device management system</p>
</div>
<div class="quickstart-feature">
<i class="fas fa-terminal"></i>
<h4>Multiple Modes</h4>
<p>Use Shamrock as an Python interpreter, Python package, or in Jupyter notebooks</p>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="community">
<div class="container">
<h2 class="section-title">Community</h2>
<div class="community-content">
<div class="community-links">
<!--<a href="https://github.com/Shamrock-code/Shamrock" class="community-card">
<i class="fab fa-github"></i>
<h3>GitHub</h3>
<p>Source code, issues, and contributions</p>
</a>-->
<a href="https://discord.gg/Q69s5buyr5" class="community-card">
<i class="fab fa-discord"></i>
<h3>Discord</h3>
<p>Join our community and get help</p>
</a>
<a href="https://github.com/Shamrock-code/Shamrock/discussions" class="community-card">
<i class="fas fa-comments"></i>
<h3>Discussions</h3>
<p>Ask questions and share ideas</p>
</a>
</div>
<div class="cta-section">
<h3>Join the Shamrock Project</h3>
<p>Contribute by reporting issues, suggesting features, or contributing code</p>
<a href="https://github.com/Shamrock-code/Shamrock" class="btn btn-primary">
<i class="fab fa-github"></i> Contribute to Shamrock
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img src="_static/logo.png" alt="Shamrock Logo" class="footer-logo-img">
<span>Shamrock</span>
</div>
<p>An open-source, multi-GPU hydrodynamics framework for astrophysics. Scales seamlessly from laptops to exascale supercomputers.</p>
<div class="social-links">
<a href="https://github.com/Shamrock-code/Shamrock" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://discord.gg/Q69s5buyr5" aria-label="Discord">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="footer-section">
<!--
<h4>Documentation</h4>
<ul>
<li><a href="https://shamrock-code.github.io/Shamrock/mkdocs/usermanual/quickstart/">Quick Start</a></li>
<li><a href="https://shamrock-code.github.io/Shamrock/mkdocs/usermanual/install/">Installation</a></li>
<li><a href="https://shamrock-code.github.io/Shamrock/mkdocs/usermanual/usage/">User Manual</a></li>
<li><a href="https://shamrock-code.github.io/Shamrock/mkdocs/usermanual/first_simulation/">First Simulation</a></li>
</ul>
-->
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Shamrock. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>