From f20d60b428a9e313866a703f68d5b6e638e296c2 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 22 Aug 2019 02:13:22 +0100 Subject: [PATCH] rename inputs to not include [] --- src/ieee754/part_mul_add/multiply.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ieee754/part_mul_add/multiply.py b/src/ieee754/part_mul_add/multiply.py index 93b1e228..6f770842 100644 --- a/src/ieee754/part_mul_add/multiply.py +++ b/src/ieee754/part_mul_add/multiply.py @@ -301,7 +301,7 @@ class AddReduceData: def __init__(self, ppoints, n_inputs, output_width, n_parts): self.part_ops = [Signal(2, name=f"part_ops_{i}", reset_less=True) for i in range(n_parts)] - self.inputs = [Signal(output_width, name=f"inputs[{i}]", + self.inputs = [Signal(output_width, name=f"inputs_{i}", reset_less=True) for i in range(n_inputs)] self.reg_partition_points = ppoints.like() -- 2.30.2