aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/xla_data.proto
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-10-10 12:20:59 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-10 12:25:01 -0700
commit721fbda83fc0cb00c9bf9ed461c8fc3084f42fe1 (patch)
treec97ff7882894798d8a62bdb9b8270121abd189c0 /tensorflow/compiler/xla/xla_data.proto
parent9954458183ebd8d0ab5f7d06f063c8372dbcf6fb (diff)
[TF:XLA] Rename BINOP_LOGICAL_X to BINOP_X
PiperOrigin-RevId: 171716540
Diffstat (limited to 'tensorflow/compiler/xla/xla_data.proto')
-rw-r--r--tensorflow/compiler/xla/xla_data.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/xla_data.proto b/tensorflow/compiler/xla/xla_data.proto
index 1771a3d5de..3f26b88809 100644
--- a/tensorflow/compiler/xla/xla_data.proto
+++ b/tensorflow/compiler/xla/xla_data.proto
@@ -618,7 +618,7 @@ enum UnaryOperation {
UNOP_INVALID = 0;
// Elementwise, logical negation
- UNOP_LOGICAL_NOT = 1;
+ UNOP_NOT = 1;
// Elementwise, computes e^x.
UNOP_EXP = 2;
@@ -707,8 +707,8 @@ enum BinaryOperation {
BINOP_REM = 17;
// Logical operators
- BINOP_LOGICAL_AND = 18;
- BINOP_LOGICAL_OR = 19;
+ BINOP_AND = 18;
+ BINOP_OR = 19;
}
message BinaryOpRequest {