We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86f8f67 commit f6cda46Copy full SHA for f6cda46
src/calculus/Jacobian.jl
@@ -73,7 +73,7 @@ Jacobian(T::Transpose{A}, x::AbstractArray) where {A <: AbstractOperator} = T
73
#Jacobian of BroadCast
74
Jacobian(B::A, x::AbstractArray) where {A <: BroadCast} = BroadCast(Jacobian(B.A,x),B.dim_out)
75
#Jacobian of AffineAdd
76
-Jacobian(B::A, x::AbstractArray) where {A <: AffineAdd} = Jacobian(B.A,x)
+Jacobian(B::A, x) where {A <: AffineAdd} = Jacobian(B.A,x)
77
78
# Properties
79
0 commit comments