Adjust operation naming in aigmap test

This commit is contained in:
Martin Povišer 2024-09-10 20:42:55 +02:00
parent a553b7c0c7
commit 4cfdb7ab50
1 changed files with 7 additions and 7 deletions

View File

@ -84,14 +84,14 @@ assign name``_y2 = op name``_a2;
`BIOP(xnor, ~^, 3, 3, 3)
`BIOP(logic_and, &&, 3, 3, 1)
`BIOP(logic_or, ||, 3, 3, 1)
`BIOP(logic_eq, ==, 3, 3, 1)
`BIOP(logic_ne, !=, 3, 3, 1)
`BIOP(logic_lt, <, 3, 3, 1)
`BIOP(logic_le, <=, 3, 3, 1)
`BIOP(logic_gt, >, 3, 3, 1)
`BIOP(logic_ge, >=, 3, 3, 1)
`BIOP(eq, ==, 3, 3, 1)
`BIOP(ne, !=, 3, 3, 1)
`BIOP(lt, <, 3, 3, 1)
`BIOP(le, <=, 3, 3, 1)
`BIOP(gt, >, 3, 3, 1)
`BIOP(ge, >=, 3, 3, 1)
`UNOP(pos, +, 3)
`UNOP(neg, ~, 3)
`UNOP(not, ~, 3)
`UNOP_REDUCE(logic_not, !, 3)
`UNOP_REDUCE(reduce_and, &, 3)
`UNOP_REDUCE(reduce_or, |, 3)