Skip to content

Commit 9918793

Browse files
committed
fix docs
1 parent 3ff0335 commit 9918793

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

docs/Manifest.toml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# This file is machine-generated - editing it directly is not advised
22

3+
[[ANSIColoredPrinters]]
4+
git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c"
5+
uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"
6+
version = "0.0.1"
7+
38
[[ArgTools]]
49
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
510

@@ -11,15 +16,15 @@ uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
1116

1217
[[ChainRulesCore]]
1318
deps = ["Compat", "LinearAlgebra", "SparseArrays"]
14-
git-tree-sha1 = "0b0aa9d61456940511416b59a0e902c57b154956"
19+
git-tree-sha1 = "f53ca8d41e4753c41cdafa6ec5f7ce914b34be54"
1520
uuid = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
16-
version = "0.10.12"
21+
version = "0.10.13"
1722

1823
[[ChainRulesTestUtils]]
1924
deps = ["ChainRulesCore", "Compat", "FiniteDifferences", "LinearAlgebra", "Random", "Test"]
2025
path = ".."
2126
uuid = "cdddcdb0-9152-4a09-a978-84456f9df70a"
22-
version = "0.7.13"
27+
version = "1.0.0-DEV"
2328

2429
[[Compat]]
2530
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "SHA", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"]
@@ -46,20 +51,20 @@ uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
4651
version = "0.8.5"
4752

4853
[[Documenter]]
49-
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
50-
git-tree-sha1 = "47f13b6305ab195edb73c86815962d84e31b0f48"
54+
deps = ["ANSIColoredPrinters", "Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
55+
git-tree-sha1 = "95265abf7d7bf06dfdb8d58525a23ea5fb0bdeee"
5156
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
52-
version = "0.27.3"
57+
version = "0.27.4"
5358

5459
[[Downloads]]
5560
deps = ["ArgTools", "LibCURL", "NetworkOptions"]
5661
uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
5762

5863
[[FiniteDifferences]]
5964
deps = ["ChainRulesCore", "LinearAlgebra", "Printf", "Random", "Richardson", "StaticArrays"]
60-
git-tree-sha1 = "12417e4754486a547d98d65293dc0fafdfcc0736"
65+
git-tree-sha1 = "18761c465ef2e87d9091c0fefb61f70d532d4cc0"
6166
uuid = "26cc04aa-876d-5657-8c51-4c34ba976000"
62-
version = "0.12.14"
67+
version = "0.12.16"
6368

6469
[[IOCapture]]
6570
deps = ["Logging", "Random"]
@@ -167,9 +172,9 @@ uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
167172

168173
[[StaticArrays]]
169174
deps = ["LinearAlgebra", "Random", "Statistics"]
170-
git-tree-sha1 = "a43a7b58a6e7dc933b2fa2e0ca653ccf8bb8fd0e"
175+
git-tree-sha1 = "1b9a0f17ee0adde9e538227de093467348992397"
171176
uuid = "90137ffa-7385-5640-81b9-e52037218182"
172-
version = "1.2.6"
177+
version = "1.2.7"
173178

174179
[[Statistics]]
175180
deps = ["LinearAlgebra", "SparseArrays"]

docs/src/index.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ Keep this in mind when testing discontinuous rules for functions like [ReLU](htt
5959
julia> using ChainRulesTestUtils;
6060
6161
julia> test_frule(two2three, 3.33, -7.77);
62-
Test Summary: | Pass Total
63-
test_frule: two2three on Float64,Float64 | 6 6
62+
6463
6564
```
6665

@@ -71,8 +70,7 @@ The call will test the `rrule` for function `f` at the point `x`, and similarly
7170

7271
```jldoctest ex
7372
julia> test_rrule(two2three, 3.33, -7.77);
74-
Test Summary: | Pass Total
75-
test_rrule: two2three on Float64,Float64 | 8 8
73+
7674
7775
```
7876

@@ -99,13 +97,11 @@ with the `frule` and `rrule` defined with the help of `@scalar_rule` macro
9997
call.
10098
```jldoctest ex
10199
julia> test_scalar(relu, 0.5);
102-
Test Summary: | Pass Total
103-
test_scalar: relu at 0.5 | 10 10
100+
104101
105102
106103
julia> test_scalar(relu, -0.5);
107-
Test Summary: | Pass Total
108-
test_scalar: relu at -0.5 | 10 10
104+
109105
110106
```
111107

0 commit comments

Comments
 (0)