summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-12-06 17:56:24 -0800
committerGitHub <noreply@github.com>2023-12-06 17:56:24 -0800
commit8a1586506e9e221abf669ea30579d85349830251 (patch)
treeeae628ac9fd4768fd5412372c3d4f6b05176e8b8 /README.md
parent3e9b0ba4f0eb81f3c0685298331d434411aa7e48 (diff)
Update README.md (#3383)
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 13324e2e6..3daab29b5 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ The Slang system is designed to provide developers of real-time graphics applica
* The Slang compiler can generate code for a wide variety of targets and APIs: D3D12, Vulkan, D3D11, OpenGL, CUDA, and CPU. Slang code can be broadly portable, but still take advantage of the unique features of each platform.
-* [Automatic differentiation](https://shader-slang.com/slang/user-guide/07-autodiff.html) as a first-class language feature. Slang can automatically generate both forward and backward derivative propagation code for complex functions that involve arbitrary control flow and dynamic dispatch. This allows users to easily make existing rendering codebases differentiable, or to use Slang as the kernel language in a PyTorch driven machine learning framework via [`slangpy`](https://shader-slang.com/slang/user-guide/a1-02-slangpy.html).
+* [Automatic differentiation](https://shader-slang.com/slang/user-guide/08-autodiff.html) as a first-class language feature. Slang can automatically generate both forward and backward derivative propagation code for complex functions that involve arbitrary control flow and dynamic dispatch. This allows users to easily make existing rendering codebases differentiable, or to use Slang as the kernel language in a PyTorch driven machine learning framework via [`slangpy`](https://shader-slang.com/slang/user-guide/a1-02-slangpy.html).
* Generics and interfaces allow shader specialization to be expressed cleanly without resort to preprocessor techniques or string-pasting. Unlike C++ templates, Slang's generics are checked ahead of time and don't produce cascading error messages that are difficult to diagnose. The same generic shader can be specialized for a variety of different types to produce specialized code ahead of time, or on the fly, completely under application control.