Re: [Mesa-dev] [PATCH 04/11] nir: Add tests for dead write elimination

2018-10-08 Thread Jason Ekstrand
On Fri, Sep 14, 2018 at 10:46 PM Caio Marcelo de Oliveira Filho < caio.olive...@intel.com> wrote: > Note at the moment the pass called is nir_opt_copy_prop_vars, because > dead write elimination is implemented there. > > Also added tests that involve identifying dead writes in multiple > blocks (e

[Mesa-dev] [PATCH 04/11] nir: Add tests for dead write elimination

2018-09-14 Thread Caio Marcelo de Oliveira Filho
Note at the moment the pass called is nir_opt_copy_prop_vars, because dead write elimination is implemented there. Also added tests that involve identifying dead writes in multiple blocks (e.g. the overwrite happens in another block). Those currently fail as expected, so are marked to be skipped.