diff --git a/examples/README.md b/examples/README.md index bce1137..4c22154 100644 --- a/examples/README.md +++ b/examples/README.md @@ -8,8 +8,10 @@ In order of expertise (beginner to advanced): - hello_world - Minimal template project to get started with the gpu.cpp library. - gpu_puzzles - (WIP) Implementation of Sasha Rush's GPU puzzles https://github.com/srush/GPU-Puzzles -- raymarch - (WIP) Using the webgpu computation to implement a toy raymarcher - as an example of non-ML general purpose computation. +- render - GPU rendering of a signed distance function. +- physics - (TODO) physics demo (either flows or N replicated double pendulums) +- transformer - (TODO) a neural network transformer block computation +- autograd - (TODO) toy autograd - webgpu_intro - A minimal from-scratch example of how to use WebGPU directly without this library. This is useful to understand the code internals of gpu.cpp. diff --git a/examples/raymarch/CMakeLists.txt b/examples/render/CMakeLists.txt similarity index 100% rename from examples/raymarch/CMakeLists.txt rename to examples/render/CMakeLists.txt diff --git a/examples/raymarch/Makefile b/examples/render/Makefile similarity index 100% rename from examples/raymarch/Makefile rename to examples/render/Makefile diff --git a/examples/raymarch/run.cpp b/examples/render/run.cpp similarity index 100% rename from examples/raymarch/run.cpp rename to examples/render/run.cpp