@@ -4906,7 +4906,7 @@ def func(x, y):
4906
4906
self ._run_test_case (func , [_OUTPUT ], {_INPUT : x_val , _INPUT1 : y_val })
4907
4907
4908
4908
@check_opset_min_version (18 , "BitwiseOr" )
4909
- def test_bitwise_and (self ):
4909
+ def test_bitwise_or (self ):
4910
4910
x_val = np .array ([21 , 4 , 87 ], dtype = np .int32 )
4911
4911
y_val = np .array ([45 , 69 , 173 ], dtype = np .int32 )
4912
4912
def func (x , y ):
@@ -4915,7 +4915,7 @@ def func(x, y):
4915
4915
self ._run_test_case (func , [_OUTPUT ], {_INPUT : x_val , _INPUT1 : y_val })
4916
4916
4917
4917
@check_opset_min_version (18 , "BitwiseXor" )
4918
- def test_bitwise_and (self ):
4918
+ def test_bitwise_xor (self ):
4919
4919
x_val = np .array ([21 , 4 , 87 ], dtype = np .int32 )
4920
4920
y_val = np .array ([45 , 69 , 173 ], dtype = np .int32 )
4921
4921
def func (x , y ):
@@ -4924,10 +4924,10 @@ def func(x, y):
4924
4924
self ._run_test_case (func , [_OUTPUT ], {_INPUT : x_val , _INPUT1 : y_val })
4925
4925
4926
4926
@check_opset_min_version (18 , "BitwiseNot" )
4927
- def test_bitwise_and (self ):
4927
+ def test_bitwise_not (self ):
4928
4928
x_val = np .array ([21 , 4 , 1 ], dtype = np .int32 )
4929
4929
def func (x ):
4930
- x_ = tf .bitwise .bitwise_not (x )
4930
+ x_ = tf .bitwise .invert (x )
4931
4931
return tf .identity (x_ , name = _TFOUTPUT )
4932
4932
self ._run_test_case (func , [_OUTPUT ], {_INPUT : x_val })
4933
4933
0 commit comments