You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An example (based on #1250) that illustrates the problem:
julia>using Enzyme, LinearAlgebra
julia>g(C, X) =sum(C \ X)
g (generic function with 1 method)
julia>g2(A, X) =g(cholesky(A * A'+ I), X)
g2 (generic function with 1 method)
julia> A =rand(2, 2);
julia> X =rand(2, 2);
julia> ∂g2_∂A =zero(A);
julia> ∂g2_∂X =zero(X);
julia>autodiff(Reverse, g2, Active, Duplicated(A, ∂g2_∂A), Duplicated(X, ∂g2_∂X))
┌ Warning: Using fallback BLAS replacements, performance may be degraded
└ @ Enzyme.Compiler ~/.julia/packages/GPUCompiler/U36Ed/src/utils.jl:59
warning: didn't implement memmove, using memcpy as fallback which can result in errors
((nothing, nothing),)
An example (based on #1250) that illustrates the problem:
but
The text was updated successfully, but these errors were encountered: