aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/model.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-01 12:53:54 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-01 12:57:00 -0700
commitb812f37e26889bb168fa0279a536b907c3fb5fdd (patch)
tree0b5804e7749d0b83a44748ca848917ad1554ceae /tensorflow/contrib/lite/model.cc
parent10b2b3b44a6f93f4fd414e8ac450587ece2207ae (diff)
TFLite: adding tile and expand_dims ops.
PiperOrigin-RevId: 198913026
Diffstat (limited to 'tensorflow/contrib/lite/model.cc')
-rw-r--r--tensorflow/contrib/lite/model.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/model.cc b/tensorflow/contrib/lite/model.cc
index 6ac41a94bd..ca115a1c59 100644
--- a/tensorflow/contrib/lite/model.cc
+++ b/tensorflow/contrib/lite/model.cc
@@ -714,6 +714,10 @@ TfLiteStatus ParseOpData(const Operator* op, BuiltinOperator op_type,
error_reporter->Report("DELEGATE op shouldn't exist in model.");
return kTfLiteError;
}
+ case BuiltinOperator_EXPAND_DIMS:
+ case BuiltinOperator_TILE: {
+ break;
+ }
}
return kTfLiteOk;
}