aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2020-11-27 12:09:01 +0100
committerKristofer Jonsson <kristofer.jonsson@arm.com>2020-11-27 12:09:01 +0100
commitf1bda569bdc7812cef48a234bfe99321ef2e56fd (patch)
treef56e0e15e08d2ea352901a4fe682262ed1f5d7ae
parent9fc527b8b01847b16a8aa577dec4c6d9401a2ef0 (diff)
downloadethos-u-core-software-20.11.tar.gz
Remove debug prints20.11
Change-Id: Ib0be731c8c42f3e1ca4c8bf53d8b226e9757eecf
-rw-r--r--applications/inference_process/src/inference_process.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/applications/inference_process/src/inference_process.cc b/applications/inference_process/src/inference_process.cc
index 61db73d..ecf6144 100644
--- a/applications/inference_process/src/inference_process.cc
+++ b/applications/inference_process/src/inference_process.cc
@@ -89,14 +89,12 @@ DataPtr::DataPtr(void *_data, size_t _size) : data(_data), size(_size) {}
void DataPtr::invalidate() {
#if defined(__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
- printf("Invalidate. data=%p, size=%zu\n", data, size);
SCB_InvalidateDCache_by_Addr(reinterpret_cast<uint32_t *>(data), size);
#endif
}
void DataPtr::clean() {
#if defined(__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
- printf("Clean. data=%p, size=%zu\n", data, size);
SCB_CleanDCache_by_Addr(reinterpret_cast<uint32_t *>(data), size);
#endif
}