Personal/work utilities and notes.
scripts/– small helper scripts- Detailed docs:
scripts/README.md
- Detailed docs:
issues– local notes / scratchpad (format is ad-hoc)
Generate a wo_io.rpt.summary-style summary from a PrimeTime timing report (plain text or .gz).
# Basic
./scripts/pt_summary_from_rpt.py /path/to/report.rpt.gz -o out.summary
# With block mapping
./scripts/pt_summary_from_rpt.py /path/to/report.rpt.gz \
--block-map-file /path/to/block_map.txt \
-o out.summaryConvert Tcl [list] variable definitions into .cfg format.
# Print to stdout
./scripts/tcl_to_cfg.py input.tcl
# Write to file
./scripts/tcl_to_cfg.py input.tcl -o output.cfggit clone git@github.com:alchip/WORK.gitTypical update cycle:
git add -A
git commit -m "<message>"
git push