diff --git a/examples/gridwise.css b/examples/gridwise.css index e02ced6..d059d29 100644 --- a/examples/gridwise.css +++ b/examples/gridwise.css @@ -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; +} diff --git a/examples/reduce_example.html b/examples/reduce_example.html index 56803fd..08c5827 100644 --- a/examples/reduce_example.html +++ b/examples/reduce_example.html @@ -10,6 +10,7 @@ />
+ ← Back to Examples
This example calls Gridwise's reduce primitive. You can look
diff --git a/examples/reduce_perf.html b/examples/reduce_perf.html
index af800f5..2e77432 100644
--- a/examples/reduce_perf.html
+++ b/examples/reduce_perf.html
@@ -7,6 +7,7 @@
This example is a self-contained use of the reduce
diff --git a/examples/regression.html b/examples/regression.html
index 652d2aa..0d9b762 100644
--- a/examples/regression.html
+++ b/examples/regression.html
@@ -6,6 +6,7 @@
This example calls Gridwise's scan primitive. You can look at
diff --git a/examples/scan_pane_example.html b/examples/scan_pane_example.html
index 0dddf56..0815da9 100644
--- a/examples/scan_pane_example.html
+++ b/examples/scan_pane_example.html
@@ -6,6 +6,7 @@
Set your parameters in the pane and click "Start" to run and validate a WebGPU scan/reduce.
diff --git a/examples/scan_sort_perf.html b/examples/scan_sort_perf.html index 4c401a8..2e6fa5d 100644 --- a/examples/scan_sort_perf.html +++ b/examples/scan_sort_perf.html @@ -7,6 +7,7 @@ + ← Back to Examples
This example is a self-contained use of the scan and
diff --git a/examples/sort_example.html b/examples/sort_example.html
index 9bbd7f4..45f996d 100644
--- a/examples/sort_example.html
+++ b/examples/sort_example.html
@@ -10,6 +10,7 @@
/>
This example calls Gridwise's sort primitive. You can look at