Skip to content

Commit

Permalink
Add bitwise_not instance method from torch tensor (ivy-llc#10191)
Browse files Browse the repository at this point in the history
Co-authored-by: nathzi1505 <[email protected]>
  • Loading branch information
JFMatos and p3jitnath authored Feb 22, 2023
1 parent 1e440b9 commit d19add5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ivy/functional/frontends/torch/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,9 @@ def abs(self):
def abs_(self):
self._ivy_array = self.abs().ivy_array
return self

def bitwise_not(self, *, out=None):
return torch_frontend.bitwise_not(self._ivy_array)

def bitwise_and(self, other):
return torch_frontend.bitwise_and(self._ivy_array, other)
Expand Down
33 changes: 33 additions & 0 deletions ivy_tests/test_ivy/test_frontends/test_torch/test_tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2620,6 +2620,39 @@ def test_torch_instance_is_cuda(
)


# bitwise_not
@handle_frontend_method(
class_tree=CLASS_TREE,
init_tree="torch.tensor",
method_name="bitwise_not",
dtype_and_x=helpers.dtype_and_values(
available_dtypes=helpers.get_dtypes("integer"),
num_arrays=2,
),
)
def test_torch_instance_bitwise_not(
dtype_and_x,
frontend_method_data,
init_flags,
method_flags,
frontend,
):
input_dtype, x = dtype_and_x
helpers.test_frontend_method(
init_input_dtypes=input_dtype,
init_all_as_kwargs_np={
"data": x[0],
},
method_input_dtypes=input_dtype,
frontend_method_data=frontend_method_data,
init_flags=init_flags,
method_flags=method_flags,
method_all_as_kwargs_np={
},
frontend=frontend,
)


# bitwise_and
@handle_frontend_method(
class_tree=CLASS_TREE,
Expand Down

0 comments on commit d19add5

Please sign in to comment.