-
I'm running this on julia 1.7.1, with a MacOS 12.2.1, it crashes
```julia
using Enzyme
function mybackslash!(x, A, b)
x .= A \ b
nothing
end
A = rand(5, 5)
b = rand(5, 1)
x = ze…
-
I'm pretty confident this worked in September, ~~but have no idea whether changes here or in ChainRules broke it:~~ Edit -- the change is https://github.com/JuliaDiff/ChainRulesCore.jl/pull/495, discu…
-
When I bumped AbstractDifferentiation compat to 0.6 on ImplicitDifferentiation, I got type inference errors in ChainRulesTestUtils that were not there before. Probably a regression due to the latest c…
-
I am hitting the following issue :
````julia
ERROR: MethodError: no method matching __gamma_inc_inv(::ForwardDiff.Dual{...}, ::ForwardDiff.Dual{...}, ::Bool)
````
Is there somewhere an implem…
-
I'm not sure I prefer that the mode is sticky, but since it is, it'd be really nice to be able to queue a sequence of operations, and have them all applied when I switch back to the main REPL. (ignore…
-
Firstly, I'm very fond of `to_vec` -- it's served us well over the last couple of years. We know it has some shortcomings though, that we will need to address at _some_ point.
Presently we have imp…
-
In https://github.com/GTorlai/PastaQ.jl/issues/300#issuecomment-1525720876 a bug was detected that I have found to stem from a problem in the differentiation of vcat. I created a minimal example to re…
-
Zygote v0.6.41, Julia 1.7.3
MWE:
```julia
using Zygote
α, β = randn(2, 2), randn(2, 2)
g(v) = map(eachcol(v), eachcol(β)) do x, y
sum(x.*x.*y)
end |> sum
# this fails
…
-
https://github.com/ThummeTo/FMISensitivity.jl/blob/main/src/FMISensitivity.jl#L40-L42 that's not great.
-
`ERROR: BoundsError: attempt to access Tuple{} at index [0]` thrown from Zygote code when calling Flux.reset! in a Flux loss function.
Julia 1.8.0
Zygote 0.6.45
Flux v0.13.5
Test case:
```
u…