File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ the elements of arrays in-place (e.g. setting values with x .= ...)
3333Possible fixes:
3434- avoid mutating operations (preferred)
3535- or read the documentation and solutions for this error
36- https: // fluxml. ai/ Zygote. jl/ dev / limitations. html # Array-mutation
36+ https: // fluxml. ai/ Zygote. jl/ latest / limitations
3737
3838Stacktrace:
3939 ...
@@ -94,7 +94,7 @@ julia> gradient(rand(3)) do x
9494 end
9595ERROR: Compiling Tuple{typeof (tryme), Vector{Float64}}: try / catch is not supported.
9696Refer to the Zygote documentation for fixes.
97- https: // fluxml. ai/ Zygote. jl/ dev / limitations. html # try-catch-statements-1
97+ https: // fluxml. ai/ Zygote. jl/ latest / limitations
9898
9999Stacktrace:
100100 ...
@@ -116,7 +116,7 @@ julia> jclock(2)
116116julia> gradient (jclock, rand ())
117117ERROR: Can' t differentiate foreigncall expression
118118You might want to check the Zygote limitations documentation.
119- https: // fluxml. ai/ Zygote. jl/ dev / limitations. html
119+ https: // fluxml. ai/ Zygote. jl/ latest / limitations
120120
121121Stacktrace:
122122 ...
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ function instrument(ir::IR)
120120 elseif isexpr (ex, :enter , :leave )
121121 error (""" try/catch is not supported.
122122 Refer to the Zygote documentation for fixes.
123- https://fluxml.ai/Zygote.jl/dev /limitations.html#Try-catch-statements-1
123+ https://fluxml.ai/Zygote.jl/latest /limitations
124124 """ )
125125 elseif isexpr (ex, :(= ))
126126 @assert ex. args[1 ] isa GlobalRef
@@ -283,7 +283,7 @@ function adjoint(pr::Primal)
283283 push! (rb, stmt (xcall (Base, :error , """
284284 Can't differentiate $(ex. head) expression.
285285 You might want to check the Zygote limitations documentation.
286- https://fluxml.ai/Zygote.jl/dev /limitations.html
286+ https://fluxml.ai/Zygote.jl/latest /limitations
287287 """ ),
288288 line = b[v]. line))
289289 else # A literal value
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ the elements of arrays in place (e.g. setting values with x .= ...)
7575Possible fixes:
7676- avoid mutating operations (preferred)
7777- or read the documentation and solutions for this error
78- https://fluxml.ai/Zygote.jl/dev /limitations.html#Array-mutation-1
78+ https://fluxml.ai/Zygote.jl/latest /limitations
7979""" )
8080
8181@adjoint! setindex! (xs:: AbstractArray , x... ) = setindex! (xs, x... ),
You can’t perform that action at this time.
0 commit comments