aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Israelsson <alexander.israelsson@arm.com>2022-02-15 09:03:48 +0100
committerHenrik Hoglind <henrik.hoglind@arm.com>2022-02-15 12:45:23 +0100
commitcd8754ec0fbedbe79288d6132f3c3e33318665e8 (patch)
treec90e836ef9e4f175b83237cd5c5d1651e8d0f488
parent4a25eb354297a82eb044ed317a5fd7cd3a454620 (diff)
downloadethos-u-core-platform-22.02-rc2.tar.gz
Skip printing OFM with message_handler22.02-rc2
Some networks have very big OFM which will completely fill the output buffer and hide more important information. The OFM is already saved as a file and does not need to be included in the output. Change-Id: I4174fd799ba2f31f187d5bf2718a92a19ecee5c1
-rw-r--r--applications/message_handler/message_handler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/message_handler/message_handler.cpp b/applications/message_handler/message_handler.cpp
index 817255f..f95d5f6 100644
--- a/applications/message_handler/message_handler.cpp
+++ b/applications/message_handler/message_handler.cpp
@@ -243,7 +243,7 @@ void InferenceHandler::runInference(ethosu_core_inference_req &req, ethosu_core_
ofm.push_back(InferenceProcess::DataPtr(reinterpret_cast<void *>(req.ofm[i].ptr), req.ofm[i].size));
}
- InferenceProcess::InferenceJob job("job", networkModel, ifm, ofm, {}, -1, this);
+ InferenceProcess::InferenceJob job("job", networkModel, ifm, ofm, {}, 0, this);
/*
* Run inference