summaryrefslogtreecommitdiffstats
path: root/docs/user-guide
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-03-15 23:31:09 -0700
committerGitHub <noreply@github.com>2023-03-15 23:31:09 -0700
commite960534a5b5a26a2b6d6c27586fc2dad88594b93 (patch)
tree025d3b9e0c7e5742fdc900ac6c0646b2d2cffc64 /docs/user-guide
parentf7431f96e1cad2a68534bebc1f25cd6f65f87f82 (diff)
Update 07-autodiff.md
Diffstat (limited to 'docs/user-guide')
-rw-r--r--docs/user-guide/07-autodiff.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user-guide/07-autodiff.md b/docs/user-guide/07-autodiff.md
index caa29aa35..6d26d8134 100644
--- a/docs/user-guide/07-autodiff.md
+++ b/docs/user-guide/07-autodiff.md
@@ -156,8 +156,8 @@ In addition, a differentiable type must define the `zero` value of its derivativ
### Builtin Differentiable Types
The following builtin types are differentiable:
-- Scalars: `float`, `half`.
-- Vector/Matrix: `vector` and `matrix` of `float` and `half` types.
+- Scalars: `float`, `double` and `half`.
+- Vector/Matrix: `vector` and `matrix` of `float`, `double` and `half` types.
- Arrays: `T[n]` is differentiable if `T` is differentiable.
### User Defined Differentiable Types