diff --git a/tests/layer_tests/tensorflow_tests/test_tf_BitwiseShift.py b/tests/layer_tests/tensorflow_tests/test_tf_BitwiseShift.py index cfef63bcc58f6f..ee001710bd16bc 100644 --- a/tests/layer_tests/tensorflow_tests/test_tf_BitwiseShift.py +++ b/tests/layer_tests/tensorflow_tests/test_tf_BitwiseShift.py @@ -68,8 +68,8 @@ def create_bitwise_net(self, x_shape, y_shape, is_y_const, input_type, op_type): @pytest.mark.nightly def test_bitwise(self, x_shape, y_shape, is_y_const, input_type, op_type, ie_device, precision, ir_version, temp_dir, use_legacy_frontend): - if ie_device == 'GPU': - pytest.skip("149424: Bitwise ops are not supported on GPU") + if ie_device == 'GPU' and input_type in [np.uint64]: + pytest.skip("149424: uint64 type is not supported on GPU") if use_legacy_frontend: pytest.skip("BitwiseShift ops are supported only by new TF FE") self._test(*self.create_bitwise_net(x_shape=x_shape, y_shape=y_shape, is_y_const=is_y_const,