About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/src/microsoft/compiler/dxil_nir_algebraic.py
diff options
context:
space:
mode:
authorJesse Natalie <jenatali@microsoft.com>2021-12-09 21:12:47 -0800
committerMarge Bot <emma+marge@anholt.net>2021-12-10 23:23:29 +0000
commit11eb03c44ecec3a10d8717a9ccb7be935b06fb68 (patch)
treea0313fa93349fccac2b0185db8ba8e89b23fca4f /src/microsoft/compiler/dxil_nir_algebraic.py
parent45354be410f088b7b30beca62c1ca87b598c35c1 (diff)
microsoft/compiler: Remove algebaric pass for inot
Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14140>
Diffstat (limited to 'src/microsoft/compiler/dxil_nir_algebraic.py')
-rw-r--r--src/microsoft/compiler/dxil_nir_algebraic.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/microsoft/compiler/dxil_nir_algebraic.py b/src/microsoft/compiler/dxil_nir_algebraic.py
index cb78d62ea44..df824b338fd 100644
--- a/src/microsoft/compiler/dxil_nir_algebraic.py
+++ b/src/microsoft/compiler/dxil_nir_algebraic.py
@@ -103,10 +103,6 @@ no_16bit_conv += [
(('u2u32', ('f2f16_rtz', 'a@32')), ('pack_half_2x16_split', 'a', 0)),
]
-lower_inot = [
- (('inot', a), ('ixor', a, -1)),
-]
-
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-p', '--import-path', required=True)
@@ -126,8 +122,6 @@ def run():
no_16bit_conv).render())
print(nir_algebraic.AlgebraicPass("dxil_nir_lower_x2b",
lower_x2b).render())
- print(nir_algebraic.AlgebraicPass("dxil_nir_lower_inot",
- lower_inot).render())
if __name__ == '__main__':
main()