Skip to content
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
17 changes: 17 additions & 0 deletions examples/gridwise.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,20 @@ ul.test-list li.fail {
#large-section {
display: none;
}

.back-link {
display: inline-block;
padding: 5px 12px;
background: #39bda7;
color: white;
text-decoration: none;
border-radius: 4px;
margin-bottom: 1em;
font-size: 13px;
transition: background 0.2s;
}
.back-link:hover {
background: #2a9a87;
color: white;
text-decoration: none;
}
1 change: 1 addition & 0 deletions examples/reduce_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
/>
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Gridwise Reduce Primitive Example</h1>
<p>
This example calls Gridwise's <code>reduce</code> primitive. You can look
Expand Down
1 change: 1 addition & 0 deletions examples/reduce_perf.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css" />
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Reduce Performance</h1>
<p>
This example is a self-contained use of the <code>reduce</code>
Expand Down
1 change: 1 addition & 0 deletions examples/regression.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link rel="stylesheet" href="gridwise.css" />
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Gridwise Regression Tests</h1>
<ul id="test-list" class="test-list"></ul>
<div id="summary" class="summary">Running…</div>
Expand Down
1 change: 1 addition & 0 deletions examples/scan_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
/>
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Gridwise Scan Primitive Example</h1>
<p>
This example calls Gridwise's <code>scan</code> primitive. You can look at
Expand Down
1 change: 1 addition & 0 deletions examples/scan_pane_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link rel="stylesheet" href="gridwise.css" />
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Scan / Reduce Example, with Configuration Pane</h1>
<div id="instructions">
<p>Set your parameters in the pane and click "Start" to run and validate a WebGPU scan/reduce.</p>
Expand Down
1 change: 1 addition & 0 deletions examples/scan_sort_perf.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css" />
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Scan / Sort Performance</h1>
<p>
This example is a self-contained use of the <code>scan</code> and
Expand Down
1 change: 1 addition & 0 deletions examples/sort_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
/>
</head>
<body>
<a href="/gridwise/examples/" class="back-link">← Back to Examples</a>
<h1>Gridwise Sort Primitive Example</h1>
<p>
This example calls Gridwise's <code>sort</code> primitive. You can look at
Expand Down