Re: [committed] Add OpenMP 5 exclusive scan support for simd constructs

2019-06-24 Thread Christophe Lyon
On Fri, 21 Jun 2019 at 08:57, Jakub Jelinek wrote: > > Hi! > > The following patch adds exclusive scan support for simd, it is similar to > the inclusive scan, just we need to swap the input and scan phases and > use slightly different pattern at the start of the scan phase, so that it > computes

[committed] Add OpenMP 5 exclusive scan support for simd constructs

2019-06-20 Thread Jakub Jelinek
Hi! The following patch adds exclusive scan support for simd, it is similar to the inclusive scan, just we need to swap the input and scan phases and use slightly different pattern at the start of the scan phase, so that it computes what we need. Bootstrapped/regtested on x86_64-linux and i686-li