aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/toco/export_tensorflow.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-20 15:00:44 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-20 15:06:02 -0700
commitcbbffe5f646c940723247d595d33e2e87a3c3b27 (patch)
tree2672e5db1ceea946530748bc9414554b3016e4ed /tensorflow/contrib/lite/toco/export_tensorflow.cc
parenteacbaabf6d0983d61c99e1bb17658cd80a24f1ee (diff)
Fix operator names.
PiperOrigin-RevId: 201422566
Diffstat (limited to 'tensorflow/contrib/lite/toco/export_tensorflow.cc')
-rw-r--r--tensorflow/contrib/lite/toco/export_tensorflow.cc36
1 files changed, 17 insertions, 19 deletions
diff --git a/tensorflow/contrib/lite/toco/export_tensorflow.cc b/tensorflow/contrib/lite/toco/export_tensorflow.cc
index afc6d5df20..6b78f1c05e 100644
--- a/tensorflow/contrib/lite/toco/export_tensorflow.cc
+++ b/tensorflow/contrib/lite/toco/export_tensorflow.cc
@@ -735,8 +735,7 @@ void ConvertSoftmaxOperator(const Model& model, const SoftmaxOperator& src_op,
GraphDef* tensorflow_graph) {
string softmax_input;
Operator* providing_op = GetOpWithOutput(model, src_op.inputs[0]);
- if (providing_op != nullptr &&
- providing_op->type == OperatorType::kTensorFlowReshape) {
+ if (providing_op != nullptr && providing_op->type == OperatorType::kReshape) {
softmax_input = src_op.inputs[0];
} else {
// Insert a reshape operator that reduces the dimensions down to the 2 that
@@ -776,8 +775,7 @@ void ConvertLogSoftmaxOperator(const Model& model,
GraphDef* tensorflow_graph) {
string softmax_input;
Operator* providing_op = GetOpWithOutput(model, src_op.inputs[0]);
- if (providing_op != nullptr &&
- providing_op->type == OperatorType::kTensorFlowReshape) {
+ if (providing_op != nullptr && providing_op->type == OperatorType::kReshape) {
softmax_input = src_op.inputs[0];
} else {
// Insert a reshape operator that reduces the dimensions down to the 2 that
@@ -1855,24 +1853,24 @@ void ConvertOperator(const Model& model, const Operator& src_op,
ConvertConcatenationOperator(
model, static_cast<const ConcatenationOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowReshape) {
+ } else if (src_op.type == OperatorType::kReshape) {
ConvertTensorFlowReshapeOperator(
model, static_cast<const TensorFlowReshapeOperator&>(src_op),
tensorflow_graph);
} else if (src_op.type == OperatorType::kL2Pool) {
ConvertL2PoolOperator(static_cast<const L2PoolOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowSquare) {
+ } else if (src_op.type == OperatorType::kSquare) {
ConvertSquareOperator(static_cast<const TensorFlowSquareOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowSqrt) {
+ } else if (src_op.type == OperatorType::kSqrt) {
ConvertSqrtOperator(static_cast<const TensorFlowSqrtOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowRsqrt) {
+ } else if (src_op.type == OperatorType::kRsqrt) {
ConvertRsqrtOperator(model,
static_cast<const TensorFlowRsqrtOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowSplit) {
+ } else if (src_op.type == OperatorType::kSplit) {
ConvertSplitOperator(model,
static_cast<const TensorFlowSplitOperator&>(src_op),
tensorflow_graph);
@@ -1916,11 +1914,11 @@ void ConvertOperator(const Model& model, const Operator& src_op,
} else if (src_op.type == OperatorType::kSub) {
ConvertSubOperator(model, static_cast<const SubOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowMinimum) {
+ } else if (src_op.type == OperatorType::kMinimum) {
ConvertTensorFlowMinimumOperator(
model, static_cast<const TensorFlowMinimumOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowMaximum) {
+ } else if (src_op.type == OperatorType::kMaximum) {
ConvertTensorFlowMaximumOperator(
model, static_cast<const TensorFlowMaximumOperator&>(src_op),
tensorflow_graph);
@@ -1939,7 +1937,7 @@ void ConvertOperator(const Model& model, const Operator& src_op,
} else if (src_op.type == OperatorType::kTranspose) {
ConvertTransposeOperator(
model, static_cast<const TransposeOperator&>(src_op), tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowShape) {
+ } else if (src_op.type == OperatorType::kShape) {
ConvertTensorFlowShapeOperator(
model, static_cast<const TensorFlowShapeOperator&>(src_op),
tensorflow_graph);
@@ -1970,22 +1968,22 @@ void ConvertOperator(const Model& model, const Operator& src_op,
ConvertRandomUniformOperator(
model, static_cast<const RandomUniformOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowEqual) {
+ } else if (src_op.type == OperatorType::kEqual) {
ConvertComparisonOperator(model, src_op, "Equal", tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowNotEqual) {
+ } else if (src_op.type == OperatorType::kNotEqual) {
ConvertComparisonOperator(model, src_op, "NotEqual", tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowGreater) {
+ } else if (src_op.type == OperatorType::kGreater) {
ConvertComparisonOperator(model, src_op, "Greater", tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowGreaterEqual) {
+ } else if (src_op.type == OperatorType::kGreaterEqual) {
ConvertComparisonOperator(model, src_op, "GreaterEqual", tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowLess) {
+ } else if (src_op.type == OperatorType::kLess) {
ConvertComparisonOperator(model, src_op, "Less", tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowLessEqual) {
+ } else if (src_op.type == OperatorType::kLessEqual) {
ConvertComparisonOperator(model, src_op, "LessEqual", tensorflow_graph);
} else if (src_op.type == OperatorType::kSelect) {
ConvertSelectOperator(model, static_cast<const SelectOperator&>(src_op),
tensorflow_graph);
- } else if (src_op.type == OperatorType::kTensorFlowTile) {
+ } else if (src_op.type == OperatorType::kTile) {
ConvertTileOperator(model,
static_cast<const TensorFlowTileOperator&>(src_op),
tensorflow_graph);