summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-02-05 16:15:21 -0800
committerGitHub <noreply@github.com>2024-02-05 16:15:21 -0800
commit71439f700b845e8d8336041c6d6824f01b7c9067 (patch)
tree5664ce2d577a79043f723ee8c3061d863f092d5e /README.md
parent6dca7e39292e6c5672440f6f1dbfb204a79b90d2 (diff)
Add documentation on capability system. (#3549)
Fixes #3454.
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 55299f2d3..e2e31dbf7 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/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).
+* [Automatic differentiation](https://shader-slang.com/slang/user-guide/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.