From 0d721c7f0ff5c43d9aaaec28a7c9e027f2b85ef1 Mon Sep 17 00:00:00 2001 From: Thibaut Goetghebuer-Planchon <thibaut.goetghebuer-planchon@arm.com> Date: Thu, 5 Nov 2020 08:17:10 +0000 Subject: [PATCH] Adapt new test from the master branch to the name change of the integer bilinear resize kernel --- tensorflow/lite/kernels/internal/resize_bilinear_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/lite/kernels/internal/resize_bilinear_test.cc b/tensorflow/lite/kernels/internal/resize_bilinear_test.cc index a29082dbf9a..0b024bdb970 100644 --- a/tensorflow/lite/kernels/internal/resize_bilinear_test.cc +++ b/tensorflow/lite/kernels/internal/resize_bilinear_test.cc @@ -312,7 +312,7 @@ TEST(ResizeBilinear, TestResizeBilinearHalfPixelCenters_2x2to4x6_Int8) { op_params.half_pixel_centers = false; // Test with half_pixel_centers = false. - reference_ops::ResizeBilinear( + reference_ops::ResizeBilinearInteger( op_params, input_dims_inference, input_data.data(), output_size_dims, output_size_data.data(), output_dims_inference, output_data.data()); // clang-format off @@ -335,7 +335,7 @@ TEST(ResizeBilinear, TestResizeBilinearHalfPixelCenters_2x2to4x6_Int8) { // Test with half_pixel_centers = true. op_params.half_pixel_centers = true; - reference_ops::ResizeBilinear( + reference_ops::ResizeBilinearInteger( op_params, input_dims_inference, input_data.data(), output_size_dims, output_size_data.data(), output_dims_inference, output_data.data()); // clang-format off