diff options
author | Daniel Schürmann <[email protected]> | 2019-07-20 19:21:14 +0200 |
---|---|---|
committer | Daniel Schürmann <[email protected]> | 2019-07-22 08:12:18 +0200 |
commit | 64b7386ee8ebc16e5980d6952148663b46a5298a (patch) | |
tree | 8d3b98378a1302eeff2da28b139ac6fec4dd53f0 /src/amd/vulkan/radv_shader.c | |
parent | dacaf7ec06f2b9f4c57e0aff842b8337eb78e8c5 (diff) |
radv: move nir_opt_conditional_discard out of optimization loop
This late optimization pass is only affected by nir_opt_if() and handles all cases
in a single pass. It's enough to call it once after the optimization loop.
No changes on vkpipeline-db.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_shader.c')
-rw-r--r-- | src/amd/vulkan/radv_shader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 4262dae2860..3adaf52e152 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -194,12 +194,12 @@ radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively, } NIR_PASS(progress, shader, nir_opt_undef); - NIR_PASS(progress, shader, nir_opt_conditional_discard); if (shader->options->max_unroll_iterations) { NIR_PASS(progress, shader, nir_opt_loop_unroll, 0); } } while (progress && !optimize_conservatively); + NIR_PASS(progress, shader, nir_opt_conditional_discard); NIR_PASS(progress, shader, nir_opt_shrink_load); NIR_PASS(progress, shader, nir_opt_move_load_ubo); } |