diff options
author | Kenneth Graunke <[email protected]> | 2019-06-03 13:15:49 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-06-05 16:45:12 -0700 |
commit | edd45af9ba1952e2656af5772c5c5704b1884eba (patch) | |
tree | 98d79d538b2fc478471f8286de24396a6c32f60c /src/intel/compiler/brw_compiler.c | |
parent | dfb18f0a28a64d96b5a3800b8096dc5fbf813986 (diff) |
nir: Drop lower_fmod64 option.
nir_lower_doubles offers a wide variety of fp64 lowering, including
lowering fmod@64. The version there also better handles imprecisions
due to lowered frcp@64. Let's consolidate on one version.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_compiler.c')
-rw-r--r-- | src/intel/compiler/brw_compiler.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c index 536dc86ab78..9da549f7448 100644 --- a/src/intel/compiler/brw_compiler.c +++ b/src/intel/compiler/brw_compiler.c @@ -36,7 +36,6 @@ .lower_flrp16 = true, \ .lower_fmod16 = true, \ .lower_fmod32 = true, \ - .lower_fmod64 = false, \ .lower_bitfield_extract = true, \ .lower_bitfield_insert = true, \ .lower_uadd_carry = true, \ |