├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.MD ├── benchmark ├── EPFL │ └── EPFLBenchmarks.zip ├── batchSynthesis.py ├── blif │ ├── BoomBranchPredictor.blif │ ├── BoomRegisterFile.blif │ ├── BoomRob.blif │ ├── DCache.blif │ ├── GemminiLoopConv.blif │ ├── GemminiLoopMatmul.blif │ ├── GemminiMesh.blif │ ├── adder.blif │ ├── arbiter.blif │ ├── bar.blif │ ├── cavlc.blif │ ├── ctrl.blif │ ├── div.blif │ ├── i2c.blif │ ├── int2float.blif │ ├── log2.blif │ ├── max.blif │ ├── multiplier.blif │ ├── priority.blif │ ├── router.blif │ ├── sin.blif │ ├── sqrt.blif │ ├── square.blif │ └── voter.blif ├── boomModule │ ├── README │ ├── boom.zip │ ├── boomCore.zip │ ├── test.ys │ └── vFiles.zip ├── gemmini │ └── Gemmini.zip ├── rocketModule │ ├── README │ ├── rocket.zip │ ├── test.ys │ └── vFiles.zip └── syn.ys ├── doc ├── callGraph.png ├── experimentalResult.png ├── flow.png ├── motivation.png └── pattern.png ├── pySrc ├── Astran.py ├── BLIFGNNTraining.py ├── BLIFGraphUtil.py ├── BLIFPatternGrowth.py ├── BLIFPreProc.py ├── GDSIIAnalysis.py ├── GNNModel.py ├── README ├── clean.sh ├── globalVariables.py ├── main.py ├── originalAstranStdCells │ ├── AND2X1.Astranlog │ ├── AND2X1.gds │ ├── AND2X1.run │ ├── AND2X2.Astranlog │ ├── AND2X2.run │ ├── AOI21X1.Astranlog │ ├── AOI21X1.gds │ ├── AOI21X1.run │ ├── AOI22X1.Astranlog │ ├── AOI22X1.gds │ ├── AOI22X1.run │ ├── BUFX2.Astranlog │ ├── BUFX2.run │ ├── BUFX4.Astranlog │ ├── BUFX4.run │ ├── CLKBUF1.Astranlog │ ├── CLKBUF1.gds │ ├── CLKBUF1.run │ ├── CLKBUF2.Astranlog │ ├── CLKBUF2.run │ ├── CLKBUF3.Astranlog │ ├── CLKBUF3.run │ ├── DFFNEGX1.Astranlog │ ├── DFFNEGX1.gds │ ├── DFFNEGX1.run │ ├── DFFPOSX1.Astranlog │ ├── DFFPOSX1.gds │ ├── DFFPOSX1.run │ ├── DFFSR.Astranlog │ ├── DFFSR.run │ ├── FAX1.Astranlog │ ├── FAX1.run │ ├── GDSIILTable.txt │ ├── HAX1.Astranlog │ ├── HAX1.run │ ├── INVX1.Astranlog │ ├── INVX1.gds │ ├── INVX1.run │ ├── INVX2.Astranlog │ ├── INVX2.run │ ├── INVX4.Astranlog │ ├── INVX4.run │ ├── INVX8.Astranlog │ ├── INVX8.run │ ├── LATCH.Astranlog │ ├── LATCH.run │ ├── MUX2X1.Astranlog │ ├── MUX2X1.gds │ ├── MUX2X1.run │ ├── NAND2X1.Astranlog │ ├── NAND2X1.gds │ ├── NAND2X1.run │ ├── NAND3X1.Astranlog │ ├── NAND3X1.gds │ ├── NAND3X1.run │ ├── NOR2X1.Astranlog │ ├── NOR2X1.gds │ ├── NOR2X1.run │ ├── NOR3X1.Astranlog │ ├── NOR3X1.gds │ ├── NOR3X1.run │ ├── OAI21X1.Astranlog │ ├── OAI21X1.gds │ ├── OAI21X1.run │ ├── OAI22X1.Astranlog │ ├── OAI22X1.run │ ├── OR2X1.Astranlog │ ├── OR2X1.gds │ ├── OR2X1.run │ ├── OR2X2.Astranlog │ ├── OR2X2.run │ ├── TBUFX1.Astranlog │ ├── TBUFX1.run │ ├── TBUFX2.Astranlog │ ├── TBUFX2.run │ ├── XNOR2X1.Astranlog │ ├── XNOR2X1.gds │ ├── XNOR2X1.run │ ├── XOR2X1.Astranlog │ ├── XOR2X1.gds │ └── XOR2X1.run ├── originalGSCL45StdCells │ ├── AND2X1.gds │ ├── AND2X2.gds │ ├── AOI21X1.gds │ ├── AOI22X1.gds │ ├── BUFX2.gds │ ├── BUFX4.gds │ ├── CLKBUF1.gds │ ├── CLKBUF2.gds │ ├── CLKBUF3.gds │ ├── DFFNEGX1.gds │ ├── DFFPOSX1.gds │ ├── DFFSR.gds │ ├── FAX1.gds │ ├── HAX1.gds │ ├── INVX1.gds │ ├── INVX2.gds │ ├── INVX4.gds │ ├── INVX8.gds │ ├── LATCH.gds │ ├── MUX2X1.gds │ ├── NAND2X1.gds │ ├── NAND3X1.gds │ ├── NOR2X1.gds │ ├── NOR3X1.gds │ ├── OAI21X1.gds │ ├── OAI22X1.gds │ ├── OR2X1.gds │ ├── OR2X2.gds │ ├── TBUFX1.gds │ ├── TBUFX2.gds │ ├── XNOR2X1.gds │ └── XOR2X1.gds ├── outputs │ └── someResults.zip ├── requirements.txt ├── resultAnalysis.py ├── resultAnalysisCountTops.py └── spice.py ├── requirements.txt ├── stdCelllib ├── cellsAstranFriendly.sp ├── gds2_encounter.map ├── gpdk45nm.m ├── gscl45nm.db ├── gscl45nm.lef ├── gscl45nm.lib ├── gscl45nm.tlf ├── gscl45nmVfiles.zip └── sky130_fd_sc_hd__tt_025C_1v80.lib └── tools └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | astran -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/README.MD -------------------------------------------------------------------------------- /benchmark/EPFL/EPFLBenchmarks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/EPFL/EPFLBenchmarks.zip -------------------------------------------------------------------------------- /benchmark/batchSynthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/batchSynthesis.py -------------------------------------------------------------------------------- /benchmark/blif/BoomBranchPredictor.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/BoomBranchPredictor.blif -------------------------------------------------------------------------------- /benchmark/blif/BoomRegisterFile.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/BoomRegisterFile.blif -------------------------------------------------------------------------------- /benchmark/blif/BoomRob.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/BoomRob.blif -------------------------------------------------------------------------------- /benchmark/blif/DCache.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/DCache.blif -------------------------------------------------------------------------------- /benchmark/blif/GemminiLoopConv.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/GemminiLoopConv.blif -------------------------------------------------------------------------------- /benchmark/blif/GemminiLoopMatmul.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/GemminiLoopMatmul.blif -------------------------------------------------------------------------------- /benchmark/blif/GemminiMesh.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/GemminiMesh.blif -------------------------------------------------------------------------------- /benchmark/blif/adder.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/adder.blif -------------------------------------------------------------------------------- /benchmark/blif/arbiter.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/arbiter.blif -------------------------------------------------------------------------------- /benchmark/blif/bar.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/bar.blif -------------------------------------------------------------------------------- /benchmark/blif/cavlc.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/cavlc.blif -------------------------------------------------------------------------------- /benchmark/blif/ctrl.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/ctrl.blif -------------------------------------------------------------------------------- /benchmark/blif/div.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/div.blif -------------------------------------------------------------------------------- /benchmark/blif/i2c.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/i2c.blif -------------------------------------------------------------------------------- /benchmark/blif/int2float.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/int2float.blif -------------------------------------------------------------------------------- /benchmark/blif/log2.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/log2.blif -------------------------------------------------------------------------------- /benchmark/blif/max.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/max.blif -------------------------------------------------------------------------------- /benchmark/blif/multiplier.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/multiplier.blif -------------------------------------------------------------------------------- /benchmark/blif/priority.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/priority.blif -------------------------------------------------------------------------------- /benchmark/blif/router.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/router.blif -------------------------------------------------------------------------------- /benchmark/blif/sin.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/sin.blif -------------------------------------------------------------------------------- /benchmark/blif/sqrt.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/sqrt.blif -------------------------------------------------------------------------------- /benchmark/blif/square.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/square.blif -------------------------------------------------------------------------------- /benchmark/blif/voter.blif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/blif/voter.blif -------------------------------------------------------------------------------- /benchmark/boomModule/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/boomModule/README -------------------------------------------------------------------------------- /benchmark/boomModule/boom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/boomModule/boom.zip -------------------------------------------------------------------------------- /benchmark/boomModule/boomCore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/boomModule/boomCore.zip -------------------------------------------------------------------------------- /benchmark/boomModule/test.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/boomModule/test.ys -------------------------------------------------------------------------------- /benchmark/boomModule/vFiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/boomModule/vFiles.zip -------------------------------------------------------------------------------- /benchmark/gemmini/Gemmini.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/gemmini/Gemmini.zip -------------------------------------------------------------------------------- /benchmark/rocketModule/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/rocketModule/README -------------------------------------------------------------------------------- /benchmark/rocketModule/rocket.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/rocketModule/rocket.zip -------------------------------------------------------------------------------- /benchmark/rocketModule/test.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/rocketModule/test.ys -------------------------------------------------------------------------------- /benchmark/rocketModule/vFiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/rocketModule/vFiles.zip -------------------------------------------------------------------------------- /benchmark/syn.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/benchmark/syn.ys -------------------------------------------------------------------------------- /doc/callGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/doc/callGraph.png -------------------------------------------------------------------------------- /doc/experimentalResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/doc/experimentalResult.png -------------------------------------------------------------------------------- /doc/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/doc/flow.png -------------------------------------------------------------------------------- /doc/motivation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/doc/motivation.png -------------------------------------------------------------------------------- /doc/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/doc/pattern.png -------------------------------------------------------------------------------- /pySrc/Astran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/Astran.py -------------------------------------------------------------------------------- /pySrc/BLIFGNNTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/BLIFGNNTraining.py -------------------------------------------------------------------------------- /pySrc/BLIFGraphUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/BLIFGraphUtil.py -------------------------------------------------------------------------------- /pySrc/BLIFPatternGrowth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/BLIFPatternGrowth.py -------------------------------------------------------------------------------- /pySrc/BLIFPreProc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/BLIFPreProc.py -------------------------------------------------------------------------------- /pySrc/GDSIIAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/GDSIIAnalysis.py -------------------------------------------------------------------------------- /pySrc/GNNModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/GNNModel.py -------------------------------------------------------------------------------- /pySrc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/README -------------------------------------------------------------------------------- /pySrc/clean.sh: -------------------------------------------------------------------------------- 1 | rm figs/* 2 | rm netlistsAndLayouts/* -------------------------------------------------------------------------------- /pySrc/globalVariables.py: -------------------------------------------------------------------------------- 1 | 2 | bypassTypes = ["DFF", "bool"] 3 | -------------------------------------------------------------------------------- /pySrc/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/main.py -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AND2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AND2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AND2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AND2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AND2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AND2X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AND2X2.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AND2X2.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AND2X2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AND2X2.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AOI21X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AOI21X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AOI21X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AOI21X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AOI21X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AOI21X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AOI22X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AOI22X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AOI22X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AOI22X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/AOI22X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/AOI22X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/BUFX2.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/BUFX2.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/BUFX2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/BUFX2.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/BUFX4.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/BUFX4.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/BUFX4.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/BUFX4.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF2.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF2.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF2.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF3.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF3.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/CLKBUF3.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/CLKBUF3.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFNEGX1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFNEGX1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFNEGX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFNEGX1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFNEGX1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFNEGX1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFPOSX1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFPOSX1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFPOSX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFPOSX1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFPOSX1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFPOSX1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFSR.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFSR.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/DFFSR.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/DFFSR.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/FAX1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/FAX1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/FAX1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/FAX1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/GDSIILTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/GDSIILTable.txt -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/HAX1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/HAX1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/HAX1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/HAX1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX2.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX2.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX2.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX4.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX4.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX4.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX4.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX8.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX8.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/INVX8.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/INVX8.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/LATCH.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/LATCH.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/LATCH.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/LATCH.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/MUX2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/MUX2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/MUX2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/MUX2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/MUX2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/MUX2X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NAND2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NAND2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NAND2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NAND2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NAND2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NAND2X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NAND3X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NAND3X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NAND3X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NAND3X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NAND3X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NAND3X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NOR2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NOR2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NOR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NOR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NOR2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NOR2X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NOR3X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NOR3X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NOR3X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NOR3X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/NOR3X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/NOR3X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OAI21X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OAI21X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OAI21X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OAI21X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OAI21X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OAI21X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OAI22X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OAI22X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OAI22X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OAI22X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OR2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OR2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OR2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OR2X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OR2X2.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OR2X2.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/OR2X2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/OR2X2.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/TBUFX1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/TBUFX1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/TBUFX1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/TBUFX1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/TBUFX2.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/TBUFX2.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/TBUFX2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/TBUFX2.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/XNOR2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/XNOR2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/XNOR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/XNOR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/XNOR2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/XNOR2X1.run -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/XOR2X1.Astranlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/XOR2X1.Astranlog -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/XOR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/XOR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalAstranStdCells/XOR2X1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalAstranStdCells/XOR2X1.run -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/AND2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/AND2X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/AND2X2.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/AND2X2.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/AOI21X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/AOI21X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/AOI22X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/AOI22X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/BUFX2.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/BUFX2.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/BUFX4.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/BUFX4.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/CLKBUF1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/CLKBUF1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/CLKBUF2.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/CLKBUF2.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/CLKBUF3.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/CLKBUF3.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/DFFNEGX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/DFFNEGX1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/DFFPOSX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/DFFPOSX1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/DFFSR.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/DFFSR.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/FAX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/FAX1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/HAX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/HAX1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/INVX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/INVX1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/INVX2.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/INVX2.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/INVX4.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/INVX4.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/INVX8.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/INVX8.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/LATCH.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/LATCH.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/MUX2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/MUX2X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/NAND2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/NAND2X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/NAND3X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/NAND3X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/NOR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/NOR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/NOR3X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/NOR3X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/OAI21X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/OAI21X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/OAI22X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/OAI22X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/OR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/OR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/OR2X2.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/OR2X2.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/TBUFX1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/TBUFX1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/TBUFX2.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/TBUFX2.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/XNOR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/XNOR2X1.gds -------------------------------------------------------------------------------- /pySrc/originalGSCL45StdCells/XOR2X1.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/originalGSCL45StdCells/XOR2X1.gds -------------------------------------------------------------------------------- /pySrc/outputs/someResults.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/outputs/someResults.zip -------------------------------------------------------------------------------- /pySrc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/requirements.txt -------------------------------------------------------------------------------- /pySrc/resultAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/resultAnalysis.py -------------------------------------------------------------------------------- /pySrc/resultAnalysisCountTops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/resultAnalysisCountTops.py -------------------------------------------------------------------------------- /pySrc/spice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/pySrc/spice.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/requirements.txt -------------------------------------------------------------------------------- /stdCelllib/cellsAstranFriendly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/cellsAstranFriendly.sp -------------------------------------------------------------------------------- /stdCelllib/gds2_encounter.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gds2_encounter.map -------------------------------------------------------------------------------- /stdCelllib/gpdk45nm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gpdk45nm.m -------------------------------------------------------------------------------- /stdCelllib/gscl45nm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gscl45nm.db -------------------------------------------------------------------------------- /stdCelllib/gscl45nm.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gscl45nm.lef -------------------------------------------------------------------------------- /stdCelllib/gscl45nm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gscl45nm.lib -------------------------------------------------------------------------------- /stdCelllib/gscl45nm.tlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gscl45nm.tlf -------------------------------------------------------------------------------- /stdCelllib/gscl45nmVfiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/gscl45nmVfiles.zip -------------------------------------------------------------------------------- /stdCelllib/sky130_fd_sc_hd__tt_025C_1v80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zslwyuan/AutoCellLibX/HEAD/stdCelllib/sky130_fd_sc_hd__tt_025C_1v80.lib -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | Install ASTRAN here --------------------------------------------------------------------------------