Skip to content

Commit

Permalink
Fix unnecessary allocations in distGauss! (#96)
Browse files Browse the repository at this point in the history
* Fix unnecessary allocations in distGauss!
* === for symbol
  • Loading branch information
Affie committed Oct 12, 2023
1 parent 811fdb0 commit 4f91838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DualTree01.jl
Expand Up @@ -21,7 +21,7 @@ function distGauss!(restmp::Array{Float64, 1},
mainop=(-,),
diffop=(-,),
saturate::Bool=false,
isX86Arch::Bool= (Base.Sys.ARCH in [:x86_64;]) )
isX86Arch::Bool= (Base.Sys.ARCH === :x86_64) )
#
# internal helper to for IR optimization to remove

Expand Down

0 comments on commit 4f91838

Please sign in to comment.