Skip to content

Commit b4424f8

Browse files
authored
Unconditional max_methods=1 (#462)
* Unconditional max_methods=1 * Bump version
1 parent 46d3333 commit b4424f8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LoopVectorization"
22
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
33
authors = ["Chris Elrod <[email protected]>"]
4-
version = "0.12.147"
4+
version = "0.12.148"
55

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

src/LoopVectorization.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
module LoopVectorization
22

3+
if isdefined(Base, :Experimental) &&
4+
isdefined(Base.Experimental, Symbol("@max_methods"))
5+
@eval Base.Experimental.@max_methods 1
6+
end
7+
38
using ArrayInterfaceCore: UpTri, LoTri
49
using Static: StaticInt, gt, static, Zero, One, reduce_tup
510
using VectorizationBase,

0 commit comments

Comments
 (0)