aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2018-09-05 16:33:58 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-09-25 14:54:07 +0100
commit2b7a1581f18b88b55153d4edc5cee0e602fd1bfc (patch)
treecb5e1c662cbea2d3e6446d783fe181a60ab29c9c /tests
parentecb56cd7ce8b45966b3fc6db89441c2c00d74975 (diff)
downloadarmnn-2b7a1581f18b88b55153d4edc5cee0e602fd1bfc.tar.gz
MLCE-52 Where has PROFILING gone?
* Call the Print() function on the Profiler when profiling is enabled. Change-Id: I4c06ce9bfa961ac8d81d02a516502337d1fbc968
Diffstat (limited to 'tests')
-rw-r--r--tests/InferenceModel.hpp7
-rw-r--r--tests/InferenceTest.cpp6
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/InferenceModel.hpp b/tests/InferenceModel.hpp
index c20dd3e4b5..6b81f80cbc 100644
--- a/tests/InferenceModel.hpp
+++ b/tests/InferenceModel.hpp
@@ -299,6 +299,13 @@ public:
armnn::Status ret = m_Runtime->EnqueueWorkload(m_NetworkIdentifier,
MakeInputTensors(input),
MakeOutputTensors(output));
+
+ // if profiling is enabled print out the results
+ if (profiler && profiler->IsProfilingEnabled())
+ {
+ profiler->Print(std::cout);
+ }
+
if (ret == armnn::Status::Failure)
{
throw armnn::Exception("IRuntime::EnqueueWorkload failed");
diff --git a/tests/InferenceTest.cpp b/tests/InferenceTest.cpp
index f9a3c68e77..8733bc53a0 100644
--- a/tests/InferenceTest.cpp
+++ b/tests/InferenceTest.cpp
@@ -231,6 +231,12 @@ bool InferenceTest(const InferenceTestOptions& params,
BOOST_LOG_TRIVIAL(info) << std::fixed << std::setprecision(3) <<
"Average time per test case: " << averageTimePerTestCaseMs << " ms";
+ // if profiling is enabled print out the results
+ if (profiler && profiler->IsProfilingEnabled())
+ {
+ profiler->Print(std::cout);
+ }
+
if (!success)
{
BOOST_LOG_TRIVIAL(error) << "One or more test cases failed";