aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/testing/tf_driver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/testing/tf_driver.cc')
-rw-r--r--tensorflow/contrib/lite/testing/tf_driver.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/lite/testing/tf_driver.cc b/tensorflow/contrib/lite/testing/tf_driver.cc
index 3b27f6f3da..d6a6ff8f56 100644
--- a/tensorflow/contrib/lite/testing/tf_driver.cc
+++ b/tensorflow/contrib/lite/testing/tf_driver.cc
@@ -28,8 +28,8 @@ namespace {
tensorflow::Tensor CreateTensor(const tensorflow::DataType type,
const std::vector<int64_t>& dim) {
- tensorflow::TensorShape shape{gtl::ArraySlice<int64>{
- reinterpret_cast<const int64*>(dim.data()), dim.size()}};
+ tensorflow::TensorShape shape{tensorflow::gtl::ArraySlice<tensorflow::int64>{
+ reinterpret_cast<const tensorflow::int64*>(dim.data()), dim.size()}};
return {type, shape};
}