1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
### Description Compute the logical negation using C/C++ semantics. ### Syntax ``` cnot.type d, a; .type = { .b16, .b32, .b64 }; ``` ### Semantics ``` d = (a==0) ? 1 : 0; ``` ### Examples ``` cnot.b32 d,a; ```