diff options
author | Samuel Pitoiset <[email protected]> | 2018-03-08 15:31:14 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-03-16 09:58:19 +0100 |
commit | e96a1d27dc69b039575f912d6705546b9c7b3141 (patch) | |
tree | 385f2164a368de9eb6d691b5b2805f17a384a958 /src/amd/vulkan/radv_shader.c | |
parent | af355aaa07173abdc6861992f4c05ad334b9595b (diff) |
radv: run nir_opt_move_load_ubo
Polaris10:
SGPRS: 108560 -> 107856 (-0.65 %)
VGPRS: 74576 -> 74520 (-0.08 %)
Spilled SGPRs: 7375 -> 7113 (-3.55 %)
Code Size: 4273464 -> 4274364 (0.02 %) bytes
Max Waves: 9434 -> 9446 (0.13 %)
Vega10:
Totals from affected shaders:
SGPRS: 108264 -> 107576 (-0.64 %)
VGPRS: 69068 -> 69000 (-0.10 %)
Spilled SGPRs: 7221 -> 6959 (-3.63 %)
Code Size: 3800796 -> 3801496 (0.02 %) bytes
Max Waves: 10687 -> 10709 (0.21 %)
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_shader.c')
-rw-r--r-- | src/amd/vulkan/radv_shader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 704461e02cb..180b427a442 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -152,6 +152,7 @@ radv_optimize_nir(struct nir_shader *shader) } while (progress); NIR_PASS(progress, shader, nir_opt_shrink_load); + NIR_PASS(progress, shader, nir_opt_move_load_ubo); } nir_shader * |