File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 5
5
[ ![ Build Status] ( https://travis-ci.com/chriselrod/LoopVectorization.jl.svg?branch=master )] ( https://travis-ci.com/chriselrod/LoopVectorization.jl )
6
6
[ ![ Build Status] ( https://ci.appveyor.com/api/projects/status/github/chriselrod/LoopVectorization.jl?svg=true )] ( https://ci.appveyor.com/project/chriselrod/LoopVectorization-jl )
7
7
[ ![ Codecov] ( https://codecov.io/gh/chriselrod/LoopVectorization.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/chriselrod/LoopVectorization.jl )
8
+
9
+ ## Installation
10
+ ```
11
+ using Pkg
12
+ Pkg.add(PackageSpec(url="https://github.com/chriselrod/VectorizationBase.jl"))
13
+ Pkg.add(PackageSpec(url="https://github.com/chriselrod/SIMDPirates.jl"))
14
+ Pkg.add(PackageSpec(url="https://github.com/chriselrod/SLEEFPirates.jl"))
15
+ Pkg.add(PackageSpec(url="https://github.com/chriselrod/LoopVectorization.jl"))
16
+ ```
Original file line number Diff line number Diff line change 295
295
pushfirst! (q. args, :($ gsym = $ mod. vbroadcast ($ V,one ($ T))))
296
296
end
297
297
end
298
- func = ((op == :* ) | (op == :/ )) ? :($ mod. vmul ) : :($ mod. vadd )
298
+ func = ((op == :* ) | (op == :/ )) ? :($ mod. evmul ) : :($ mod. evadd )
299
299
uf_new = unroll_factor
300
300
while uf_new > 1
301
301
uf_new, uf_prev = uf_new >> 1 , uf_new
You can’t perform that action at this time.
0 commit comments