Displaying 1 result from an estimated 1 matches for "acc32659".
2013 Nov 01
1
[LLVMdev] Vectorization of loops with conditional dereferencing
----- Original Message -----
> Hi Hal,
>
> Yes, I agree that this is a problem that prevents vectorization in
> many loops. Another problem that we have is that sunk loads don’t
> preserve their control dependence properties. For example in the
> code below, if we sink the load into the branch then we can't
> vectorize the loop.
>
> x = A[i]
> if (cond) {
>