From a19d50d4d27b17e18660e9881e610f7b72976123 Mon Sep 17 00:00:00 2001 From: Zlobin Vladimir Date: Mon, 30 Jan 2023 18:31:12 +0400 Subject: [PATCH] benchmark_app: fix FP16 image type (#15393) --- samples/cpp/benchmark_app/inputs_filling.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/cpp/benchmark_app/inputs_filling.cpp b/samples/cpp/benchmark_app/inputs_filling.cpp index c87ce674809..ddab40e938a 100644 --- a/samples/cpp/benchmark_app/inputs_filling.cpp +++ b/samples/cpp/benchmark_app/inputs_filling.cpp @@ -216,12 +216,12 @@ ov::Tensor get_image_tensor(const std::vector& files, inputInfo.first, filenames_used); } else if (type == ov::element::f16) { - return create_tensor_from_image(files, - inputId, - batchSize, - inputInfo.second, - inputInfo.first, - filenames_used); + return create_tensor_from_image(files, + inputId, + batchSize, + inputInfo.second, + inputInfo.first, + filenames_used); } else if (type == ov::element::f64) { return create_tensor_from_image(files, inputId,