Skip to content

Commit

Permalink
fix bitwise not
Browse files Browse the repository at this point in the history
  • Loading branch information
Bowen12992 committed Jul 3, 2024
1 parent f691178 commit f21673d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flag_gems/ops/bitwise_not.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from ..utils import pointwise_dynamic


@pointwise_dynamic(is_tensor=[True, False], promotion_methods=[(0, "DEFAULT")])
@pointwise_dynamic(promotion_methods=[(0, "DEFAULT")])
@triton.jit
def bitwise_not_func(x):
return ~x
Expand Down

0 comments on commit f21673d

Please sign in to comment.