r600/sfn: lower rotate ALU ops

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5963>
This commit is contained in:
Gert Wollny 2020-07-05 16:36:11 +02:00 committed by Marge Bot
parent 4708ccbf91
commit 55cc712991
1 changed files with 2 additions and 0 deletions

View File

@ -1191,6 +1191,7 @@ const struct nir_shader_compiler_options r600_nir_fs_options = {
.lower_int64_options = 0,
.lower_extract_byte = true,
.lower_extract_word = true,
.lower_rotate = true,
.max_unroll_iterations = 32,
.lower_all_io_to_temps = true,
.vectorize_io = true,
@ -1211,6 +1212,7 @@ const struct nir_shader_compiler_options r600_nir_options = {
.lower_int64_options = 0,
.lower_extract_byte = true,
.lower_extract_word = true,
.lower_rotate = true,
.max_unroll_iterations = 32,
.vectorize_io = true,
.has_umad24 = true,