aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin DuBois <kevindubois@google.com>2021-02-24 04:48:53 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-02-24 04:48:53 +0000
commit8a7b19f8c8ad420dfc5e751f0b62658171282198 (patch)
tree711b33483fe6b3e4d894b1d9a948ebbffa79d8b7
parent587a007671827ff40a8abb07839b13651558ff02 (diff)
parentc2a1825c569adf2b8f0afdb44b758924fae7fa34 (diff)
downloadComputeLibrary-8a7b19f8c8ad420dfc5e751f0b62658171282198.tar.gz
ComputeLibrary: fix incorrect format specifier am: c2a1825c56
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/ComputeLibrary/+/13680869 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I3512a293741110e9d5915cfe7d7bed4043c1d2da
-rw-r--r--utils/GraphUtils.cpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/utils/GraphUtils.cpp b/utils/GraphUtils.cpp
index e543cabea..1d18fb5f9 100644
--- a/utils/GraphUtils.cpp
+++ b/utils/GraphUtils.cpp
@@ -273,15 +273,9 @@ bool ImageAccessor::access_tensor(ITensor &tensor)
std::tie(permuted_shape, perm) = compute_permutation_parameters(tensor.info()->tensor_shape(), tensor.info()->data_layout());
}
-#ifdef __arm__
ARM_COMPUTE_EXIT_ON_MSG_VAR(image_loader->width() != permuted_shape.x() || image_loader->height() != permuted_shape.y(),
- "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu32 ",%" PRIu32 "].",
+ "Failed to load image file: dimensions [%d,%d] not correct, expected [%zu ,%zu ].",
image_loader->width(), image_loader->height(), permuted_shape.x(), permuted_shape.y());
-#else // __arm__
- ARM_COMPUTE_EXIT_ON_MSG_VAR(image_loader->width() != permuted_shape.x() || image_loader->height() != permuted_shape.y(),
- "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu64 ",%" PRIu64 "].",
- image_loader->width(), image_loader->height(), permuted_shape.x(), permuted_shape.y());
-#endif // __arm__
// Fill the tensor with the PPM content (BGR)
image_loader->fill_planar_tensor(tensor, _bgr);
@@ -356,15 +350,9 @@ bool ValidationInputAccessor::access_tensor(arm_compute::ITensor &tensor)
tensor.info()->data_layout());
}
-#ifdef __arm__
- ARM_COMPUTE_EXIT_ON_MSG_VAR(jpeg.width() != permuted_shape.x() || jpeg.height() != permuted_shape.y(),
- "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu32 ",%" PRIu32 "].",
- jpeg.width(), jpeg.height(), permuted_shape.x(), permuted_shape.y());
-#else // __arm__
ARM_COMPUTE_EXIT_ON_MSG_VAR(jpeg.width() != permuted_shape.x() || jpeg.height() != permuted_shape.y(),
- "Failed to load image file: dimensions [%d,%d] not correct, expected [%" PRIu64 ",%" PRIu64 "].",
+ "Failed to load image file: dimensions [%d,%d] not correct, expected [%zu,%zu ].",
jpeg.width(), jpeg.height(), permuted_shape.x(), permuted_shape.y());
-#endif // __arm__
// Fill the tensor with the JPEG content (BGR)
jpeg.fill_planar_tensor(tensor, _bgr);