mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 05:58:05 +02:00
agx: add some more bitop tests
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27616>
This commit is contained in:
parent
923767a968
commit
8661006ef0
1 changed files with 4 additions and 0 deletions
|
|
@ -163,6 +163,10 @@ TEST_F(Optimizer, FusedNot)
|
|||
CASE32(agx_xor_to(b, out, wx, agx_not(b, wy)), agx_xnor_to(b, out, wx, wy));
|
||||
|
||||
CASE32(agx_xor_to(b, out, wy, agx_not(b, wx)), agx_xnor_to(b, out, wy, wx));
|
||||
|
||||
CASE32(agx_and_to(b, out, agx_not(b, wx), wy), agx_andn1_to(b, out, wx, wy));
|
||||
|
||||
CASE32(agx_or_to(b, out, wx, agx_not(b, wy)), agx_orn2_to(b, out, wx, wy));
|
||||
}
|
||||
|
||||
TEST_F(Optimizer, FmulFsatF2F16)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue