From 231f90f4923510f7691d537a12a10ddc11af14e2 Mon Sep 17 00:00:00 2001 From: mrg Date: Fri, 19 Jun 2020 06:47:46 -0700 Subject: [PATCH] Fix missing space in ptx spice line --- compiler/pgates/ptx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/pgates/ptx.py b/compiler/pgates/ptx.py index c4c53a70..fb127158 100644 --- a/compiler/pgates/ptx.py +++ b/compiler/pgates/ptx.py @@ -134,7 +134,7 @@ class ptx(design.design): if OPTS.tech_name == "sky130": # sky130 technology is in microns, also needs mult parameter (self.tx_width, self.mults) = pgate.bin_width(self.tx_type, self.tx_width) - main_str = "M{{0}} {{1}} {0} m={1} w={2} l={3}".format(spice[self.tx_type], + main_str = "M{{0}} {{1}} {0} m={1} w={2} l={3} ".format(spice[self.tx_type], self.mults, self.tx_width, drc("minwidth_poly"))