Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jun 30, 2022
1 parent e32422d commit 2b563a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DiffEqFlux"
uuid = "aae7a2af-3d4f-5e19-a356-7da93b79d9d0"
authors = ["Chris Rackauckas <[email protected]>"]
version = "1.51.0"
version = "1.51.1"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
3 changes: 1 addition & 2 deletions src/fast_layers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ ZygoteRules.@adjoint function (f::FastDense)(x::Number,p)
tmp = typeof(bbar) <: AbstractVector ?
vec(vcat(vec(Wbar),bbar)) :
vec(vcat(vec(Wbar),sum(bbar,dims=2)))
ifgpufree(bbar)
tmp
else
vec(Wbar)
Expand Down Expand Up @@ -203,7 +202,7 @@ ZygoteRules.@adjoint function (f::FastDense)(x::AbstractVector,p)
tmp = typeof(bbar) <: AbstractVector ?
vec(vcat(vec(Wbar),bbar)) :
vec(vcat(vec(Wbar),sum(bbar,dims=2)))
ifgpufree(bbar)
!(typeof(f.σ) <: typeof(identity)) && ifgpufree(bbar)
tmp
else
vec(Wbar)
Expand Down

0 comments on commit 2b563a5

Please sign in to comment.