search for: not_so_simple_loop

Displaying 9 results from an estimated 9 matches for "not_so_simple_loop".

2011 Oct 22
5
[LLVMdev] How to make Polly ignore some non-affine memory accesses
I was trying the new feature you introduce about printing out the graphs, so I updated my version of llvm/clang/polly synchronizing them to the last version, but I get this error launching clang (also , I recently switched to MacOS X for development): $ clang not_so_simple_loop.c -O3 -Xclang -load -Xclang ${PATH_TO_POLLY_LIB}/LLVMPolly.dylib -mllvm -enable-polly-viewer -mllvm -enable-iv-rewrite error: unable to load plugin '/Users/Kariddi/Documents/Sviluppo/Tesi/git-prefix/lib//LLVMPolly.dylib': 'dlopen(/Users/Kariddi/Documents/Sviluppo/Tesi/git-prefix/lib//L...
2011 Oct 24
1
[LLVMdev] How to make Polly ignore some non-affine memory accesses
Strange , with --enable-shared (I use auto tool by the way ...) it gives: MacBook-Pro-di-Marcello:examples Kariddi$ ./compile_ex.sh not_so_simple_loop clang (LLVM option parsing): Unknown command line argument '-enable-polly-viewer'. Try: 'clang (LLVM option parsing) -help' clang (LLVM option parsing): Did you mean '-enable-polly-vector'? Seems like it doesn't compile the viewer option ... 2011/10/24 Marcello Maggio...
2011 Oct 23
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...ni wrote: > I was trying the new feature you introduce about printing out the > graphs, so I updated my version of llvm/clang/polly synchronizing them > to the last version, but I get this error launching clang (also , I > recently switched to MacOS X for development): > > $ clang not_so_simple_loop.c -O3 -Xclang -load -Xclang > ${PATH_TO_POLLY_LIB}/LLVMPolly.dylib -mllvm -enable-polly-viewer > -mllvm -enable-iv-rewrite I documented the use of Polly in clang on a new website: http://polly.grosser.es/example_load_Polly_into_clang.html > error: unable to load plugin > '/Users/K...
2011 Oct 26
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
On 10/24/2011 11:32 PM, Marcello Maggioni wrote: > Strange , with --enable-shared (I use auto tool by the way ...) it gives: > > MacBook-Pro-di-Marcello:examples Kariddi$ ./compile_ex.sh not_so_simple_loop > clang (LLVM option parsing): Unknown command line argument > '-enable-polly-viewer'. Try: 'clang (LLVM option parsing) -help' > clang (LLVM option parsing): Did you mean '-enable-polly-vector'? > > Seems like it doesn't compile the viewer option ... Th...
2011 Oct 27
2
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...ery much :) 2011/10/26 Tobias Grosser <tobias at grosser.es>: > On 10/24/2011 11:32 PM, Marcello Maggioni wrote: >> >> Strange , with --enable-shared (I use auto tool by the way ...) it gives: >> >> MacBook-Pro-di-Marcello:examples Kariddi$ ./compile_ex.sh >> not_so_simple_loop >> clang (LLVM option parsing): Unknown command line argument >> '-enable-polly-viewer'.  Try: 'clang (LLVM option parsing) -help' >> clang (LLVM option parsing): Did you mean '-enable-polly-vector'? >> >> Seems like it doesn't compile the v...
2011 Oct 08
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
On 10/07/2011 03:43 PM, Marcello Maggioni wrote: > 2011/10/7 Marcello Maggioni<hayarms at gmail.com>: >> Hi, >> >> for example this loop: >> >> #include<stdio.h> >> >> int main() >> { >> int A[1024]; >> int j, k=10; >> for (j = 1; j< 1024; j++) >> A[j] =
2011 Nov 01
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...Tobias Grosser <tobias at grosser.es>: >> On 10/24/2011 11:32 PM, Marcello Maggioni wrote: >>> >>> Strange , with --enable-shared (I use auto tool by the way ...) it gives: >>> >>> MacBook-Pro-di-Marcello:examples Kariddi$ ./compile_ex.sh >>> not_so_simple_loop >>> clang (LLVM option parsing): Unknown command line argument >>> '-enable-polly-viewer'.  Try: 'clang (LLVM option parsing) -help' >>> clang (LLVM option parsing): Did you mean '-enable-polly-vector'? >>> >>> Seems like it doesn...
2011 Oct 07
1
[LLVMdev] How to make Polly ignore some non-affine memory accesses
I add also the output of these commands: [hades at artemis examples]$ ./compile_ex.sh super_simple_loop Printing analysis 'Polly - Detect Scops in functions' for function 'main': [hades at artemis examples]$ modifying it in : #include <stdio.h> int main() { int A[1024]; int j, k=10; for (j = 0; j < 1024; j++) A[j] = k;
2011 Nov 02
5
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...s at grosser.es>: >>> On 10/24/2011 11:32 PM, Marcello Maggioni wrote: >>>> >>>> Strange , with --enable-shared (I use auto tool by the way ...) it gives: >>>> >>>> MacBook-Pro-di-Marcello:examples Kariddi$ ./compile_ex.sh >>>> not_so_simple_loop >>>> clang (LLVM option parsing): Unknown command line argument >>>> '-enable-polly-viewer'.  Try: 'clang (LLVM option parsing) -help' >>>> clang (LLVM option parsing): Did you mean '-enable-polly-vector'? >>>> >>>>...