Skip to content

Commit 7e21d88

Browse files
committed
Fix precompile
1 parent 8746442 commit 7e21d88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ function _precompile_()
233233
Base.precompile(Tuple{typeof(contract!),Expr,Expr,Int,Nothing}) # time: 0.001449395
234234
Base.precompile(Tuple{typeof(tryrefconvert),LoopSet,Expr,Int,Symbol}) # time: 0.001434435
235235
Base.precompile(Tuple{typeof(gespf1),StridedPointer{Float32, 2, 1, 0, (1, 2), Tuple{StaticInt{4}, Int}, Tuple{StaticInt{1}, StaticInt{1}}},Tuple{Int}}) # time: 0.001407814
236-
Base.precompile(Tuple{typeof(append_update_args!),Expr,Expr}) # time: 0.001406569
236+
Base.precompile(Tuple{typeof(append_update_args),Symbol,Expr}) # time: 0.001406569
237237
Base.precompile(Tuple{typeof(gespf1),StridedPointer{Float32, 1, 1, 0, (1,), Tuple{StaticInt{4}}, Tuple{StaticInt{1}}},Tuple{Int}}) # time: 0.001404321
238238
Base.precompile(Tuple{typeof(symbolind),Symbol,Operation,UnrollArgs,LoopSet}) # time: 0.001402186
239239
Base.precompile(Tuple{typeof(gespf1),StridedPointer{Float64, 2, 1, 0, (1, 2), Tuple{StaticInt{8}, Int}, Tuple{StaticInt{1}, StaticInt{1}}},Tuple{Int}}) # time: 0.001394523

src/vectorizationbase_compat/contract_pass.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function capture_muladd(ex::Expr, mod)
194194
found || return ex
195195
end
196196
end
197-
function append_update_args(f, ex::Expr)
197+
function append_update_args(f::Symbol, ex::Expr)
198198
call = Expr(:call, f)
199199
for i 2:length(ex.args)
200200
push!(call.args, ex.args[i])

0 commit comments

Comments
 (0)