aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViet-Hoa Do <viet-hoa.do@arm.com>2022-05-30 10:02:59 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2022-05-31 13:22:44 +0000
commitf28abef4b1364d1e9e4f966703179a46bd85fa97 (patch)
treeef56c4551b9a5d94b98accd1b86984607fceec38
parentaa79405dd93e44ca7e8af5f3baf3e076399d0136 (diff)
downloadComputeLibrary-f28abef4b1364d1e9e4f966703179a46bd85fa97.tar.gz
Fix compilation error in 32-bit with logging build
* Use %zu format specifier for size_t data. Resolves: COMPMID-5377 Change-Id: I84e6aea8ab34ca4616eeecfb06d573eaa329bd67 Signed-off-by: Viet-Hoa Do <viet-hoa.do@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7649 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/runtime/IScheduler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/IScheduler.cpp b/src/runtime/IScheduler.cpp
index 1d068c9b38..39f41555fa 100644
--- a/src/runtime/IScheduler.cpp
+++ b/src/runtime/IScheduler.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2021 Arm Limited.
+ * Copyright (c) 2016-2022 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -188,7 +188,7 @@ std::size_t IScheduler::adjust_num_of_windows(const Window &window, std::size_t
recommended_split_dim = dims;
}
}
- ARM_COMPUTE_LOG_INFO_MSG_WITH_FORMAT_CORE("%lu dimension is not a suitable dimension to split the workload. Recommended: %lu recommended_split_dim", split_dimension,
+ ARM_COMPUTE_LOG_INFO_MSG_WITH_FORMAT_CORE("%zu dimension is not a suitable dimension to split the workload. Recommended: %zu recommended_split_dim", split_dimension,
recommended_split_dim);
}