├── .gitignore ├── README.md ├── ResearchLog.odt ├── adaptec3 ├── adaptec3.aux ├── adaptec3.nets ├── adaptec3.nodes ├── adaptec3.pl ├── adaptec3.scl └── adaptec3.wts ├── code ├── AnalyticalSolve │ ├── AnalyticalSolve.h │ ├── GenSolveTD.cxx │ ├── GenSolveWL.cxx │ ├── Makefile │ ├── NonLinearSolve.cxx │ ├── SolverCommon.cxx │ ├── backup │ │ ├── AnalyticalSolve.h │ │ ├── AnalyticalSolveMain.cxx │ │ ├── AnalyticalSolveOldWorking.cxx │ │ ├── AnalyticalSolve_old.h │ │ ├── GenSolveTD.cxx │ │ ├── GenSolveWL.cxx │ │ ├── GenSolveWL_old.cxx │ │ ├── Makefile │ │ ├── MosekSolve1.cxx │ │ ├── MosekSolveDist.cxx │ │ ├── MosekSolveOldWorking.cxx │ │ ├── MosekSolveQuadratic.cxx │ │ ├── SeqSolveTD.cxx │ │ ├── SeqSolveWL.cxx │ │ ├── SolverCommon.cxx │ │ ├── command.log │ │ ├── icc_output.txt │ │ └── src.mk │ └── src.mk ├── Bin │ ├── Bin.h │ ├── BinMain.cxx │ ├── Makefile │ └── src.mk ├── Cell │ ├── Cell.h │ ├── CellIter.h │ ├── CellMain.cxx │ ├── ClusterMain.cxx │ ├── Makefile │ └── src.mk ├── CellSpread │ ├── CellSpread.h │ ├── CellSpreadMain.cxx │ ├── Makefile │ └── src.mk ├── ConjGrad │ ├── ConjGradSolver.cxx │ ├── ConjGradSolver.h │ ├── Makefile │ ├── cblas.h │ └── src.mk ├── Design │ ├── .bak │ │ ├── DesignSolve.cxx │ │ ├── DesignSolve.cxx.old │ │ ├── DesignSolveFast.cxx │ │ ├── DesignSolveFastMosek.cxx │ │ ├── DesignSolveFastMosek7.cxx.bak │ │ ├── DesignSolveFastNLopt.cxx │ │ ├── DesignSolveFastOOQP.cxx │ │ ├── DesignSolveFastQuadProg.cxx │ │ ├── DesignSolveFastStarMosek7.cxx │ │ └── DesignSolveFastWn.cxx │ ├── Design.h │ ├── DesignAnalysis.cxx │ ├── DesignCluster.cxx │ ├── DesignCluster.cxx.bak │ ├── DesignClusterBestChoice.cxx │ ├── DesignClusterKWay.cxx │ ├── DesignClusterLarge.cxx │ ├── DesignClusterNetCluster.cxx │ ├── DesignClusterStrategy.cxx │ ├── DesignClusterStrategy.cxx.bak │ ├── DesignClusterStrategy.cxx.myPriorityQueue │ ├── DesignDebug.cxx │ ├── DesignDump.cxx │ ├── DesignGraph.cxx │ ├── DesignIter.h │ ├── DesignMain.cxx │ ├── DesignMain.cxx.bak │ ├── DesignPlace.cxx │ ├── DesignProperties.cxx │ ├── DesignRead.cxx │ ├── DesignSolveFastConjGrad.cxx │ ├── DesignSolveFastConjGrad.cxx.bak │ ├── DesignSolveFastConjGrad.cxx.bak1 │ ├── DesignSolveFastConjGrad.cxx.bak2 │ ├── DesignSolveFastMosek7.cxx │ ├── DesignSolveFastMosek7.cxx.bak │ ├── DesignSolveFastWnlib.cxx │ ├── DesignSolveForceDirected.cxx │ ├── DesignSpread.cxx │ ├── DesignSpreadILR.cxx │ ├── DesignUtils.cxx │ ├── DesignWrite.cxx │ ├── DesignWriteCluster.cxx │ ├── Makefile │ └── src.mk ├── Env │ ├── Env.h │ ├── EnvMain.cxx │ ├── Makefile │ └── src.mk ├── FDP │ ├── FDP.h │ ├── FDPMain.cxx │ ├── FDPNet.cxx │ ├── FDPSite.cxx │ ├── Makefile │ ├── place_FD.C │ └── src.mk ├── Flags │ ├── Flags.h │ ├── FlagsDef.cxx │ ├── FlagsMain.cxx │ ├── Makefile │ └── src.mk ├── HyperGraph │ ├── Edge.cxx │ ├── Edge.h │ ├── EdgeIter.h │ ├── GraphOperations.txt │ ├── HyperGraph.h │ ├── HyperGraphIter.h │ ├── HyperGraphMacros.h │ ├── HyperGraphMain.cxx │ ├── Makefile │ ├── Node.cxx │ ├── Node.h │ ├── NodeIter.h │ └── src.mk ├── Legalize │ ├── Legalize.h │ ├── LegalizeBin.cxx │ ├── LegalizeInterval.cxx │ ├── LegalizeMain.cxx │ ├── LegalizeRegion.cxx │ ├── LegalizeUtils.cxx │ ├── LegalizeZone.cxx │ ├── Makefile │ ├── bak │ │ ├── Dynamic_LegalizeMain.cxx │ │ ├── LegalizeInterval.cxx │ │ ├── LegalizeMain.cxx.bak │ │ ├── LegalizeMain0530.cxx │ │ ├── LegalizeMain0601.cxx │ │ ├── LegalizeMainNew.cxx │ │ ├── New_LegalizeMain.cxx │ │ ├── Old2_LegalizeMAin.cxx │ │ ├── Old_3LegalizeMain.cxx │ │ ├── Old_4LegalizeMain.cxx │ │ ├── Old_LegalizeMAin.cxx~ │ │ ├── TestMinCostFlow.cxx │ │ ├── bak2_LegalizeMain.cxx │ │ └── bak_LegalizeMain.cxx │ └── src.mk ├── Legalize_bak │ ├── Legalize.h │ ├── LegalizeBin.cxx │ ├── LegalizeInterval.cxx │ ├── LegalizeMain.cxx │ ├── LegalizeMain.cxx.bak │ ├── LegalizeMain0530.cxx │ ├── LegalizeMainNew.cxx │ ├── LegalizeMainNew.cxx~ │ ├── LegalizeRegion.cxx │ ├── LegalizeUtils.cxx │ ├── LegalizeZone.cxx │ ├── Makefile │ ├── New_LegalizeMain.cxx │ ├── bak │ │ ├── Dynamic_LegalizeMain.cxx │ │ ├── LegalizeMainNew.cxx │ │ ├── Old2_LegalizeMAin.cxx │ │ ├── Old_3LegalizeMain.cxx │ │ ├── Old_4LegalizeMain.cxx │ │ ├── Old_LegalizeMAin.cxx~ │ │ └── TestMinCostFlow.cxx │ ├── bak2_LegalizeMain.cxx │ ├── bak_LegalizeMain.cxx │ ├── log │ └── src.mk ├── Makefile ├── MakefileSub ├── Net │ ├── Makefile │ ├── Net.h │ ├── NetIter.h │ ├── NetMain.cxx │ └── src.mk ├── Path │ ├── Makefile │ ├── Path.h │ ├── PathMain.cxx │ └── src.mk ├── PhysData │ ├── Makefile │ ├── PhysRow.cxx │ ├── PhysRow.h │ └── src.mk ├── Pin │ ├── Makefile │ ├── Pin.h │ ├── PinMain.cxx │ └── src.mk ├── Plot │ ├── Circle.cxx │ ├── Line.cxx │ ├── Makefile │ ├── Plot.h │ ├── PlotMain.cxx │ ├── Rect.cxx │ └── src.mk ├── PriorityQueue │ └── PriorityQueue.h ├── SolverTest │ ├── Makefile │ └── SolverTest.cxx ├── Stat │ ├── Makefile │ ├── Stat.h │ ├── StatMain.cxx │ └── src.mk ├── TODO ├── TimingModels │ ├── Makefile │ ├── TMClique.cxx │ ├── TMCommon.cxx │ ├── TMCustom.cxx │ ├── TMHybrid.cxx │ ├── TMStar.cxx │ ├── TimingModels.h │ └── src.mk ├── algorithm_description │ └── clustering ├── clear_analysis.sh ├── common │ ├── Makefile │ ├── common.h │ ├── commonIter.h │ ├── common_utils.cxx │ ├── src.mk │ └── utils.cxx ├── consistency │ └── CONSISTENCY_CHECKS ├── gprof2html.py ├── include │ ├── AnalyticalSolve.h │ ├── Bin.h │ ├── Cell.h │ ├── CellIter.h │ ├── CellSpread.h │ ├── ConjGradSolver.h │ ├── Design.h │ ├── DesignIter.h │ ├── Edge.h │ ├── Env.h │ ├── FDP.h │ ├── Flags.h │ ├── ForceDirectedPlacer.h │ ├── HyperGraph.h │ ├── HyperGraphIter.h │ ├── Legalize.h │ ├── Net.h │ ├── NetIter.h │ ├── Node.h │ ├── Path.h │ ├── PhysRow.h │ ├── Pin.h │ ├── Plot.h │ ├── PriorityQueue.h │ ├── SortClasses.h │ ├── Stat.h │ ├── TimingModels.h │ ├── cblas.h │ ├── common.h │ ├── commonIter.h │ ├── lists.h │ ├── metis.h │ └── wnlib ├── lists │ ├── Makefile │ ├── lists.h │ ├── listsMain.cxx │ └── src.mk ├── main.cxx ├── stat │ ├── stat.cxx │ └── stat.h ├── tags ├── timer │ ├── Cell.h │ ├── Design.h │ ├── Iterator.h │ ├── LibArc.h │ ├── LibCell.h │ ├── LibPin.h │ ├── LookupTable.h │ ├── Makefile │ ├── Net.h │ ├── Path.h │ ├── Pin.h │ ├── TestArc.h │ ├── TestData.h │ ├── TimingArc.h │ ├── TimingGraph.h │ ├── TimingPoint.h │ ├── libParser.lxx │ ├── libParser.yxx │ └── main.C └── variables.cxx ├── other_files ├── saed32rvt_ff1p16v125c.lib ├── usb_sie.nodes └── usb_sie.nodes.orig ├── scripts ├── aliases.pl ├── check.pl ├── compareNetFiles.pl ├── comparePlFiles.pl ├── convertPlToDef.pl ├── genBookShelf.tcl ├── genBookShelfTopLevel.pl ├── genPDF.pl ├── genPlaceTerms.tcl ├── genPlacement.pl ├── genRouting.tcl ├── genRoutingFlow.tcl ├── generateFloorplanICC.tcl ├── genericRTLCompile_dc.tcl ├── getCellDelays.pl ├── getCellDimAndPinPos.pl ├── getPinPostion.pl ├── getSclFromDef.pl ├── getTermPositions.pl ├── getTimingRpt.pl ├── icc_place.tcl ├── map2Pseudo.pl ├── mapNets2Pseudo.pl ├── ptAnalysis.tcl ├── ptAnalysisFlow.tcl ├── readCompiledRTLDC.tcl ├── run_dc.sh ├── run_gen_bm.sh ├── run_gen_bm_and_place.sh ├── run_icc.sh ├── run_placement.sh ├── run_placer.sh ├── run_routing.sh ├── run_routing_flow.sh ├── run_sta.sh ├── run_sta_flow.sh ├── run_topLevelAnalysis.sh ├── subFromMaps.pl ├── subNetsFromMaps.pl ├── subPseudoFromMaps.pl ├── testArena │ └── topLevelInput.tab ├── topAnalyze.pl ├── viewPlacement.tcl ├── viewPlacementFlow.tcl ├── view_placement.sh └── view_placement_flow.sh └── testFolder ├── newFile └── testFile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/README.md -------------------------------------------------------------------------------- /ResearchLog.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/ResearchLog.odt -------------------------------------------------------------------------------- /adaptec3/adaptec3.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/adaptec3/adaptec3.aux -------------------------------------------------------------------------------- /adaptec3/adaptec3.nets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/adaptec3/adaptec3.nets -------------------------------------------------------------------------------- /adaptec3/adaptec3.nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/adaptec3/adaptec3.nodes -------------------------------------------------------------------------------- /adaptec3/adaptec3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/adaptec3/adaptec3.pl -------------------------------------------------------------------------------- /adaptec3/adaptec3.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/adaptec3/adaptec3.scl -------------------------------------------------------------------------------- /adaptec3/adaptec3.wts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/adaptec3/adaptec3.wts -------------------------------------------------------------------------------- /code/AnalyticalSolve/AnalyticalSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/AnalyticalSolve.h -------------------------------------------------------------------------------- /code/AnalyticalSolve/GenSolveTD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/GenSolveTD.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/GenSolveWL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/GenSolveWL.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/AnalyticalSolve/NonLinearSolve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/NonLinearSolve.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/SolverCommon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/SolverCommon.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/AnalyticalSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/AnalyticalSolve.h -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/AnalyticalSolveMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/AnalyticalSolveMain.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/AnalyticalSolveOldWorking.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/AnalyticalSolveOldWorking.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/AnalyticalSolve_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/AnalyticalSolve_old.h -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/GenSolveTD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/GenSolveTD.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/GenSolveWL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/GenSolveWL.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/GenSolveWL_old.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/GenSolveWL_old.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/Makefile -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/MosekSolve1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/MosekSolve1.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/MosekSolveDist.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/MosekSolveDist.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/MosekSolveOldWorking.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/MosekSolveOldWorking.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/MosekSolveQuadratic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/MosekSolveQuadratic.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/SeqSolveTD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/SeqSolveTD.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/SeqSolveWL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/SeqSolveWL.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/SolverCommon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/SolverCommon.cxx -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/command.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/command.log -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/icc_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/icc_output.txt -------------------------------------------------------------------------------- /code/AnalyticalSolve/backup/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/backup/src.mk -------------------------------------------------------------------------------- /code/AnalyticalSolve/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/AnalyticalSolve/src.mk -------------------------------------------------------------------------------- /code/Bin/Bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Bin/Bin.h -------------------------------------------------------------------------------- /code/Bin/BinMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Bin/BinMain.cxx -------------------------------------------------------------------------------- /code/Bin/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Bin/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Bin/src.mk -------------------------------------------------------------------------------- /code/Cell/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Cell/Cell.h -------------------------------------------------------------------------------- /code/Cell/CellIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Cell/CellIter.h -------------------------------------------------------------------------------- /code/Cell/CellMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Cell/CellMain.cxx -------------------------------------------------------------------------------- /code/Cell/ClusterMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Cell/ClusterMain.cxx -------------------------------------------------------------------------------- /code/Cell/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Cell/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Cell/src.mk -------------------------------------------------------------------------------- /code/CellSpread/CellSpread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/CellSpread/CellSpread.h -------------------------------------------------------------------------------- /code/CellSpread/CellSpreadMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/CellSpread/CellSpreadMain.cxx -------------------------------------------------------------------------------- /code/CellSpread/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/CellSpread/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/CellSpread/src.mk -------------------------------------------------------------------------------- /code/ConjGrad/ConjGradSolver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/ConjGrad/ConjGradSolver.cxx -------------------------------------------------------------------------------- /code/ConjGrad/ConjGradSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/ConjGrad/ConjGradSolver.h -------------------------------------------------------------------------------- /code/ConjGrad/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/ConjGrad/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/ConjGrad/cblas.h -------------------------------------------------------------------------------- /code/ConjGrad/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/ConjGrad/src.mk -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolve.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolve.cxx.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolve.cxx.old -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFast.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFast.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastMosek.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastMosek.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastMosek7.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastMosek7.cxx.bak -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastNLopt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastNLopt.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastOOQP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastOOQP.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastQuadProg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastQuadProg.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastStarMosek7.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastStarMosek7.cxx -------------------------------------------------------------------------------- /code/Design/.bak/DesignSolveFastWn.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/.bak/DesignSolveFastWn.cxx -------------------------------------------------------------------------------- /code/Design/Design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/Design.h -------------------------------------------------------------------------------- /code/Design/DesignAnalysis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignAnalysis.cxx -------------------------------------------------------------------------------- /code/Design/DesignCluster.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignCluster.cxx -------------------------------------------------------------------------------- /code/Design/DesignCluster.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignCluster.cxx.bak -------------------------------------------------------------------------------- /code/Design/DesignClusterBestChoice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterBestChoice.cxx -------------------------------------------------------------------------------- /code/Design/DesignClusterKWay.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterKWay.cxx -------------------------------------------------------------------------------- /code/Design/DesignClusterLarge.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterLarge.cxx -------------------------------------------------------------------------------- /code/Design/DesignClusterNetCluster.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterNetCluster.cxx -------------------------------------------------------------------------------- /code/Design/DesignClusterStrategy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterStrategy.cxx -------------------------------------------------------------------------------- /code/Design/DesignClusterStrategy.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterStrategy.cxx.bak -------------------------------------------------------------------------------- /code/Design/DesignClusterStrategy.cxx.myPriorityQueue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignClusterStrategy.cxx.myPriorityQueue -------------------------------------------------------------------------------- /code/Design/DesignDebug.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignDebug.cxx -------------------------------------------------------------------------------- /code/Design/DesignDump.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignDump.cxx -------------------------------------------------------------------------------- /code/Design/DesignGraph.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignGraph.cxx -------------------------------------------------------------------------------- /code/Design/DesignIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignIter.h -------------------------------------------------------------------------------- /code/Design/DesignMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignMain.cxx -------------------------------------------------------------------------------- /code/Design/DesignMain.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignMain.cxx.bak -------------------------------------------------------------------------------- /code/Design/DesignPlace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignPlace.cxx -------------------------------------------------------------------------------- /code/Design/DesignProperties.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignProperties.cxx -------------------------------------------------------------------------------- /code/Design/DesignRead.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignRead.cxx -------------------------------------------------------------------------------- /code/Design/DesignSolveFastConjGrad.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastConjGrad.cxx -------------------------------------------------------------------------------- /code/Design/DesignSolveFastConjGrad.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastConjGrad.cxx.bak -------------------------------------------------------------------------------- /code/Design/DesignSolveFastConjGrad.cxx.bak1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastConjGrad.cxx.bak1 -------------------------------------------------------------------------------- /code/Design/DesignSolveFastConjGrad.cxx.bak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastConjGrad.cxx.bak2 -------------------------------------------------------------------------------- /code/Design/DesignSolveFastMosek7.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastMosek7.cxx -------------------------------------------------------------------------------- /code/Design/DesignSolveFastMosek7.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastMosek7.cxx.bak -------------------------------------------------------------------------------- /code/Design/DesignSolveFastWnlib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveFastWnlib.cxx -------------------------------------------------------------------------------- /code/Design/DesignSolveForceDirected.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSolveForceDirected.cxx -------------------------------------------------------------------------------- /code/Design/DesignSpread.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSpread.cxx -------------------------------------------------------------------------------- /code/Design/DesignSpreadILR.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignSpreadILR.cxx -------------------------------------------------------------------------------- /code/Design/DesignUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignUtils.cxx -------------------------------------------------------------------------------- /code/Design/DesignWrite.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignWrite.cxx -------------------------------------------------------------------------------- /code/Design/DesignWriteCluster.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/DesignWriteCluster.cxx -------------------------------------------------------------------------------- /code/Design/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Design/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Design/src.mk -------------------------------------------------------------------------------- /code/Env/Env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Env/Env.h -------------------------------------------------------------------------------- /code/Env/EnvMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Env/EnvMain.cxx -------------------------------------------------------------------------------- /code/Env/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Env/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Env/src.mk -------------------------------------------------------------------------------- /code/FDP/FDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/FDP/FDP.h -------------------------------------------------------------------------------- /code/FDP/FDPMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/FDP/FDPMain.cxx -------------------------------------------------------------------------------- /code/FDP/FDPNet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/FDP/FDPNet.cxx -------------------------------------------------------------------------------- /code/FDP/FDPSite.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/FDP/FDPSite.cxx -------------------------------------------------------------------------------- /code/FDP/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/FDP/place_FD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/FDP/place_FD.C -------------------------------------------------------------------------------- /code/FDP/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/FDP/src.mk -------------------------------------------------------------------------------- /code/Flags/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Flags/Flags.h -------------------------------------------------------------------------------- /code/Flags/FlagsDef.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Flags/FlagsDef.cxx -------------------------------------------------------------------------------- /code/Flags/FlagsMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Flags/FlagsMain.cxx -------------------------------------------------------------------------------- /code/Flags/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Flags/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Flags/src.mk -------------------------------------------------------------------------------- /code/HyperGraph/Edge.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/Edge.cxx -------------------------------------------------------------------------------- /code/HyperGraph/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/Edge.h -------------------------------------------------------------------------------- /code/HyperGraph/EdgeIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/EdgeIter.h -------------------------------------------------------------------------------- /code/HyperGraph/GraphOperations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/GraphOperations.txt -------------------------------------------------------------------------------- /code/HyperGraph/HyperGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/HyperGraph.h -------------------------------------------------------------------------------- /code/HyperGraph/HyperGraphIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/HyperGraphIter.h -------------------------------------------------------------------------------- /code/HyperGraph/HyperGraphMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/HyperGraphMacros.h -------------------------------------------------------------------------------- /code/HyperGraph/HyperGraphMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/HyperGraphMain.cxx -------------------------------------------------------------------------------- /code/HyperGraph/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/HyperGraph/Node.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/Node.cxx -------------------------------------------------------------------------------- /code/HyperGraph/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/Node.h -------------------------------------------------------------------------------- /code/HyperGraph/NodeIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/NodeIter.h -------------------------------------------------------------------------------- /code/HyperGraph/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/HyperGraph/src.mk -------------------------------------------------------------------------------- /code/Legalize/Legalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/Legalize.h -------------------------------------------------------------------------------- /code/Legalize/LegalizeBin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/LegalizeBin.cxx -------------------------------------------------------------------------------- /code/Legalize/LegalizeInterval.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/LegalizeInterval.cxx -------------------------------------------------------------------------------- /code/Legalize/LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/LegalizeRegion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/LegalizeRegion.cxx -------------------------------------------------------------------------------- /code/Legalize/LegalizeUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/LegalizeUtils.cxx -------------------------------------------------------------------------------- /code/Legalize/LegalizeZone.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/LegalizeZone.cxx -------------------------------------------------------------------------------- /code/Legalize/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Legalize/bak/Dynamic_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/Dynamic_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/LegalizeInterval.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/LegalizeInterval.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/LegalizeMain.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/LegalizeMain.cxx.bak -------------------------------------------------------------------------------- /code/Legalize/bak/LegalizeMain0530.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/LegalizeMain0530.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/LegalizeMain0601.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/LegalizeMain0601.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/LegalizeMainNew.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/LegalizeMainNew.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/New_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/New_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/Old2_LegalizeMAin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/Old2_LegalizeMAin.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/Old_3LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/Old_3LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/Old_4LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/Old_4LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/Old_LegalizeMAin.cxx~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/Old_LegalizeMAin.cxx~ -------------------------------------------------------------------------------- /code/Legalize/bak/TestMinCostFlow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/TestMinCostFlow.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/bak2_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/bak2_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/bak/bak_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/bak/bak_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize/src.mk -------------------------------------------------------------------------------- /code/Legalize_bak/Legalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/Legalize.h -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeBin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeBin.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeInterval.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeInterval.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeMain.cxx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeMain.cxx.bak -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeMain0530.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeMain0530.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeMainNew.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeMainNew.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeMainNew.cxx~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeMainNew.cxx~ -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeRegion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeRegion.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeUtils.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/LegalizeZone.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/LegalizeZone.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Legalize_bak/New_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/New_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak/Dynamic_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/Dynamic_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak/LegalizeMainNew.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/LegalizeMainNew.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak/Old2_LegalizeMAin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/Old2_LegalizeMAin.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak/Old_3LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/Old_3LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak/Old_4LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/Old_4LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak/Old_LegalizeMAin.cxx~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/Old_LegalizeMAin.cxx~ -------------------------------------------------------------------------------- /code/Legalize_bak/bak/TestMinCostFlow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak/TestMinCostFlow.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak2_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak2_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/bak_LegalizeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/bak_LegalizeMain.cxx -------------------------------------------------------------------------------- /code/Legalize_bak/log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Legalize_bak/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Legalize_bak/src.mk -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Makefile -------------------------------------------------------------------------------- /code/MakefileSub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/MakefileSub -------------------------------------------------------------------------------- /code/Net/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Net/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Net/Net.h -------------------------------------------------------------------------------- /code/Net/NetIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Net/NetIter.h -------------------------------------------------------------------------------- /code/Net/NetMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Net/NetMain.cxx -------------------------------------------------------------------------------- /code/Net/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Net/src.mk -------------------------------------------------------------------------------- /code/Path/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Path/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Path/Path.h -------------------------------------------------------------------------------- /code/Path/PathMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Path/PathMain.cxx -------------------------------------------------------------------------------- /code/Path/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Path/src.mk -------------------------------------------------------------------------------- /code/PhysData/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/PhysData/Makefile -------------------------------------------------------------------------------- /code/PhysData/PhysRow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/PhysData/PhysRow.cxx -------------------------------------------------------------------------------- /code/PhysData/PhysRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/PhysData/PhysRow.h -------------------------------------------------------------------------------- /code/PhysData/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/PhysData/src.mk -------------------------------------------------------------------------------- /code/Pin/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Pin/Pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Pin/Pin.h -------------------------------------------------------------------------------- /code/Pin/PinMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Pin/PinMain.cxx -------------------------------------------------------------------------------- /code/Pin/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Pin/src.mk -------------------------------------------------------------------------------- /code/Plot/Circle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Plot/Circle.cxx -------------------------------------------------------------------------------- /code/Plot/Line.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Plot/Line.cxx -------------------------------------------------------------------------------- /code/Plot/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Plot/Plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Plot/Plot.h -------------------------------------------------------------------------------- /code/Plot/PlotMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Plot/PlotMain.cxx -------------------------------------------------------------------------------- /code/Plot/Rect.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Plot/Rect.cxx -------------------------------------------------------------------------------- /code/Plot/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Plot/src.mk -------------------------------------------------------------------------------- /code/PriorityQueue/PriorityQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/PriorityQueue/PriorityQueue.h -------------------------------------------------------------------------------- /code/SolverTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/SolverTest/Makefile -------------------------------------------------------------------------------- /code/SolverTest/SolverTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/SolverTest/SolverTest.cxx -------------------------------------------------------------------------------- /code/Stat/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/Stat/Stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Stat/Stat.h -------------------------------------------------------------------------------- /code/Stat/StatMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Stat/StatMain.cxx -------------------------------------------------------------------------------- /code/Stat/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/Stat/src.mk -------------------------------------------------------------------------------- /code/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TODO -------------------------------------------------------------------------------- /code/TimingModels/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/TimingModels/TMClique.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/TMClique.cxx -------------------------------------------------------------------------------- /code/TimingModels/TMCommon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/TMCommon.cxx -------------------------------------------------------------------------------- /code/TimingModels/TMCustom.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/TMCustom.cxx -------------------------------------------------------------------------------- /code/TimingModels/TMHybrid.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/TMHybrid.cxx -------------------------------------------------------------------------------- /code/TimingModels/TMStar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/TMStar.cxx -------------------------------------------------------------------------------- /code/TimingModels/TimingModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/TimingModels.h -------------------------------------------------------------------------------- /code/TimingModels/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/TimingModels/src.mk -------------------------------------------------------------------------------- /code/algorithm_description/clustering: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/algorithm_description/clustering -------------------------------------------------------------------------------- /code/clear_analysis.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf *_Analysis 4 | 5 | -------------------------------------------------------------------------------- /code/common/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/common/common.h -------------------------------------------------------------------------------- /code/common/commonIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/common/commonIter.h -------------------------------------------------------------------------------- /code/common/common_utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/common/common_utils.cxx -------------------------------------------------------------------------------- /code/common/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/common/src.mk -------------------------------------------------------------------------------- /code/common/utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/common/utils.cxx -------------------------------------------------------------------------------- /code/consistency/CONSISTENCY_CHECKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/consistency/CONSISTENCY_CHECKS -------------------------------------------------------------------------------- /code/gprof2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/gprof2html.py -------------------------------------------------------------------------------- /code/include/AnalyticalSolve.h: -------------------------------------------------------------------------------- 1 | ../AnalyticalSolve/AnalyticalSolve.h -------------------------------------------------------------------------------- /code/include/Bin.h: -------------------------------------------------------------------------------- 1 | ../Bin/Bin.h -------------------------------------------------------------------------------- /code/include/Cell.h: -------------------------------------------------------------------------------- 1 | ../Cell/Cell.h -------------------------------------------------------------------------------- /code/include/CellIter.h: -------------------------------------------------------------------------------- 1 | ../Cell/CellIter.h -------------------------------------------------------------------------------- /code/include/CellSpread.h: -------------------------------------------------------------------------------- 1 | ../CellSpread/CellSpread.h -------------------------------------------------------------------------------- /code/include/ConjGradSolver.h: -------------------------------------------------------------------------------- 1 | ../ConjGrad/ConjGradSolver.h -------------------------------------------------------------------------------- /code/include/Design.h: -------------------------------------------------------------------------------- 1 | ../Design/Design.h -------------------------------------------------------------------------------- /code/include/DesignIter.h: -------------------------------------------------------------------------------- 1 | ../Design/DesignIter.h -------------------------------------------------------------------------------- /code/include/Edge.h: -------------------------------------------------------------------------------- 1 | ../HyperGraph/Edge.h -------------------------------------------------------------------------------- /code/include/Env.h: -------------------------------------------------------------------------------- 1 | ../Env/Env.h -------------------------------------------------------------------------------- /code/include/FDP.h: -------------------------------------------------------------------------------- 1 | ../FDP/FDP.h -------------------------------------------------------------------------------- /code/include/Flags.h: -------------------------------------------------------------------------------- 1 | ../Flags/Flags.h -------------------------------------------------------------------------------- /code/include/ForceDirectedPlacer.h: -------------------------------------------------------------------------------- 1 | ../ForceDirectedPlacer/ForceDirectedPlacer.h -------------------------------------------------------------------------------- /code/include/HyperGraph.h: -------------------------------------------------------------------------------- 1 | ../HyperGraph/HyperGraph.h -------------------------------------------------------------------------------- /code/include/HyperGraphIter.h: -------------------------------------------------------------------------------- 1 | ../HyperGraph/HyperGraphIter.h -------------------------------------------------------------------------------- /code/include/Legalize.h: -------------------------------------------------------------------------------- 1 | ../Legalize/Legalize.h -------------------------------------------------------------------------------- /code/include/Net.h: -------------------------------------------------------------------------------- 1 | ../Net/Net.h -------------------------------------------------------------------------------- /code/include/NetIter.h: -------------------------------------------------------------------------------- 1 | ../Net/NetIter.h -------------------------------------------------------------------------------- /code/include/Node.h: -------------------------------------------------------------------------------- 1 | ../HyperGraph/Node.h -------------------------------------------------------------------------------- /code/include/Path.h: -------------------------------------------------------------------------------- 1 | ../Path/Path.h -------------------------------------------------------------------------------- /code/include/PhysRow.h: -------------------------------------------------------------------------------- 1 | ../PhysData/PhysRow.h -------------------------------------------------------------------------------- /code/include/Pin.h: -------------------------------------------------------------------------------- 1 | ../../code/Pin/Pin.h -------------------------------------------------------------------------------- /code/include/Plot.h: -------------------------------------------------------------------------------- 1 | ../Plot/Plot.h -------------------------------------------------------------------------------- /code/include/PriorityQueue.h: -------------------------------------------------------------------------------- 1 | ../PriorityQueue/PriorityQueue.h -------------------------------------------------------------------------------- /code/include/SortClasses.h: -------------------------------------------------------------------------------- 1 | ../Sort/SortClasses.h -------------------------------------------------------------------------------- /code/include/Stat.h: -------------------------------------------------------------------------------- 1 | ../Stat/Stat.h -------------------------------------------------------------------------------- /code/include/TimingModels.h: -------------------------------------------------------------------------------- 1 | ../TimingModels/TimingModels.h -------------------------------------------------------------------------------- /code/include/cblas.h: -------------------------------------------------------------------------------- 1 | ../ConjGrad/cblas.h -------------------------------------------------------------------------------- /code/include/common.h: -------------------------------------------------------------------------------- 1 | ../common/common.h -------------------------------------------------------------------------------- /code/include/commonIter.h: -------------------------------------------------------------------------------- 1 | ../common/commonIter.h -------------------------------------------------------------------------------- /code/include/lists.h: -------------------------------------------------------------------------------- 1 | ../lists/lists.h -------------------------------------------------------------------------------- /code/include/metis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/include/metis.h -------------------------------------------------------------------------------- /code/include/wnlib: -------------------------------------------------------------------------------- 1 | /home/neo/Downloads/wnlib/acc/h -------------------------------------------------------------------------------- /code/lists/Makefile: -------------------------------------------------------------------------------- 1 | ../MakefileSub -------------------------------------------------------------------------------- /code/lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/lists/lists.h -------------------------------------------------------------------------------- /code/lists/listsMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/lists/listsMain.cxx -------------------------------------------------------------------------------- /code/lists/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/lists/src.mk -------------------------------------------------------------------------------- /code/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/main.cxx -------------------------------------------------------------------------------- /code/stat/stat.cxx: -------------------------------------------------------------------------------- 1 | # include 2 | 3 | unsigned long getMemUsage(void) 4 | { 5 | 6 | ifstream 7 | } 8 | -------------------------------------------------------------------------------- /code/stat/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/stat/stat.h -------------------------------------------------------------------------------- /code/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/tags -------------------------------------------------------------------------------- /code/timer/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Cell.h -------------------------------------------------------------------------------- /code/timer/Design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Design.h -------------------------------------------------------------------------------- /code/timer/Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Iterator.h -------------------------------------------------------------------------------- /code/timer/LibArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/LibArc.h -------------------------------------------------------------------------------- /code/timer/LibCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/LibCell.h -------------------------------------------------------------------------------- /code/timer/LibPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/LibPin.h -------------------------------------------------------------------------------- /code/timer/LookupTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/LookupTable.h -------------------------------------------------------------------------------- /code/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Makefile -------------------------------------------------------------------------------- /code/timer/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Net.h -------------------------------------------------------------------------------- /code/timer/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Path.h -------------------------------------------------------------------------------- /code/timer/Pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/Pin.h -------------------------------------------------------------------------------- /code/timer/TestArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/TestArc.h -------------------------------------------------------------------------------- /code/timer/TestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/TestData.h -------------------------------------------------------------------------------- /code/timer/TimingArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/TimingArc.h -------------------------------------------------------------------------------- /code/timer/TimingGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/TimingGraph.h -------------------------------------------------------------------------------- /code/timer/TimingPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/TimingPoint.h -------------------------------------------------------------------------------- /code/timer/libParser.lxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/libParser.lxx -------------------------------------------------------------------------------- /code/timer/libParser.yxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/libParser.yxx -------------------------------------------------------------------------------- /code/timer/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/timer/main.C -------------------------------------------------------------------------------- /code/variables.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/code/variables.cxx -------------------------------------------------------------------------------- /other_files/saed32rvt_ff1p16v125c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/other_files/saed32rvt_ff1p16v125c.lib -------------------------------------------------------------------------------- /other_files/usb_sie.nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/other_files/usb_sie.nodes -------------------------------------------------------------------------------- /other_files/usb_sie.nodes.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/other_files/usb_sie.nodes.orig -------------------------------------------------------------------------------- /scripts/aliases.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/aliases.pl -------------------------------------------------------------------------------- /scripts/check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/check.pl -------------------------------------------------------------------------------- /scripts/compareNetFiles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/compareNetFiles.pl -------------------------------------------------------------------------------- /scripts/comparePlFiles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/comparePlFiles.pl -------------------------------------------------------------------------------- /scripts/convertPlToDef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/convertPlToDef.pl -------------------------------------------------------------------------------- /scripts/genBookShelf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genBookShelf.tcl -------------------------------------------------------------------------------- /scripts/genBookShelfTopLevel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genBookShelfTopLevel.pl -------------------------------------------------------------------------------- /scripts/genPDF.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genPDF.pl -------------------------------------------------------------------------------- /scripts/genPlaceTerms.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genPlaceTerms.tcl -------------------------------------------------------------------------------- /scripts/genPlacement.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genPlacement.pl -------------------------------------------------------------------------------- /scripts/genRouting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genRouting.tcl -------------------------------------------------------------------------------- /scripts/genRoutingFlow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genRoutingFlow.tcl -------------------------------------------------------------------------------- /scripts/generateFloorplanICC.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/generateFloorplanICC.tcl -------------------------------------------------------------------------------- /scripts/genericRTLCompile_dc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/genericRTLCompile_dc.tcl -------------------------------------------------------------------------------- /scripts/getCellDelays.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/getCellDelays.pl -------------------------------------------------------------------------------- /scripts/getCellDimAndPinPos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/getCellDimAndPinPos.pl -------------------------------------------------------------------------------- /scripts/getPinPostion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/getPinPostion.pl -------------------------------------------------------------------------------- /scripts/getSclFromDef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/getSclFromDef.pl -------------------------------------------------------------------------------- /scripts/getTermPositions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/getTermPositions.pl -------------------------------------------------------------------------------- /scripts/getTimingRpt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/getTimingRpt.pl -------------------------------------------------------------------------------- /scripts/icc_place.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/icc_place.tcl -------------------------------------------------------------------------------- /scripts/map2Pseudo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/map2Pseudo.pl -------------------------------------------------------------------------------- /scripts/mapNets2Pseudo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/mapNets2Pseudo.pl -------------------------------------------------------------------------------- /scripts/ptAnalysis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/ptAnalysis.tcl -------------------------------------------------------------------------------- /scripts/ptAnalysisFlow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/ptAnalysisFlow.tcl -------------------------------------------------------------------------------- /scripts/readCompiledRTLDC.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/readCompiledRTLDC.tcl -------------------------------------------------------------------------------- /scripts/run_dc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_dc.sh -------------------------------------------------------------------------------- /scripts/run_gen_bm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_gen_bm.sh -------------------------------------------------------------------------------- /scripts/run_gen_bm_and_place.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_gen_bm_and_place.sh -------------------------------------------------------------------------------- /scripts/run_icc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_icc.sh -------------------------------------------------------------------------------- /scripts/run_placement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_placement.sh -------------------------------------------------------------------------------- /scripts/run_placer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_placer.sh -------------------------------------------------------------------------------- /scripts/run_routing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_routing.sh -------------------------------------------------------------------------------- /scripts/run_routing_flow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_routing_flow.sh -------------------------------------------------------------------------------- /scripts/run_sta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_sta.sh -------------------------------------------------------------------------------- /scripts/run_sta_flow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_sta_flow.sh -------------------------------------------------------------------------------- /scripts/run_topLevelAnalysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/run_topLevelAnalysis.sh -------------------------------------------------------------------------------- /scripts/subFromMaps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/subFromMaps.pl -------------------------------------------------------------------------------- /scripts/subNetsFromMaps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/subNetsFromMaps.pl -------------------------------------------------------------------------------- /scripts/subPseudoFromMaps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/subPseudoFromMaps.pl -------------------------------------------------------------------------------- /scripts/testArena/topLevelInput.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/testArena/topLevelInput.tab -------------------------------------------------------------------------------- /scripts/topAnalyze.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/topAnalyze.pl -------------------------------------------------------------------------------- /scripts/viewPlacement.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/viewPlacement.tcl -------------------------------------------------------------------------------- /scripts/viewPlacementFlow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/viewPlacementFlow.tcl -------------------------------------------------------------------------------- /scripts/view_placement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/view_placement.sh -------------------------------------------------------------------------------- /scripts/view_placement_flow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakultirumalai/VLSIPlacement/HEAD/scripts/view_placement_flow.sh -------------------------------------------------------------------------------- /testFolder/newFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testFolder/testFile: -------------------------------------------------------------------------------- 1 | Test line. 2 | --------------------------------------------------------------------------------