aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/__init__.py
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-06-16 12:59:56 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-06-16 13:03:13 -0700
commita94a333762b4d2c3fcae0a9e610d654bba6980de (patch)
tree5f9c2da674031cabd86b80fa199ffb0f0a305e2c /tensorflow/python/__init__.py
parent12efd3d0bbea953e52aee12eb5a3d5d2269ec16a (diff)
Add a bitwise module with bitwise_and, bitwise_or, bitwise_xor, and invert functions.
PiperOrigin-RevId: 159264147
Diffstat (limited to 'tensorflow/python/__init__.py')
-rw-r--r--tensorflow/python/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/python/__init__.py b/tensorflow/python/__init__.py
index e11c5e44a9..db2c5b1fd9 100644
--- a/tensorflow/python/__init__.py
+++ b/tensorflow/python/__init__.py
@@ -77,6 +77,7 @@ from tensorflow.python.ops.standard_ops import *
from tensorflow.python.estimator import estimator_lib as estimator
from tensorflow.python.feature_column import feature_column_lib as feature_column
from tensorflow.python.layers import layers
+from tensorflow.python.ops import bitwise_ops as bitwise
from tensorflow.python.ops import image_ops as image
from tensorflow.python.ops import metrics
from tensorflow.python.ops import nn
@@ -209,6 +210,7 @@ _allowed_symbols.extend([
# Export modules and constants.
_allowed_symbols.extend([
'app',
+ 'bitwise',
'compat',
'errors',
'estimator',