Displaying 1 result from an estimated 1 matches for "963913".
Did you mean:
96391
2018 Jan 29
1
Polly loop offloading to Accelerator
Thank You.
i used -polly-ast-detect-parallel but there is no coincident info generated;
my c code is simple vec-sum as follows;
#include <stdio.h>
int a[2048], b[2048], c[2048];
foo () {
int i;
for (i=0; i<2048; i++) {
a[i]=b[5] + c[i];
}
}
i executed following commands;
$clang -S -emit-llvm vec-sum.cpp -march=native -O3 -mllvm
-disable-llvm-optzns -o vec-sum.s
$opt -S