Displaying 2 results from an estimated 2 matches for "1da218ba".
Did you mean:
1d721b8a
2016 Dec 31
2
Automatic Insertion of OpenACC/OpenMP directives
Dear Mehdi,
I've changed your example a little bit:
float saxpy(float a, float *x, float *y, int n) {
int j = 0;
for (int i = 0; i < n; ++i) {
y[j] = a*x[i] + y[I]; // Change 'I' into 'j'?
++j;
}
}
I get this code below, once I replace 'I' with 'j'. We are copying n
positions of both arrays, 'x' and 'y':
float saxpy(float a,
2017 Jan 03
2
Automatic Insertion of OpenACC/OpenMP directives
...The tool takes care of figuring out the sizes of the array AFAIK (haven’t read the paper yet to understand the novelty in the approach here).
—
Mehdi
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170103/1da218ba/attachment.html>