Skip to content

Commit

Permalink
Int not Int64 (#502)
Browse files Browse the repository at this point in the history
* `Int` not `Int64`

Fixes #501

* Bump version
  • Loading branch information
chriselrod committed Jun 23, 2023
1 parent df27e4a commit 5a4d58f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LoopVectorization"
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
authors = ["Chris Elrod <[email protected]>"]
version = "0.12.161"
version = "0.12.162"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
4 changes: 2 additions & 2 deletions src/vectorizationbase_compat/contract_pass.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function mulexprcost(@nospecialize(x::ProdArg))::Int
end
end
function mul_fast_expr(
args::SubArray{Any,1,Vector{Any},Tuple{UnitRange{Int64}},true}
args::SubArray{Any,1,Vector{Any},Tuple{UnitRange{Int}},true}
)::Expr
b = Expr(:call, :mul_fast)
for i 2:length(args)
Expand All @@ -21,7 +21,7 @@ function mul_fast_expr(
b
end
function mulexpr(
mulexargs::SubArray{Any,1,Vector{Any},Tuple{UnitRange{Int64}},true}
mulexargs::SubArray{Any,1,Vector{Any},Tuple{UnitRange{Int}},true}
)::Tuple{ProdArg,ProdArg}
a = (mulexargs[1])::ProdArg
Nexpr = length(mulexargs)
Expand Down

2 comments on commit 5a4d58f

@chriselrod
Copy link
Member 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 created: JuliaRegistries/General/86104

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.12.162 -m "<description of version>" 5a4d58f66aef373371d6e0f45ecef60589952ac7
git push origin v0.12.162

Please sign in to comment.