We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb475f commit 6c6cbcdCopy full SHA for 6c6cbcd
test/can_avx.jl
@@ -0,0 +1,18 @@
1
+
2
3
4
+@testset "can_avx" begin
5
6
+ @test LoopVectorization.ArrayInterface.can_avx(log)
7
+ @test LoopVectorization.ArrayInterface.can_avx(log1p)
8
+ @test LoopVectorization.ArrayInterface.can_avx(exp)
9
+ @test LoopVectorization.ArrayInterface.can_avx(+)
10
+ @test LoopVectorization.ArrayInterface.can_avx(-)
11
+ @test LoopVectorization.ArrayInterface.can_avx(Base.FastMath.add_fast)
12
+ @test LoopVectorization.ArrayInterface.can_avx(/)
13
+ @test LoopVectorization.ArrayInterface.can_avx(sqrt)
14
+ @test !LoopVectorization.ArrayInterface.can_avx(clenshaw)
15
16
+end
17
18
0 commit comments