From c259bbd397818f25ddf7b203838c5d59e6cc475f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 16 Jun 2022 10:22:27 +0200 Subject: [PATCH] Don't use array dimensions zero for CellInstArray - some placed fixed (related to https://github.com/KLayout/klayout/issues/1096) --- sky130_tech/tech/sky130/pymacros/sky130_pcells/pmos18.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sky130_tech/tech/sky130/pymacros/sky130_pcells/pmos18.py b/sky130_tech/tech/sky130/pymacros/sky130_pcells/pmos18.py index da2df3b2..ff80a979 100644 --- a/sky130_tech/tech/sky130/pymacros/sky130_pcells/pmos18.py +++ b/sky130_tech/tech/sky130/pymacros/sky130_pcells/pmos18.py @@ -472,7 +472,7 @@ def produce_impl(self): upper_connection = pya.CellInstArray(up_gate_connection.cell_index(), pya.Trans(pya.Point(shift_distance, 0)), pya.Vector(up_iteration_distance, 0), pya.Vector(iteration_distance_group, 0), up_iteration, - nf / self.n - math.ceil(nf / (2 * self.n))) + max(1, nf / self.n - math.ceil(nf / (2 * self.n)))) nmos_cell.insert(upper_connection) # fingers = pya.CellInstArray(gate_cell.cell_index(), pya.Trans(pya.Point(0, 0)), @@ -499,7 +499,7 @@ def produce_impl(self): pya.Trans(pya.Point(0, 0)), pya.Vector(diffusion_width_big + channel_length, 0), pya.Vector(0, 0), - nf + 1, 0) + nf + 1, 1) nmos_cell.insert(licon_between_fingers_arr) # mcon_diff_sides_arr = pya.CellInstArray(mcon_tran_sides_cell.cell_index(), @@ -515,7 +515,7 @@ def produce_impl(self): multiple_transistors = pya.CellInstArray(nmos_cell.cell_index(), pya.Trans(pya.Point(0, 0)), pya.Vector(diffusion_total_width + 2 * npsdm_enc_diff + npsdm_spc, 0), - pya.Vector(0, 0), multipliers, 0) + pya.Vector(0, 0), multipliers, 1) self.cell.insert(multiple_transistors)