Re: [Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-08-23 Thread Jason Ekstrand
On Thu, Aug 23, 2018 at 8:16 PM Caio Marcelo de Oliveira Filho < caio.olive...@intel.com> wrote: > On Sat, Jul 28, 2018 at 10:44:39PM -0700, Jason Ekstrand wrote: > > This pass looks for variables with vector or array-of-vector types and > > narrows the type to only the components used. > > --- >

Re: [Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-08-23 Thread Caio Marcelo de Oliveira Filho
On Sat, Jul 28, 2018 at 10:44:39PM -0700, Jason Ekstrand wrote: > This pass looks for variables with vector or array-of-vector types and > narrows the type to only the components used. > --- > src/compiler/nir/nir.h| 1 + > src/compiler/nir/nir_split_vars.c | 694

Re: [Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-08-22 Thread Jason Ekstrand
On Tue, Aug 21, 2018 at 8:09 PM Caio Marcelo de Oliveira Filho < caio.olive...@intel.com> wrote: > On Tue, Aug 21, 2018 at 06:15:20PM -0500, Jason Ekstrand wrote: > > On Tue, Aug 21, 2018 at 5:55 PM Caio Marcelo de Oliveira Filho < > > caio.olive...@intel.com> wrote: > > > > > Hi, > > > > > > On S

Re: [Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-08-21 Thread Caio Marcelo de Oliveira Filho
On Tue, Aug 21, 2018 at 06:15:20PM -0500, Jason Ekstrand wrote: > On Tue, Aug 21, 2018 at 5:55 PM Caio Marcelo de Oliveira Filho < > caio.olive...@intel.com> wrote: > > > Hi, > > > > On Sat, Jul 28, 2018 at 10:44:39PM -0700, Jason Ekstrand wrote: > > > This pass looks for variables with vector or

Re: [Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-08-21 Thread Jason Ekstrand
On Tue, Aug 21, 2018 at 5:55 PM Caio Marcelo de Oliveira Filho < caio.olive...@intel.com> wrote: > Hi, > > On Sat, Jul 28, 2018 at 10:44:39PM -0700, Jason Ekstrand wrote: > > This pass looks for variables with vector or array-of-vector types and > > narrows the type to only the components used. >

Re: [Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-08-21 Thread Caio Marcelo de Oliveira Filho
Hi, On Sat, Jul 28, 2018 at 10:44:39PM -0700, Jason Ekstrand wrote: > This pass looks for variables with vector or array-of-vector types and > narrows the type to only the components used. > --- > src/compiler/nir/nir.h| 1 + > src/compiler/nir/nir_split_vars.c | 694 +++

[Mesa-dev] [PATCH v2 08/11] nir: Add a array-of-vector variable shrinking pass

2018-07-28 Thread Jason Ekstrand
This pass looks for variables with vector or array-of-vector types and narrows the type to only the components used. --- src/compiler/nir/nir.h| 1 + src/compiler/nir/nir_split_vars.c | 694 ++ 2 files changed, 695 insertions(+) diff --git a/src/compiler/