/* 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 #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; class FloorOpModel : public SingleOpModel { public: FloorOpModel(std::initializer_list input_shape, TensorType input_type) { input_ = AddInput(TensorType_FLOAT32); output_ = AddOutput(TensorType_FLOAT32); SetBuiltinOp(BuiltinOperator_FLOOR, BuiltinOptions_NONE, 0); BuildInterpreter({ input_shape, }); } int input() { return input_; } std::vector GetOutput() { return ExtractVector(output_); } std::vector GetOutputShape() { return GetTensorShape(output_); } private: int input_; int output_; }; TEST(FloorOpTest, SingleDim) { FloorOpModel model({2}, TensorType_FLOAT32); model.PopulateTensor(model.input(), {8.5, 0.0}); model.Invoke(); EXPECT_THAT(model.GetOutput(), ElementsAreArray({8, 0})); EXPECT_THAT(model.GetOutputShape(), ElementsAreArray({2})); } TEST(FloorOpTest, MultiDims) { FloorOpModel model({2, 1, 1, 5}, TensorType_FLOAT32); model.PopulateTensor(model.input(), { 0.0001, 8.0001, 0.9999, 9.9999, 0.5, -0.0001, -8.0001, -0.9999, -9.9999, -0.5, }); model.Invoke(); EXPECT_THAT(model.GetOutput(), ElementsAreArray({0, 8, 0, 9, 0, -1, -9, -1, -10, -1})); EXPECT_THAT(model.GetOutputShape(), ElementsAreArray({2, 1, 1, 5})); } } // namespace } // namespace tflite int main(int argc, char** argv) { ::tflite::LogToStderr(); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }