From 260b0c3f2d1fcdcb36a7b2d8372bfa15e0ee5c41 Mon Sep 17 00:00:00 2001 From: "zhao.xia" Date: Tue, 25 May 2021 13:33:14 +0800 Subject: [PATCH] Update Resize1d cases Fix resize1d uint8 bilinear case to float. Add new uint8 resize nearest case. Signed-off-by: zhao.xia --- src/tim/vx/ops/resize1d_test.cc | 41 ++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/src/tim/vx/ops/resize1d_test.cc b/src/tim/vx/ops/resize1d_test.cc index f01a1f7..49d97ce 100644 --- a/src/tim/vx/ops/resize1d_test.cc +++ b/src/tim/vx/ops/resize1d_test.cc @@ -77,7 +77,46 @@ TEST(Resize1d, shape_4_2_1_float_nearest_whcn) { EXPECT_TRUE(ArraysMatch(golden, output, 1e-5f)); } -TEST(Resize1d, shape_5_1_1_uint8_bilinear_align_corners_whcn) { +TEST(Resize1d, shape_4_2_1_uint8_nearest_whcn) { + auto ctx = tim::vx::Context::Create(); + auto graph = ctx->CreateGraph(); + + tim::vx::ShapeType input_shape({4, 2, 1}); + tim::vx::ShapeType output_shape({2, 2, 1}); + tim::vx::Quantization input_quant(tim::vx::QuantType::ASYMMETRIC, 1, 0); + tim::vx::Quantization output_quant(tim::vx::QuantType::ASYMMETRIC, 1, 0); + tim::vx::TensorSpec input_spec(tim::vx::DataType::UINT8, + input_shape, tim::vx::TensorAttribute::INPUT, input_quant); + tim::vx::TensorSpec output_spec(tim::vx::DataType::UINT8, + output_shape, tim::vx::TensorAttribute::OUTPUT, output_quant); + + auto input_tensor = graph->CreateTensor(input_spec); + auto output_tensor = graph->CreateTensor(output_spec); + + std::vector in_data = { + 1, 2, 3, 4, + 5, 6, 7, 8, + }; + std::vector golden = { + 1, 3, + 5, 7, + }; + + EXPECT_TRUE(input_tensor->CopyDataToTensor(in_data.data(), in_data.size())); + + auto op = graph->CreateOperation( + tim::vx::ResizeType::NEAREST_NEIGHBOR, 0.6, false, false, 0); + (*op).BindInputs({input_tensor}).BindOutputs({output_tensor}); + + EXPECT_TRUE(graph->Compile()); + EXPECT_TRUE(graph->Run()); + + std::vector output(golden.size()); + EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data())); + EXPECT_EQ(golden, output); +} + +TEST(Resize1d, shape_5_1_1_float_bilinear_align_corners_whcn) { auto ctx = tim::vx::Context::Create(); auto graph = ctx->CreateGraph();