aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-10-16 09:21:09 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-16 09:25:29 -0700
commit14a66fd59c75f1b75c3e32a7e243778d3e83d221 (patch)
tree23a64027796b1935b3684fb09fef51d499e0f4ae
parent51c115b33fecd9e96aa12c264c2c717afe8bfea8 (diff)
[TF:XLA] Update xla_data comments for And, Or, and Not.
PiperOrigin-RevId: 172333451
-rw-r--r--tensorflow/compiler/xla/xla_data.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/xla_data.proto b/tensorflow/compiler/xla/xla_data.proto
index 0d7e583bed..eae284afb7 100644
--- a/tensorflow/compiler/xla/xla_data.proto
+++ b/tensorflow/compiler/xla/xla_data.proto
@@ -621,7 +621,7 @@ message WhileRequest {
enum UnaryOperation {
UNOP_INVALID = 0;
- // Elementwise, logical negation
+ // Elementwise, logical negation on booleans and bitwise negation on ints.
UNOP_NOT = 1;
// Elementwise, computes e^x.
@@ -710,7 +710,7 @@ enum BinaryOperation {
// Remainder operation.
BINOP_REM = 17;
- // Logical operators
+ // Element-wise, logical operators on booleans and bitwise operators on ints.
BINOP_AND = 18;
BINOP_OR = 19;