From c6dca8848f4d2b3d8402edf0a5abd067e403b1ff Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 19 Feb 2020 23:08:01 +0000 Subject: [PATCH] increase etesian, set clock to clk --- coriolis2/settings.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/coriolis2/settings.py b/coriolis2/settings.py index a22a9ea..a04ab9d 100644 --- a/coriolis2/settings.py +++ b/coriolis2/settings.py @@ -1,6 +1,7 @@ # -*- Mode:Python -*- import Cfg +import CRL import Viewer import symbolic.cmos from helpers import l, u, n @@ -21,7 +22,7 @@ Cfg.getParamBool ( 'misc.verboseLevel2' ).setBool ( True ) #Cfg.getParamInt ( 'misc.minTraceLevel' ).setInt ( 159 ) #Cfg.getParamInt ( 'misc.maxTraceLevel' ).setInt ( 160 ) Cfg.getParamEnumerate ( 'etesian.effort' ).setInt ( 2 ) -Cfg.getParamPercentage( 'etesian.spaceMargin' ).setPercentage( 5.0 ) +Cfg.getParamPercentage( 'etesian.spaceMargin' ).setPercentage( 50.0 ) Cfg.getParamPercentage( 'etesian.aspectRatio' ).setPercentage( 100.0 ) Cfg.getParamBool ( 'etesian.uniformDensity' ).setBool ( True ) Cfg.getParamInt ( 'anabatic.edgeLenght' ).setInt ( 24 ) @@ -34,4 +35,8 @@ Cfg.getParamInt ( 'katana.vTracksReservedLocal' ).setInt ( 6 ) Cfg.Configuration.popDefaultPriority() +af = CRL.AllianceFramework.get() +env = af.getEnvironment() +env.setCLOCK( '^clk$|m_clock' ) + print 'Successfully read user configuration' -- 2.30.2