nir: Add fisnormal op
authorJesse Natalie <jenatali@microsoft.com>
Mon, 8 Jun 2020 12:54:53 +0000 (05:54 -0700)
committerJesse Natalie <jenatali@microsoft.com>
Mon, 17 Aug 2020 22:34:00 +0000 (15:34 -0700)
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6355>

src/compiler/nir/nir_opcodes.py

index 7846bf2..d880c51 100644 (file)
@@ -1154,3 +1154,5 @@ triop("umad24", tuint32, _2src_commutative,
 # unsigned 24b multiply into 32b result uint
 binop("umul24", tint32, _2src_commutative + associative,
       "(((uint32_t)src0 << 8) >> 8) * (((uint32_t)src1 << 8) >> 8)")
+
+unop_convert("fisnormal", tbool1, tfloat, "isnormal(src0)")