search for: 092dab20

Displaying 2 results from an estimated 2 matches for "092dab20".

2013 Oct 31
0
[LLVMdev] loop vectorizer
...1) >> SLP: Vectorizing a list of length = 2. >> SLP: Vectorizing a list of length = 2. >> SLP: Vectorizing a list of length = 2. > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131030/092dab20/attachment.html>
2013 Oct 31
2
[LLVMdev] loop vectorizer
On Oct 30, 2013, at 6:10 PM, Frank Winter <fwinter at jlab.org> wrote: > the only option I see is to unroll the loop by hand. Since the array access is consecutive over 4 loop iterations I gave it a try and unrolled the loop by a factor of 4. Which gives the following array accesses: > > loop iter 0: > index_0 = 0 index_1 = 4 > index_0 = 1 index_1 = 5 > index_0 = 2