We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b114b67 commit 57cc0caCopy full SHA for 57cc0ca
docs/src/lecture_09/lab.md
@@ -60,12 +60,12 @@ The types of tangents and cotangents depend on the types of the primals. However
60
61
62
!!! warning "Exercise"
63
- ```@example labO9
+ ```@example lab09
64
using ChainRulesCore, ChainRules, ChainRulesTestUtils
65
```
66
Write custom `rrule` for following function $f(x,y) = x^2 + 3y$.
67
68
69
f1(x::T, y::T) where T<: Real = x^2 + 3*y
70
71
You can test your solution using
@@ -157,7 +157,7 @@ The functions `pool_naive` and `pool_sum` perform the same operation with the sa
157
function pool_sum_pullback(ȳ)
158
...
159
end
160
- return y, pool_custom_pullback
+ return y, pool_sum_pullback
161
162
163
0 commit comments