Skip to content

Commit 0b803c5

Browse files
committed
use pow_fast
1 parent b07310b commit 0b803c5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/LoopVectorization.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,14 @@ using VectorizationBase: register_size, register_count, cache_linesize, cache_si
2727
using IfElse: ifelse
2828

2929
using ThreadingUtilities, CheapThreads
30-
using SLEEFPirates: pow
3130
using Base.Broadcast: Broadcasted, DefaultArrayStyle
3231
using LinearAlgebra: Adjoint, Transpose, Diagonal
3332
using Base.Meta: isexpr
3433
using DocStringExtensions
3534
import LinearAlgebra # for check_args
3635

37-
using Base.FastMath: add_fast, sub_fast, mul_fast, div_fast, inv_fast, abs2_fast, rem_fast, max_fast, min_fast
38-
using SLEEFPirates: log_fast, log2_fast, log10_fast
39-
36+
using Base.FastMath: add_fast, sub_fast, mul_fast, div_fast, inv_fast, abs2_fast, rem_fast, max_fast, min_fast, pow_fast
37+
using SLEEFPirates: log_fast, log2_fast, log10_fast, pow
4038

4139
using ArrayInterface
4240
using ArrayInterface: OptionallyStaticUnitRange, OptionallyStaticRange, Zero, One, StaticBool, True, False, reduce_tup, indices, UpTri, LoTri

0 commit comments

Comments
 (0)