Skip to content
Open
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
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ <h1>
<h1 id="title"></h1>
<a id="src" target="_blank" rel="noreferrer" href="">View source!</a>
&mdash; <a id="standalone" target="_blank" rel="noreferrer" href="">View as standalone webpage</a>
<p id="description"></p>
<p id="description">
</p>
</div>
<div class="sampleContainer"></div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions public/css/MainLayout.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,7 @@ search {

}

#description ul {
padding-left: 15px;
}

10 changes: 9 additions & 1 deletion sample/particleLife/meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
const description = `\
This example demonstrates how to simulate large numbers of particles using a few spatial partitioning methods.
* **Atomic Linked Lists**: Each cell atomically maintains a linked list of resident particles.
* **Counting Sort**: Sorts particles by computing their cell's start offset with a prefix sum.
* **Prefix Sum**: Optimized Counting Sort using a parallel prefix sum with subgroup operations.
* **NSquared**: No spatial sorting, each particle evaluates the forces of every other particle.
`;

export default {
name: 'Particle Life',
description: `This example demonstrates how to simulate large numbers of particles using a few spatial partitioning methods.`,
description: description,
filename: __DIRNAME__,
external: {
url: 'https://gpu-life.silverspace.io?sample',
Expand Down
Loading