2015-04-06 05:49:27 -05:00
|
|
|
# -*- Mode:Python; explicit-buffer-name: "technology.conf<cmos065>" -*-
|
|
|
|
|
New coriolis launcher. Configuration files cleanup.
* Change: In CRL Core, simplify the loading sequence. The technology,
both symbolic and real is now loaded directly from coriolisInit.py
and not through the Alliance loader. This was a leftover from the
time configuration was in XML. Remove others traces of XML loading.
Remove SYMB_TECHNO_NAME, REAL_TECHNO_NAME & DISPLAY from the Alliance
environement, as they was no longer used.
Note that technology *still* need to be loader *after* Alliance
framework has been initialized.
Gauge information is moved from <alliance.conf> to <kite.conf>.
* Bug: In Coloquinte, in optimization_subproblems.cxx static variables
must not be inlined. Generate a problem when linking in debug mode
(seems the symbol gets optimised out).
* Bug: In Katabatic, in Grid::getGCell(), when the coordinate is *outside*
the area, do not try to find a GCell, directly return NULL.
* New: In Unicorn, create a generic command launcher named "coriolis" which
automatically take cares of all environement setup, then run a command
by default, it's <cgt>, but it can be anything. For example: <zsh>.
2015-04-13 11:54:09 -05:00
|
|
|
from Hurricane import DbU
|
|
|
|
|
|
|
|
|
2015-04-06 05:49:27 -05:00
|
|
|
technoConfig = { 'name' : 'cmos065'
|
|
|
|
, 'gridValue' : 0.005
|
|
|
|
, 'gridUnit' : DbU.UnitPowerMicro
|
|
|
|
, 'gridsPerLambda': 24
|
|
|
|
}
|
|
|
|
|
New coriolis launcher. Configuration files cleanup.
* Change: In CRL Core, simplify the loading sequence. The technology,
both symbolic and real is now loaded directly from coriolisInit.py
and not through the Alliance loader. This was a leftover from the
time configuration was in XML. Remove others traces of XML loading.
Remove SYMB_TECHNO_NAME, REAL_TECHNO_NAME & DISPLAY from the Alliance
environement, as they was no longer used.
Note that technology *still* need to be loader *after* Alliance
framework has been initialized.
Gauge information is moved from <alliance.conf> to <kite.conf>.
* Bug: In Coloquinte, in optimization_subproblems.cxx static variables
must not be inlined. Generate a problem when linking in debug mode
(seems the symbol gets optimised out).
* Bug: In Katabatic, in Grid::getGCell(), when the coordinate is *outside*
the area, do not try to find a GCell, directly return NULL.
* New: In Unicorn, create a generic command launcher named "coriolis" which
automatically take cares of all environement setup, then run a command
by default, it's <cgt>, but it can be anything. For example: <zsh>.
2015-04-13 11:54:09 -05:00
|
|
|
gdsLayersTable = \
|
2015-04-06 05:49:27 -05:00
|
|
|
( ("nWell" , "NWELL" , 3)
|
|
|
|
, ("nImplant", "NPLUS" , 26)
|
|
|
|
, ("pImplant", "PPLUS" , 25)
|
|
|
|
, ("active" , "ACTIVE" , 6)
|
|
|
|
, ("poly" , "POLY" , 17)
|
|
|
|
, ("cut0" , "C0" , 30)
|
|
|
|
, ("metal1" , "M1" , 31)
|
|
|
|
, ("cut1" , "VIA1X" , 51)
|
|
|
|
, ("metal2" , "M2X" , 32)
|
|
|
|
, ("cut2" , "VIA2X" , 52)
|
|
|
|
, ("metal3" , "M3X" , 33)
|
|
|
|
, ("cut3" , "VIA3X" , 53)
|
|
|
|
, ("metal4" , "M4X" , 34)
|
|
|
|
, ("cut4" , "VIA4X" , 54)
|
|
|
|
, ("metal5" , "M5X" , 35)
|
|
|
|
, ("cut5" , "VIA5X" , 55)
|
|
|
|
, ("metal6" , "M6X" , 36)
|
|
|
|
)
|