aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/resize_bilinear_op_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/resize_bilinear_op_test.cc')
-rw-r--r--tensorflow/core/kernels/resize_bilinear_op_test.cc35
1 files changed, 18 insertions, 17 deletions
diff --git a/tensorflow/core/kernels/resize_bilinear_op_test.cc b/tensorflow/core/kernels/resize_bilinear_op_test.cc
index deb36849e7..66836ff788 100644
--- a/tensorflow/core/kernels/resize_bilinear_op_test.cc
+++ b/tensorflow/core/kernels/resize_bilinear_op_test.cc
@@ -95,9 +95,10 @@ TEST_F(ResizeBilinearOpTest, TestBilinear2x2To3x3) {
// clang-format off
test::FillValues<float>(&expected,
- {1, 5.0/3, 2,
- 7.0/3, 3, 10.0/3,
- 3, 11.0/3, 4});
+ {1, 5.0f / 3, 2,
+ 7.0f / 3, 3, 10.0f / 3,
+ 3, 11.0f / 3, 4});
+
// clang-format on
test::ExpectTensorEqual<float>(expected, *GetOutput(0));
@@ -206,9 +207,9 @@ TEST_F(ResizeBilinearOpTest, TestBilinear4x4To3x3) {
// clang-format off
test::FillValues<float>(&expected,
- {1, 7.0/3, 11.0/3,
- 19.0/3, 23.0/3, 27.0/3,
- 35.0/3, 39.0/3, 43.0/3});
+ {1, 7.0f/3, 11.0f/3,
+ 19.0f/3, 23.0f/3, 27.0f/3,
+ 35.0f/3, 39.0f/3, 43.0f/3});
// clang-format on
test::ExpectTensorEqual<float>(expected, *GetOutput(0));
@@ -251,8 +252,8 @@ TEST_F(ResizeBilinearOpTest, TestBilinear2x2To3x3Batch2) {
Tensor expected(allocator(), DT_FLOAT, TensorShape({2, 3, 3, 1}));
// clang-format off
test::FillValues<float>(&expected,
- {1, 5.0/3, 2, 7.0/3, 3, 10.0/3, 3, 11.0/3, 4,
- 1, 5.0/3, 2, 7.0/3, 3, 10.0/3, 3, 11.0/3, 4
+ {1, 5.0f/3, 2, 7.0f/3, 3, 10.0f/3, 3, 11.0f/3, 4,
+ 1, 5.0f/3, 2, 7.0f/3, 3, 10.0f/3, 3, 11.0f/3, 4
});
// clang-format on
test::ExpectTensorEqual<float>(expected, *GetOutput(0));
@@ -268,15 +269,15 @@ TEST_F(ResizeBilinearOpTest, TestBilinear2x2x2To3x3x2) {
// clang-format off
test::FillValues<float>(&expected,
{
- 1, -1,
- 5.0/3, -5.0/3,
- 2, -2,
- 7.0/3, -7.0/3,
- 3, -3,
- 10.0/3, -10.0/3,
- 3, -3,
- 11.0/3, -11.0/3,
- 4, -4
+ 1, -1,
+ 5.0f/3, -5.0f/3,
+ 2, -2,
+ 7.0f/3, -7.0f/3,
+ 3, -3,
+ 10.0f/3, -10.0f/3,
+ 3, -3,
+ 11.0f/3, -11.0f/3,
+ 4, -4
});
// clang-format on
test::ExpectTensorEqual<float>(expected, *GetOutput(0));