aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/stats_writer.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/stats_writer.py')
-rw-r--r--ethosu/vela/stats_writer.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/ethosu/vela/stats_writer.py b/ethosu/vela/stats_writer.py
index d8a274b0..22605a6b 100644
--- a/ethosu/vela/stats_writer.py
+++ b/ethosu/vela/stats_writer.py
@@ -256,7 +256,8 @@ def print_performance_metrics_for_strat(
label += " bandwidth"
bandwidth = arch.memory_bandwidths_per_second[mem_area] / 1000.0 / 1000 / 1000
print(
- f"Design peak {label:25} {bandwidth:12.2f} GB/s", file=f,
+ f"Design peak {label:25} {bandwidth:12.2f} GB/s",
+ file=f,
)
print(file=f)
for mem_area, label in mem_area_labels:
@@ -302,7 +303,8 @@ def print_performance_metrics_for_strat(
fm_bws = bws[TensorPurpose.FeatureMap]
aug_label = label + " bandwidth"
print(
- f"Average {aug_label:25} {total_bw * midpoint_fps / 1000.0 / 1000.0 / 1000.0:12.2f} GB/s", file=f,
+ f"Average {aug_label:25} {total_bw * midpoint_fps / 1000.0 / 1000.0 / 1000.0:12.2f} GB/s",
+ file=f,
)
print(
f"Input {aug_label:25} {np.sum(fm_bws[BandwidthDirection.Read]) / 1000.0 / 1000.0:12.2f} MB/batch",
@@ -328,10 +330,12 @@ def print_performance_metrics_for_strat(
print(file=f)
print(
- f"Neural network macs {int(macs):12d} MACs/batch", file=f,
+ f"Neural network macs {int(macs):12d} MACs/batch",
+ file=f,
)
print(
- f"Network Tops/s {macs * 2 * midpoint_fps / 1e12:12.2f} Tops/s", file=f,
+ f"Network Tops/s {macs * 2 * midpoint_fps / 1e12:12.2f} Tops/s",
+ file=f,
)
print(file=f)