From b8fec3da8c3d8bdb75c46ce03ae91e82421c2f29 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 20 Feb 2021 12:37:54 +0000 Subject: [PATCH] expand core size to 28000 --- experiments9/doDesign.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/experiments9/doDesign.py b/experiments9/doDesign.py index 890564d..0253e78 100644 --- a/experiments9/doDesign.py +++ b/experiments9/doDesign.py @@ -25,7 +25,7 @@ def scriptMain (**kw): """The mandatory function to be called by Coriolis CGT/Unicorn.""" global af rvalue = True - coreSize = 26000 + coreSize = 28000 cwd = os.path.split( os.path.abspath(__file__) )[0] ioSpecs = IoSpecs() ioSpecs.loadFromPinmux( '{}/ls180/litex_pinpads.json'.format(cwd) ) @@ -34,8 +34,8 @@ def scriptMain (**kw): cell, editor = plugins.kwParseMain( **kw ) cell = af.getCell( 'ls180', CRL.Catalog.State.Logical ) if cell is None: - print( ErrorMessage( 2, 'doDesign.scriptMain(): Unable to load cell "{}".' \ - .format('ls180') )) + print( ErrorMessage( 2, 'doDesign.scriptMain(): Unable to ' + 'load cell "{}".'.format('ls180') )) sys.exit(1) if editor: editor.setCell( cell ) ls180Conf = ChipConf( cell, ioPads=ioSpecs.ioPadsSpec ) -- 2.30.2