Skip to content

Commit

Permalink
Int not Int64
Browse files Browse the repository at this point in the history
Fixes #501
  • Loading branch information
chriselrod committed Jun 22, 2023
1 parent df27e4a commit 702636c
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 702636c

Please sign in to comment.