Skip to content

Commit

Permalink
Merge pull request #117 from PumasAI/maxnumlvextract32
Browse files Browse the repository at this point in the history
reduce MAX_NUM_LV_EXTRACT
  • Loading branch information
chriselrod authored Oct 25, 2022
2 parents 8d1ecf5 + ceb63ae commit e042a61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SimpleChains"
uuid = "de6bee2f-e2f4-4ec7-b6ed-219cc6f6e9e5"
authors = ["Chris Elrod <[email protected]> and contributors"]
version = "0.4.0"
version = "0.4.1"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
2 changes: 1 addition & 1 deletion src/forwarddiff_matmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dualeval!(
function dualeval!(f::F, Cdual::AbstractArray) where {F}
dualeval!(f, @gc_preserve(vec(Cdual)))
end
const MAX_NUM_LV_EXTRACT = isdefined(LoopVectorization, :EXTRACTFUNS) ? Int(length(LoopVectorization.EXTRACTFUNS)) : 14
const MAX_NUM_LV_EXTRACT = isdefined(LoopVectorization, :EXTRACTFUNS) ? 32 : 14
@generated function dualeval!(
f::F,
Cdual::AbstractVector{D},
Expand Down

2 comments on commit e042a61

@chriselrod
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/71026

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.1 -m "<description of version>" e042a6122e257b08d75f93764a616b800415efc2
git push origin v0.4.1

Please sign in to comment.