aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiqing Zhong <diqing.zhong@arm.com>2021-01-12 12:39:44 +0100
committerDiqing Zhong <diqing.zhong@arm.com>2021-01-12 12:41:05 +0100
commit49b4f1c88d2825d8708c38092fa71103d5931d8c (patch)
tree6527873be7a2ac8404e312c4ccbba0a52ffedda5
parent0a261cd279aeec29a8910960d6c763f69d74c41a (diff)
downloadethos-u-vela-49b4f1c88d2825d8708c38092fa71103d5931d8c.tar.gz
MLBEDSW-3769: Fix print error
Change-Id: I464528510d6646ac685a31c1b3355252f44d2692 Signed-off-by: Diqing Zhong <diqing.zhong@arm.com>
-rw-r--r--ethosu/vela/stats_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/stats_writer.py b/ethosu/vela/stats_writer.py
index 02d95d8..70b3ffb 100644
--- a/ethosu/vela/stats_writer.py
+++ b/ethosu/vela/stats_writer.py
@@ -284,7 +284,7 @@ def print_performance_metrics_for_strat(
if n_operations > 0:
print(
f"{n_cpu_operations:d}/{n_operations:d}"
- f" ({n_cpu_operations / n_operations * 100:4.1%}) operations falling back to the CPU",
+ f" ({n_cpu_operations / n_operations:4.1%}) operations falling back to the CPU",
file=f,
)