(kinds, op_and_desc, types_in)
| 722 | # ~x uses logical NOT for bool (matching numpy/torch) and bitwise NOT for other integral types |
| 723 | @cartesian_params(unary_input_kinds, bitnot_operations, integer_types) |
| 724 | def test_bitnot_selected(kinds, op_and_desc, types_in): |
| 725 | op, op_desc = op_and_desc |
| 726 | check_unary_op(kinds, types_in, op, shape_small, op_desc) |
| 727 | |
| 728 | |
| 729 | @attr("slow") |
nothing calls this directly
no test coverage detected