We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3342dc5 commit 3d28f7fCopy full SHA for 3d28f7f
flow/util/genMetrics.py
@@ -302,8 +302,12 @@ def extract_metrics(
302
required=False,
303
)
304
305
- floorplan_swapped = metrics_dict.get("floorplan__swapped_arithmetic_module_count", 0)
306
- placeopt_swapped = metrics_dict.get("placeopt__swapped_arithmetic_module_count", 0)
+ floorplan_swapped = metrics_dict.get(
+ "floorplan__swapped_arithmetic_module_count", 0
307
+ )
308
+ placeopt_swapped = metrics_dict.get(
309
+ "placeopt__swapped_arithmetic_module_count", 0
310
311
total_swapped = int(floorplan_swapped) + int(placeopt_swapped)
312
metrics_dict["finish__swapped_arithmetic_module_count"] = total_swapped
313
0 commit comments