Re: [Mesa-dev] [PATCH 2/2] i965/compute: Skip SIMD8 generation if it can't be used

2016-03-04 Thread Matt Turner
On Thu, Feb 25, 2016 at 11:50 PM, Jordan Justen wrote: > If the local workgroup size is sufficiently large, then the SIMD8 > program can't be used. In this case we can skip generating the SIMD8 > program. For complex programs this can save a significant amount of >

[Mesa-dev] [PATCH 2/2] i965/compute: Skip SIMD8 generation if it can't be used

2016-02-25 Thread Jordan Justen
If the local workgroup size is sufficiently large, then the SIMD8 program can't be used. In this case we can skip generating the SIMD8 program. For complex programs this can save a significant amount of time. Signed-off-by: Jordan Justen ---