Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / onert-micro / luci-interpreter / src / kernels / Less.test.cpp
index 8c59633..08279e9 100644 (file)
  * limitations under the License.
  */
 
-#include "kernels/Less.h"
 #include "kernels/TestUtils.h"
-#include "luci_interpreter/TestMemoryManager.h"
+#include "luci_interpreter/test_models/less/FloatLessKernel.h"
+#include "luci_interpreter/test_models/less/IntLessKernel.h"
+#include "luci_interpreter/test_models/less/QuantLessKernel.h"
+#include "luci_interpreter/test_models/less/NegTestDataLessKernel.h"
+
+#include "loader/ModuleLoader.h"
 
 namespace luci_interpreter
 {
-namespace kernels
-{
 namespace
 {
 
@@ -30,305 +32,134 @@ using namespace testing;
 
 class LessTest : public ::testing::Test
 {
-protected:
-  void SetUp() override { _memory_manager = std::make_unique<TestMemoryManager>(); }
-
-  std::unique_ptr<IMemoryManager> _memory_manager;
+  // Do nothing
 };
 
-TEST_F(LessTest, FloatSimple)
+template <typename T, typename U>
+std::vector<U> checkLessKernel(test_kernel::TestDataBase<T, U> *test_data_base)
 {
-  std::vector<float> x_data{
-    0.5, 0.7, 0.9, // Row 1
-    1,   0,   -1,  // Row 2
-  };
+  MemoryManager memory_manager{};
+  RuntimeModule runtime_module{};
+  bool dealloc_input = true;
 
-  std::vector<float> y_data{
-    0.9, 0.7, 0.5, // Row 1
-    -1,  0,   1,   // Row 2
-  };
+  // Load model with single op
+  auto *model_data_raw = reinterpret_cast<const char *>(test_data_base->get_model_ptr());
+  ModuleLoader::load(&runtime_module, &memory_manager, model_data_raw, dealloc_input);
 
-  std::vector<bool> ref_output_data{
-    true,  false, false, // Row 1
-    false, false, true,  // Row 2
-  };
+  auto *main_runtime_graph = runtime_module.getMainGraph();
+  assert(main_runtime_graph->getNumOfInputTensors() == 2);
 
-  Tensor x_tensor = makeInputTensor<DataType::FLOAT32>({2, 3}, x_data, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::FLOAT32>({2, 3}, y_data, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
+  // set left input data
+  {
+    auto *input_tensor_data = reinterpret_cast<T *>(main_runtime_graph->configureGraphInput(0));
+    std::copy(test_data_base->get_input_data_by_index(0).begin(),
+              test_data_base->get_input_data_by_index(0).end(), input_tensor_data);
+  }
 
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  _memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
+  // set right input data
+  {
+    auto *input_tensor_data = reinterpret_cast<T *>(main_runtime_graph->configureGraphInput(1));
+    std::copy(test_data_base->get_input_data_by_index(1).begin(),
+              test_data_base->get_input_data_by_index(1).end(), input_tensor_data);
+  }
 
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({2, 3}));
-}
-
-TEST_F(LessTest, FloatBroardcast)
-{
-  std::vector<float> x_data{
-    0.5, 0.7, 0.9, // Row 1
-    1,   0,   -1,  // Row 2
-    -1,  0,   1,   // Row 3
-  };
+  runtime_module.execute();
 
-  std::vector<float> y_data{
-    0.9, 0.7, 0.5, // Row 1
-  };
+  assert(main_runtime_graph->getNumOfOutputTensors() == 1);
 
-  std::vector<bool> ref_output_data{
-    true,  false, false, // Row 1
-    false, true,  true,  // Row 2
-    true,  true,  false, // Row 3
-  };
-
-  Tensor x_tensor = makeInputTensor<DataType::FLOAT32>({3, 3}, x_data, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::FLOAT32>({1, 3}, y_data, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  _memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
-
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({3, 3}));
+  U *output_data = reinterpret_cast<U *>(main_runtime_graph->getOutputDataByIndex(0));
+  const size_t num_elements = (main_runtime_graph->getOutputDataSizeByIndex(0) / sizeof(U));
+  std::vector<U> output_data_vector(output_data, output_data + num_elements);
+  return output_data_vector;
 }
 
-template <loco::DataType DType>
-void checkIntegerSimple(luci_interpreter::IMemoryManager *memory_manager)
+TEST_F(LessTest, FloatNoBroadcast_P)
 {
-  using dtype = typename loco::DataTypeImpl<DType>::Type;
-  dtype min_value = std::numeric_limits<dtype>::min();
-  dtype max_value = std::numeric_limits<dtype>::max();
-  std::vector<dtype> x_data{min_value, 2, max_value};
-
-  std::vector<dtype> y_data{min_value + 1, -2, max_value};
-
-  std::vector<bool> ref_output_data{true, false, false};
-
-  Tensor x_tensor = makeInputTensor<DType>({3}, x_data, memory_manager);
-  Tensor y_tensor = makeInputTensor<DType>({3}, y_data, memory_manager);
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
-
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({3}));
+  const bool is_with_broadcast = false;
+  test_kernel::TestDataFloatLess test_data_kernel(is_with_broadcast, false);
+  std::vector<bool> output_data_vector = checkLessKernel<float, bool>(&test_data_kernel);
+  EXPECT_THAT(output_data_vector, test_data_kernel.get_output_data_by_index(0));
 }
 
-template <loco::DataType DType>
-void checkIntegerBroadcast(luci_interpreter::IMemoryManager *memory_manager)
+TEST_F(LessTest, FloatWithBroadcast_P)
 {
-  using dtype = typename loco::DataTypeImpl<DType>::Type;
-  dtype min_value = std::numeric_limits<dtype>::min();
-  dtype max_value = std::numeric_limits<dtype>::max();
-  std::vector<dtype> x_data{
-    min_value, 2,  3,         // Row 1
-    4,         5,  max_value, // Row 2
-    -1,        -4, -3,        // Row 3
-    min_value, -2, max_value, // Row 4
-  };
-
-  std::vector<dtype> y_data{
-    min_value + 1, -2, max_value - 1, // Row 1
-  };
-
-  std::vector<bool> ref_output_data{
-    true,  false, true,  // Row 1
-    false, false, false, // Row 2
-    false, true,  true,  // Row 3
-    true,  false, false, // Row 4
-  };
-
-  Tensor x_tensor = makeInputTensor<DType>({4, 3}, x_data, memory_manager);
-  Tensor y_tensor = makeInputTensor<DType>({3}, y_data, memory_manager);
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
-
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({4, 3}));
+  const bool is_with_broadcast = true;
+  test_kernel::TestDataFloatLess test_data_kernel(is_with_broadcast, false);
+  std::vector<bool> output_data_vector = checkLessKernel<float, bool>(&test_data_kernel);
+  EXPECT_THAT(output_data_vector, test_data_kernel.get_output_data_by_index(0));
 }
 
-TEST_F(LessTest, Int32)
+TEST_F(LessTest, FloatNoBroadcast_NEG)
 {
-  checkIntegerSimple<loco::DataType::S32>(_memory_manager.get());
-  checkIntegerBroadcast<loco::DataType::S32>(_memory_manager.get());
-  SUCCEED();
+  const bool is_with_broadcast = false;
+  test_kernel::TestDataFloatLess test_data_kernel(is_with_broadcast, true);
+  EXPECT_DEATH(checkLessKernel(&test_data_kernel), "");
 }
 
-TEST_F(LessTest, Int64)
+TEST_F(LessTest, FloatWithBroadcast_NEG)
 {
-  checkIntegerSimple<loco::DataType::S64>(_memory_manager.get());
-  checkIntegerBroadcast<loco::DataType::S64>(_memory_manager.get());
-  SUCCEED();
+  const bool is_with_broadcast = true;
+  test_kernel::TestDataFloatLess test_data_kernel(is_with_broadcast, true);
+  EXPECT_DEATH(checkLessKernel(&test_data_kernel), "");
 }
 
-// Choose min / max in such a way that there are exactly 256 units to avoid rounding errors.
-const float F_MIN = -128.0 / 128.0;
-const float F_MAX = 127.0 / 128.0;
-
-TEST_F(LessTest, Uint8Quantized)
+TEST_F(LessTest, IntWithBroadcast_P)
 {
-  std::vector<float> x_data{
-    0.5, 0.6, 0.7,  0.9, // Row 1
-    1,   0,   0.05, -1,  // Row 2
-  };
-
-  std::vector<float> y_data{
-    0.9, 0.6,  0.55, 0.5, // Row 1
-    -1,  0.05, 0,    1,   // Row 2
-  };
-
-  std::vector<bool> ref_output_data{
-    true,  false, false, false, // Row 1
-    false, true,  false, true,  // Row 2
-  };
-
-  std::pair<float, int32_t> quant_param = quantizationParams<uint8_t>(F_MIN, F_MAX);
-  Tensor x_tensor = makeInputTensor<DataType::U8>(
-    {1, 2, 4, 1}, quant_param.first, quant_param.second, x_data, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::U8>(
-    {1, 2, 4, 1}, quant_param.first, quant_param.second, y_data, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  _memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
-
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({1, 2, 4, 1}));
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
+  const bool is_with_broadcast = true;
+  test_kernel::TestDataIntLess test_data_kernel(is_with_broadcast, false);
+  std::vector<bool> output_data_vector = checkLessKernel<int32_t, bool>(&test_data_kernel);
+  EXPECT_THAT(output_data_vector, test_data_kernel.get_output_data_by_index(0));
 }
 
-TEST_F(LessTest, Uint8QuantizedRescale)
+TEST_F(LessTest, IntNoBroadcast_P)
 {
-  std::vector<float> x_data{
-    0.5, 0.6, 0.7,  0.9, // Row 1
-    1,   0,   0.05, -1,  // Row 2
-  };
-
-  std::vector<float> y_data{
-    0.9, 0.6,  0.6, 0.5, // Row 1
-    -1,  0.05, 0,   1,   // Row 2
-  };
-
-  std::vector<bool> ref_output_data{
-    true,  false, false, false, // Row 1
-    false, true,  false, true,  // Row 2
-  };
-
-  std::pair<float, int32_t> x_quant_param = quantizationParams<uint8_t>(F_MIN, F_MAX);
-  std::pair<float, int32_t> y_quant_param = quantizationParams<uint8_t>(F_MIN * 1.2, F_MAX * 1.5);
-
-  Tensor x_tensor = makeInputTensor<DataType::U8>(
-    {1, 2, 4, 1}, x_quant_param.first, x_quant_param.second, x_data, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::U8>(
-    {1, 2, 4, 1}, y_quant_param.first, y_quant_param.second, y_data, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  _memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
-
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({1, 2, 4, 1}));
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
+  const bool is_with_broadcast = false;
+  test_kernel::TestDataIntLess test_data_kernel(is_with_broadcast, false);
+  std::vector<bool> output_data_vector = checkLessKernel<int32_t, bool>(&test_data_kernel);
+  EXPECT_THAT(output_data_vector, test_data_kernel.get_output_data_by_index(0));
 }
 
-TEST_F(LessTest, Uint8QuantizedBroadcast)
+TEST_F(LessTest, IntWithBroadcast_NEG)
 {
-  std::vector<float> x_data{
-    0.4,  -0.8, 0.7,  0.3, // Row 1
-    -0.5, 0.1,  0,    0.5, // Row 2
-    1,    0,    0.05, -1,  // Row 3
-  };
-
-  std::vector<float> y_data{
-    -1, 0.05, 0, 1, // Row 1
-  };
-
-  std::vector<bool> ref_output_data{
-    false, true,  false, true, // Row 1
-    false, false, false, true, // Row 2
-    false, true,  false, true, // Row 3
-  };
-
-  std::pair<float, int32_t> quant_param = quantizationParams<uint8_t>(F_MIN, F_MAX);
-  Tensor x_tensor = makeInputTensor<DataType::U8>(
-    {1, 3, 4, 1}, quant_param.first, quant_param.second, x_data, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::U8>(
-    {1, 1, 4, 1}, quant_param.first, quant_param.second, y_data, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  kernel.configure();
-  _memory_manager->allocate_memory(output_tensor);
-  kernel.execute();
-
-  EXPECT_THAT(extractTensorShape(output_tensor), ::testing::ElementsAreArray({1, 3, 4, 1}));
-  EXPECT_THAT(extractTensorData<bool>(output_tensor), ::testing::ElementsAreArray(ref_output_data));
-}
-
-TEST_F(LessTest, Input_Type_Mismatch_NEG)
-{
-  Tensor x_tensor = makeInputTensor<DataType::FLOAT32>({1}, {1.f}, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::U8>({1}, {1}, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  EXPECT_ANY_THROW(kernel.configure());
+  const bool is_with_broadcast = true;
+  test_kernel::TestDataIntLess test_data_kernel(is_with_broadcast, true);
+  EXPECT_DEATH(checkLessKernel(&test_data_kernel), "");
 }
 
-TEST_F(LessTest, Input_Output_Type_NEG)
+TEST_F(LessTest, IntNoBroadcast_NEG)
 {
-  Tensor x_tensor = makeInputTensor<DataType::FLOAT32>({1}, {1.f}, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::FLOAT32>({1}, {1.f}, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::FLOAT32);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  EXPECT_ANY_THROW(kernel.configure());
+  const bool is_with_broadcast = false;
+  test_kernel::TestDataIntLess test_data_kernel(is_with_broadcast, true);
+  EXPECT_DEATH(checkLessKernel(&test_data_kernel), "");
 }
 
-TEST_F(LessTest, Float_Broadcast_NEG)
+TEST_F(LessTest, Quant_P)
 {
-  Tensor x_tensor = makeInputTensor<DataType::FLOAT32>({2}, {1.f, 2.f}, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::FLOAT32>({3}, {1.f, 2.f, 3.f}, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  ASSERT_ANY_THROW(kernel.configure());
+  const bool is_with_broadcast = false;
+  test_kernel::TestDataQuantLess test_data_kernel(is_with_broadcast, false);
+  std::vector<bool> output_data_vector = checkLessKernel<uint8_t, bool>(&test_data_kernel);
+  EXPECT_THAT(output_data_vector, test_data_kernel.get_output_data_by_index(0));
 }
 
-TEST_F(LessTest, Int32_Broadcast_NEG)
+TEST_F(LessTest, Quant_NEG)
 {
-  Tensor x_tensor = makeInputTensor<DataType::S32>({2}, {1, 2}, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::S32>({3}, {1, 2, 3}, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
-
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  ASSERT_ANY_THROW(kernel.configure());
+  const bool is_with_broadcast = false;
+  test_kernel::TestDataQuantLess test_data_kernel(is_with_broadcast, true);
+  EXPECT_DEATH(checkLessKernel(&test_data_kernel), "");
 }
 
-TEST_F(LessTest, Int64_Broadcast_NEG)
+TEST_F(LessTest, Wrong_Output_Type_NEG)
 {
-  Tensor x_tensor = makeInputTensor<DataType::S64>({2}, {1, 2}, _memory_manager.get());
-  Tensor y_tensor = makeInputTensor<DataType::S64>({3}, {1, 2, 3}, _memory_manager.get());
-  Tensor output_tensor = makeOutputTensor(DataType::BOOL);
+  test_kernel::NegTestDataLessKernel test_data_kernel;
 
-  Less kernel(&x_tensor, &y_tensor, &output_tensor);
-  ASSERT_ANY_THROW(kernel.configure());
+  MemoryManager memory_manager{};
+  RuntimeModule runtime_module{};
+  bool dealloc_input = true;
+  // Load model with single op
+  auto *model_data_raw = reinterpret_cast<const char *>(test_data_kernel.get_model_ptr());
+  EXPECT_DEATH(ModuleLoader::load(&runtime_module, &memory_manager, model_data_raw, dealloc_input),
+               "");
 }
 
 } // namespace
-} // namespace kernels
 } // namespace luci_interpreter