summaryrefslogtreecommitdiffstats
path: root/docs/user-guide
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-12-06 17:57:28 -0800
committerGitHub <noreply@github.com>2023-12-06 17:57:28 -0800
commit9903688ccc0793259d43f95cae88bd1a8e178824 (patch)
treef648c7695537fda8b695d5a59f7b7f863998ff38 /docs/user-guide
parent8a1586506e9e221abf669ea30579d85349830251 (diff)
Update autodiff doc links.
Diffstat (limited to 'docs/user-guide')
-rw-r--r--docs/user-guide/a1-02-slangpy.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/user-guide/a1-02-slangpy.md b/docs/user-guide/a1-02-slangpy.md
index 8def87cea..b704e215a 100644
--- a/docs/user-guide/a1-02-slangpy.md
+++ b/docs/user-guide/a1-02-slangpy.md
@@ -153,7 +153,7 @@ print(output_grad)
`slangpy` also binds the forward-mode version of your kernel (propagate derivatives of inputs to the output) which can be invoked the same way using `module.square.fwd()`
-You can refer to [this documentation](07-autodiff.md) for a detailed reference of Slang's automatic differentiation feature.
+You can refer to [this documentation](08-autodiff.md) for a detailed reference of Slang's automatic differentiation feature.
### Wrapping your kernels as pytorch functions
@@ -452,7 +452,7 @@ in the `inputGradToPropagateTo` tensor. Therefore, after running `boxFilter_bwd`
back propagated derivative values.
Again, to understand all the details of the automatic differentiation system, please refer to the
-[Automatic Differentiation](07-autodiff.md) chapter for a detailed explanation.
+[Automatic Differentiation](08-autodiff.md) chapter for a detailed explanation.
## Manually binding kernels
`[AutoPyBindCUDA]` works for most use cases, but in certain situations, it may be necessary to write the *host* function by hand. The host function can also be written in Slang, and `slangpy` handles its compilation to C++.
@@ -805,4 +805,4 @@ Calling `myFunc` from python will result in a python tuple in the form of
[[tensor, tensor, tensor], float]
```
-The same transform rules apply to parameter types. \ No newline at end of file
+The same transform rules apply to parameter types.