2012-11-16 07:07:11 -06:00
|
|
|
# -*- mode:Python -*-
|
|
|
|
# This file is *not* a Python module but will be executed
|
|
|
|
# inside a Python function.
|
|
|
|
|
|
|
|
|
|
|
|
projectdir = 'coriolis-2.x'
|
|
|
|
|
2015-04-08 04:00:19 -05:00
|
|
|
projects = [
|
2016-01-20 17:25:39 -06:00
|
|
|
{ 'name' : "support"
|
|
|
|
, 'tools' : [ "rapidjson"
|
|
|
|
]
|
|
|
|
, 'repository': 'No_repository_for_support'
|
|
|
|
}
|
|
|
|
, { 'name' : "coriolis"
|
Cleanup after SVN importation, <ccb> builder script adaptation.
Project hierarchy reorganisation:
* With svn, we were doing a tool by tool checkout, suppressing the
whole repository hierarchy level.
* The tools were also grouped, inside one repository, into multiple
projects (<bootstrap>, <vlsisapd>, <coriolis>).
* We do not want to split up each tool into a separate repository,
given their tight integration (except for vlsisapd).
* We choose to simplify, and consider all tools in a svn repository
one project. Due to the way Git clone repositories, the directory
containing the project is now to be seen under "src/".
CMake modifications:
* Now that the <vlsisapd> and <bootstrap> projects are merged into
coriolis, modificate the top CMakeLists.txt of each tool to uses
only Coriolis (and bootstrap hard wired).
CCB compile script modifications:
* Uses the new source tree hierarchy, with the project directory
inserted.
* Remove (comment) all parts relateds to svn managment.
* Git is sufficiently simple so that we do not want to integrate
command shortcut into the script.
SVN cleanup:
* Remove the obsolete <chamsin> tool, that has become the full fledged
<chams> project long time ago.
2014-02-26 11:24:41 -06:00
|
|
|
, 'tools' : [ "bootstrap"
|
|
|
|
, "vlsisapd"
|
|
|
|
, "hurricane"
|
2012-11-16 07:07:11 -06:00
|
|
|
, "crlcore"
|
2015-03-17 16:50:00 -05:00
|
|
|
#, "nimbus"
|
|
|
|
#, "metis"
|
|
|
|
#, "mauka"
|
2016-05-23 09:15:25 -05:00
|
|
|
, "anabatic"
|
2015-04-20 07:49:12 -05:00
|
|
|
, "knik"
|
2015-04-19 13:11:43 -05:00
|
|
|
, "katabatic"
|
2015-04-20 07:49:12 -05:00
|
|
|
, "kite"
|
2015-04-08 04:00:19 -05:00
|
|
|
, "coloquinte"
|
Update to Qt 5, requires cmake 2.8.9. New placer: Etesian.
Update to Qt 5:
* Change: Now requires at least cmake 2.8.9.
* Change: CMakeLists.txt needs small changes. Qt modules must be found
one by one (Core, Gui, Widgets). Must add "set(CMAKE_AUTOMOC ON)"
in the top file and replace "qt4" prefix in macros by "qt5".
Added simpler macro "setup_qt()" in FindBootstrap.cmake.
* Change: No longer need to include <QGtkStyle> is is choosen by default
according to the current desktop environment.
* Change: In <hurricane>, In HApplication, launch ExceptionWidget when
a std::exception is catched instead of silently discarting it.
New placer Tool: Etesian
* New: <etesian> analytical placer. Encapsulate Coloquinte from
Gabriel Gouvine.
* New: in <documentation>, add stub demonstration ToolEngine <smurf>.
Needs to be commented.
Miscellaneous:
* New: in <boostrap> and <unicorn>, added support for Etesian, the new
analytic placer. The tool itself will be added in the next commit.
* Bug: in <CellWidget>, when shifting the display buffer, we no longer
can copy the buffer on itself (we should never have). Now go through
a temporary one (PlaneId::AutoCopy) which is added to the
DrawingPlanes. Affect "goLeft()" and "goUp()".
* Bug: In <CellWidget>, remove the WA_PaintOnScreen flag/attribute.
When it's on, no PaintEvent is transmitted to the CellWidget
when it's the central widget of the <CellViewer> (QMainWindow).
It's something I still don't understand from the doc of Qt.
* Change: In <AreaCommand>, use the PlaneId enumeration instead of a
anonymous numerical index.
* Change: In <HApplication>, no longer catch and silently discard
standartd exceptions but launch the ExceptionWidget...
Suppress the now deprecated constructor with "Type" argument.
* Change: In <SelectionModel>, the "reset()" method is deprecated in
Qt5, instead enclose the "clear()" by a "beginResetModel()" and
"endResetModel()" pair.
* New: In <crlcore>, add support for ISPD05 benchmarks (in Bookshelf
format). Forked from ISPD04 and not finished yet.
* Change: In <Mauka>, distinguish the Action string identifier from
<Etesian>
* New: In <unicorn>, add entry for ISPD05 loader. Add entry for
<Etesian> analytic placer.
2014-03-22 05:50:36 -05:00
|
|
|
, "etesian"
|
2012-11-16 07:07:11 -06:00
|
|
|
, "equinox"
|
|
|
|
, "solstice"
|
|
|
|
, "unicorn"
|
2013-12-03 20:11:21 -06:00
|
|
|
#, "testbench"
|
2012-11-16 07:07:11 -06:00
|
|
|
#, "ispd"
|
|
|
|
, "cumulus"
|
|
|
|
, "stratus1"
|
2014-03-10 08:06:31 -05:00
|
|
|
, "documentation"
|
2012-11-16 07:07:11 -06:00
|
|
|
]
|
Cleanup after SVN importation, <ccb> builder script adaptation.
Project hierarchy reorganisation:
* With svn, we were doing a tool by tool checkout, suppressing the
whole repository hierarchy level.
* The tools were also grouped, inside one repository, into multiple
projects (<bootstrap>, <vlsisapd>, <coriolis>).
* We do not want to split up each tool into a separate repository,
given their tight integration (except for vlsisapd).
* We choose to simplify, and consider all tools in a svn repository
one project. Due to the way Git clone repositories, the directory
containing the project is now to be seen under "src/".
CMake modifications:
* Now that the <vlsisapd> and <bootstrap> projects are merged into
coriolis, modificate the top CMakeLists.txt of each tool to uses
only Coriolis (and bootstrap hard wired).
CCB compile script modifications:
* Uses the new source tree hierarchy, with the project directory
inserted.
* Remove (comment) all parts relateds to svn managment.
* Git is sufficiently simple so that we do not want to integrate
command shortcut into the script.
SVN cleanup:
* Remove the obsolete <chamsin> tool, that has become the full fledged
<chams> project long time ago.
2014-02-26 11:24:41 -06:00
|
|
|
, 'repository': 'ssh://asim-t/users/largo2/git/coriolis.git' }
|
|
|
|
|
2014-03-02 04:45:42 -06:00
|
|
|
, { 'name' : "chams"
|
|
|
|
, 'tools' : [ "hurricaneAMS"
|
|
|
|
, "amsCore"
|
|
|
|
, "opSim"
|
Integration of the latest Coloquinte in Etesian & misc modifs.
* New: In Bootstrap, in Builder & coriolisEnv.py support for RHEL7/SL7.
The sub-directory name is 'el7_64'.
In qt_setup() add QtSvg to list of Qt5 & Qt4 used libraries.
* New: In Hurricane, In Cell add a placeholder for flags. First use to
store whether the Nets have been transhierarchically flatteneds.
* New: In Hurricane, In NetRoutingState add an Unconnected flag for
more accurate diagnosis.
* New: Hurricane, in CellViewer add an entry menu for stress tests.
The script must be named "stressScript.py" in the cwd.
* Change: In CRL Core, in display.conf add a scaling parameter for the
display threhold of the layer. This way we can adapt to different
standard cells height.
* Change: In CRL Core, in ISPD05 bookshelf loader, use the pitch of the
cell gauge instead of a hard-wired 5.0.
* Change: In Cumulus, in ClockTreePlugin, add support for Etesian placer
and a new configuration parameter to choose between Mauka/Etesian.
* New: In Etesian, support for the latest Coloquinte.
Add feed insertion stage.
* Bug: In Kite, In BuildPowerRails, check that _ck is not NULL before
tring to access it's name...
* Change: In Kite, check if the Cell has it's Nets flattened before
doing it (or not).
2015-02-01 16:24:13 -06:00
|
|
|
#, "scribe"
|
2014-03-02 04:45:42 -06:00
|
|
|
, "graph"
|
|
|
|
, "pharos"
|
|
|
|
, "isis"
|
2016-02-16 12:21:37 -06:00
|
|
|
, "horus"
|
Integration of the latest Coloquinte in Etesian & misc modifs.
* New: In Bootstrap, in Builder & coriolisEnv.py support for RHEL7/SL7.
The sub-directory name is 'el7_64'.
In qt_setup() add QtSvg to list of Qt5 & Qt4 used libraries.
* New: In Hurricane, In Cell add a placeholder for flags. First use to
store whether the Nets have been transhierarchically flatteneds.
* New: In Hurricane, In NetRoutingState add an Unconnected flag for
more accurate diagnosis.
* New: Hurricane, in CellViewer add an entry menu for stress tests.
The script must be named "stressScript.py" in the cwd.
* Change: In CRL Core, in display.conf add a scaling parameter for the
display threhold of the layer. This way we can adapt to different
standard cells height.
* Change: In CRL Core, in ISPD05 bookshelf loader, use the pitch of the
cell gauge instead of a hard-wired 5.0.
* Change: In Cumulus, in ClockTreePlugin, add support for Etesian placer
and a new configuration parameter to choose between Mauka/Etesian.
* New: In Etesian, support for the latest Coloquinte.
Add feed insertion stage.
* Bug: In Kite, In BuildPowerRails, check that _ck is not NULL before
tring to access it's name...
* Change: In Kite, check if the Cell has it's Nets flattened before
doing it (or not).
2015-02-01 16:24:13 -06:00
|
|
|
#, "schematic"
|
2014-03-02 04:45:42 -06:00
|
|
|
, "solver"
|
|
|
|
, "autoDTR"
|
|
|
|
]
|
|
|
|
, 'repository':"ssh://melon-t/users/outil/chams/chams.git" }
|
2012-11-16 07:07:11 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
package = { 'name' : 'coriolis2'
|
2015-04-07 17:13:27 -05:00
|
|
|
, 'version' : '2.1'
|
2012-11-16 07:07:11 -06:00
|
|
|
, 'excludes': [ 'vlsisapd/src/openChams'
|
|
|
|
, 'vlsisapd/doc/openChams'
|
|
|
|
, 'vlsisapd/examples/openChams'
|
|
|
|
, 'vlsisapd/src/dtr'
|
|
|
|
, 'vlsisapd/doc/dtr'
|
|
|
|
, 'vlsisapd/examples/dtr'
|
|
|
|
, 'vlsisapd/doc/html'
|
|
|
|
, 'vlsisapd/doc/latex'
|
|
|
|
, 'hurricane/doc/viewer/html'
|
|
|
|
, 'hurricane/doc/viewer/latex'
|
|
|
|
, 'hurricane/doc/hurricane/html'
|
|
|
|
, 'hurricane/doc/hurricane/latex'
|
|
|
|
, 'crlcore/doc/crlcore/html'
|
|
|
|
, 'crlcore/doc/crlcore/latex'
|
|
|
|
, 'crlcore/doc/doxygen'
|
|
|
|
, 'katabatic/doc'
|
|
|
|
, 'kite/doc'
|
|
|
|
, 'unicorn/doc/html'
|
|
|
|
, 'unicorn/doc/latex'
|
|
|
|
]
|
2015-04-07 17:13:27 -05:00
|
|
|
, 'projects': [ 'coriolis'
|
2012-11-16 07:07:11 -06:00
|
|
|
]
|
|
|
|
}
|