search for: autovecor

Displaying 3 results from an estimated 3 matches for "autovecor".

Did you mean: autocor
2011 May 22
1
[LLVMdev] No SSE instructions
2011/5/22 Chris Lattner <clattner at apple.com> > > LLVM does not have an autovectorizer. > > -Chris > Could you tell me please are you going to implement autovecorizer in LLVM in nearby future? -- Serg Anohovsky -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110522/596014d7/attachment.html>
2011 May 22
0
[LLVMdev] No SSE instructions
On May 22, 2011, at 12:31 PM, Serg Anohovsky wrote: > > > 2011/5/22 Chris Lattner <clattner at apple.com> > > LLVM does not have an autovectorizer. > > -Chris > > Could you tell me please are you going to implement autovecorizer in LLVM in nearby future? I'm confident it will happen but have no idea on what timeline. -Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110522/8fea592d/attachment.html>
2011 May 22
10
[LLVMdev] No SSE instructions
Hello. I have compiled the simple program: #include <stdio.h> #include <stdlib.h> int v1[10000]; int main() { int i; for (i = 0; i < 10000; i++) { v1[i] = i; } for (i = 0; i < 10000; i++) { printf("%d ", v1[i]); } return 0; } Next, I disasseble the executable file and have not found