diff options
author | Iago Toral Quiroga <[email protected]> | 2018-04-18 11:02:51 +0200 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2019-03-25 16:08:25 +0100 |
commit | 3766334923e9180c5ed98a97808dda1a2665332d (patch) | |
tree | 661b7447ce6c61082d046d18c6aad9692d46502f /src/intel/compiler | |
parent | ca31df6f1fbc2c502644dd7be7424000dc02541c (diff) |
compiler/nir: add lowering for 16-bit flrp
And enable it on Intel.
v2:
- Squash the change to enable it on Intel (Jason)
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/compiler')
-rw-r--r-- | src/intel/compiler/brw_compiler.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c index b588d5be97b..a3a0a393fad 100644 --- a/src/intel/compiler/brw_compiler.c +++ b/src/intel/compiler/brw_compiler.c @@ -33,6 +33,7 @@ .lower_sub = true, \ .lower_fdiv = true, \ .lower_scmp = true, \ + .lower_flrp16 = true, \ .lower_fmod16 = true, \ .lower_fmod32 = true, \ .lower_fmod64 = false, \ |