Skip to content

Commit e042a61

Browse files
authored
Merge pull request #117 from PumasAI/maxnumlvextract32
reduce MAX_NUM_LV_EXTRACT
2 parents 8d1ecf5 + ceb63ae commit e042a61

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 = "SimpleChains"
22
uuid = "de6bee2f-e2f4-4ec7-b6ed-219cc6f6e9e5"
33
authors = ["Chris Elrod <[email protected]> and contributors"]
4-
version = "0.4.0"
4+
version = "0.4.1"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/forwarddiff_matmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dualeval!(
6868
function dualeval!(f::F, Cdual::AbstractArray) where {F}
6969
dualeval!(f, @gc_preserve(vec(Cdual)))
7070
end
71-
const MAX_NUM_LV_EXTRACT = isdefined(LoopVectorization, :EXTRACTFUNS) ? Int(length(LoopVectorization.EXTRACTFUNS)) : 14
71+
const MAX_NUM_LV_EXTRACT = isdefined(LoopVectorization, :EXTRACTFUNS) ? 32 : 14
7272
@generated function dualeval!(
7373
f::F,
7474
Cdual::AbstractVector{D},

0 commit comments

Comments
 (0)