Skip to content

Commit ffe68ae

Browse files
hotfix fillarrays
1 parent 17b664c commit ffe68ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SciMLBase"
22
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
33
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com> and contributors"]
4-
version = "2.7.2"
4+
version = "2.7.3"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

ext/SciMLBaseZygoteExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ end
7777

7878
@adjoint function getindex(VA::ODESolution, i::Int)
7979
function ODESolution_getindex_pullback(Δ)
80-
Δ′ = [(i == j ? Δ : FillArrays.Fill(zero(eltype(x)), size(x)))
80+
Δ′ = [(i == j ? Δ : Zygote.FillArrays.Fill(zero(eltype(x)), size(x)))
8181
for (x, j) in zip(VA.u, 1:length(VA))]
8282
(Δ′, nothing)
8383
end

0 commit comments

Comments
 (0)