Skip to content

Commit 31b1a49

Browse files
Merge pull request SciML#2276 from SciML/compiledfloats_dual
Allow any chunksize for CompiledFloats
2 parents 501c536 + 916476c commit 31b1a49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/OrdinaryDiffEq.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,12 @@ const CompiledFloats = Union{Float32, Float64,
116116
ForwardDiff.Dual{
117117
ForwardDiff.Tag{T, W},
118118
K,
119-
3
119+
N
120120
} where {
121121
T,
122122
W <: Union{Float64, Float32},
123-
K <: Union{Float64, Float32}
123+
K <: Union{Float64, Float32},
124+
N
124125
}}
125126

126127
import FunctionWrappersWrappers

0 commit comments

Comments
 (0)