(kinds, op_and_desc, types_in)
| 729 | @attr("slow") |
| 730 | @cartesian_params(unary_input_kinds, bitnot_operations, integer_types) |
| 731 | def slow_test_bitnot(kinds, op_and_desc, types_in): |
| 732 | op, op_desc = op_and_desc |
| 733 | check_unary_op(kinds, types_in, op, shape_big, op_desc) |
| 734 | |
| 735 | |
| 736 | # bool is excluded: C's bool << bool produces int, but DALI casts the result back to bool |
nothing calls this directly
no test coverage detected