aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/split_test.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-02-15 14:49:01 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-15 14:52:56 -0800
commit41a8560e0c2fa3b8fa73622a15da53f5e1b8b6c8 (patch)
tree4b97df5ca9ecff906c675ded62a29f7cefd52339 /tensorflow/contrib/lite/kernels/split_test.cc
parent66f4f4cf31b86b7dd20f10ce6d968348b502f2ee (diff)
Implement Split
PiperOrigin-RevId: 185904437
Diffstat (limited to 'tensorflow/contrib/lite/kernels/split_test.cc')
-rw-r--r--tensorflow/contrib/lite/kernels/split_test.cc147
1 files changed, 147 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/kernels/split_test.cc b/tensorflow/contrib/lite/kernels/split_test.cc
new file mode 100644
index 0000000000..61a0759c64
--- /dev/null
+++ b/tensorflow/contrib/lite/kernels/split_test.cc
@@ -0,0 +1,147 @@
+/* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+#include <gtest/gtest.h>
+#include "tensorflow/contrib/lite/interpreter.h"
+#include "tensorflow/contrib/lite/kernels/register.h"
+#include "tensorflow/contrib/lite/kernels/test_util.h"
+#include "tensorflow/contrib/lite/model.h"
+
+namespace tflite {
+namespace {
+
+using ::testing::ElementsAreArray;
+
+constexpr int kAxisIsATensor = -1000;
+
+class SplitOpModel : public SingleOpModel {
+ public:
+ SplitOpModel(const TensorData& input, int num_splits,
+ int axis = kAxisIsATensor) {
+ if (axis == kAxisIsATensor) {
+ axis_ = AddInput({TensorType_INT32, {1}});
+ } else {
+ axis_ = AddConstInput(TensorType_INT32, {axis}, {1});
+ }
+ input_ = AddInput(input);
+ for (int i = 0; i < num_splits; ++i) {
+ outputs_.push_back(AddOutput(input.type));
+ }
+ SetBuiltinOp(BuiltinOperator_SPLIT, BuiltinOptions_SplitOptions,
+ CreateSplitOptions(builder_, num_splits).Union());
+ if (axis == kAxisIsATensor) {
+ BuildInterpreter({GetShape(axis_), GetShape(input_)});
+ } else {
+ BuildInterpreter({{}, GetShape(input_)});
+ }
+ }
+
+ void SetInput(std::initializer_list<float> data) {
+ PopulateTensor(input_, data);
+ }
+ void SetAxis(int axis) { PopulateTensor(axis_, {axis}); }
+
+ std::vector<float> GetOutput(int i) {
+ return ExtractVector<float>(outputs_[i]);
+ }
+ std::vector<int> GetOutputShape(int i) { return GetTensorShape(outputs_[i]); }
+
+ private:
+ int input_;
+ int axis_;
+ std::vector<int> outputs_;
+};
+
+using TensorValues = std::initializer_list<float>;
+
+void Check(int axis, int num_splits, std::initializer_list<int> input_shape,
+ std::initializer_list<int> output_shape,
+ const TensorValues& input_data,
+ const std::vector<TensorValues>& output_data) {
+ auto debug = [&](int i) {
+ std::stringstream ss;
+ ss << "for output tensor " << i << " axis=" << axis
+ << " and num_splits=" << num_splits;
+ return ss.str();
+ };
+ SplitOpModel m({TensorType_FLOAT32, input_shape}, num_splits);
+ m.SetInput(input_data);
+ m.SetAxis(axis);
+ m.Invoke();
+ for (int i = 0; i < num_splits; ++i) {
+ EXPECT_THAT(m.GetOutput(i), ElementsAreArray(output_data[i])) << debug(i);
+ EXPECT_THAT(m.GetOutputShape(i), ElementsAreArray(output_shape))
+ << debug(i);
+ }
+
+ SplitOpModel const_m({TensorType_FLOAT32, input_shape}, num_splits, axis);
+ const_m.SetInput(input_data);
+ const_m.Invoke();
+ for (int i = 0; i < num_splits; ++i) {
+ EXPECT_THAT(const_m.GetOutput(i), ElementsAreArray(output_data[i]))
+ << debug(i);
+ EXPECT_THAT(const_m.GetOutputShape(i), ElementsAreArray(output_shape))
+ << debug(i);
+ }
+}
+
+TEST(SplitOpTest, FourDimensional) {
+ Check(/*axis=*/0, /*num_splits=*/2, {2, 2, 2, 2}, {1, 2, 2, 2},
+ {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
+ {
+ {1, 2, 3, 4, 5, 6, 7, 8},
+ {9, 10, 11, 12, 13, 14, 15, 16},
+ });
+ Check(/*axis=*/1, /*num_splits=*/2, {2, 2, 2, 2}, {2, 1, 2, 2},
+ {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
+ {
+ {1, 2, 3, 4, 9, 10, 11, 12},
+ {5, 6, 7, 8, 13, 14, 15, 16},
+ });
+ Check(/*axis=*/2, /*num_splits=*/2, {2, 2, 2, 2}, {2, 2, 1, 2},
+ {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
+ {
+ {1, 2, 5, 6, 9, 10, 13, 14},
+ {3, 4, 7, 8, 11, 12, 15, 16},
+ });
+ Check(/*axis=*/3, /*num_splits=*/2, {2, 2, 2, 2}, {2, 2, 2, 1},
+ {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
+ {
+ {1, 3, 5, 7, 9, 11, 13, 15},
+ {2, 4, 6, 8, 10, 12, 14, 16},
+ });
+}
+
+TEST(SplitOpTest, OneDimensional) {
+ Check(/*axis=*/0, /*num_splits=*/8, {8}, {1}, {1, 2, 3, 4, 5, 6, 7, 8},
+ {{1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}});
+}
+
+TEST(SplitOpTest, NegativeAxis) {
+ Check(/*axis=*/-4, /*num_splits=*/2, {2, 2, 2, 2}, {1, 2, 2, 2},
+ {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
+ {
+ {1, 2, 3, 4, 5, 6, 7, 8},
+ {9, 10, 11, 12, 13, 14, 15, 16},
+ });
+}
+
+} // namespace
+} // namespace tflite
+
+int main(int argc, char** argv) {
+ ::tflite::LogToStderr();
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}