diff options
author | Samuel Pitoiset <[email protected]> | 2018-02-05 15:08:03 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-02-22 20:40:45 +0100 |
commit | 63fb30c6743a2d8dfb13f5fee18e0f950822e562 (patch) | |
tree | 3a8d9c2c87cf6531db75961931f390aaf8a05c1a /src/compiler/nir/nir_opt_algebraic.py | |
parent | b18997876fb4bd82c406d0f6995554c096337888 (diff) |
nir: lower fexp2(fmul(flog2(a), 2)) to fmul(a, a)
Similar for the 4 case.
Suggested by Bas.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_opt_algebraic.py')
-rw-r--r-- | src/compiler/nir/nir_opt_algebraic.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_opt_algebraic.py b/src/compiler/nir/nir_opt_algebraic.py index 622ce824b97..d40d59b5cdb 100644 --- a/src/compiler/nir/nir_opt_algebraic.py +++ b/src/compiler/nir/nir_opt_algebraic.py @@ -321,6 +321,8 @@ optimizations = [ (('~fexp2', ('fmul', ('flog2', a), b)), ('fpow', a, b), '!options->lower_fpow'), # 2^(lg2(a)*b) = a^b (('~fexp2', ('fadd', ('fmul', ('flog2', a), b), ('fmul', ('flog2', c), d))), ('~fmul', ('fpow', a, b), ('fpow', c, d)), '!options->lower_fpow'), # 2^(lg2(a) * b + lg2(c) + d) = a^b * c^d + (('~fexp2', ('fmul', ('flog2', a), 2.0)), ('fmul', a, a)), + (('~fexp2', ('fmul', ('flog2', a), 4.0)), ('fmul', ('fmul', a, a), ('fmul', a, a))), (('~fpow', a, 1.0), a), (('~fpow', a, 2.0), ('fmul', a, a)), (('~fpow', a, 4.0), ('fmul', ('fmul', a, a), ('fmul', a, a))), |