https://github.com/augustunderground/pygsrc
Read GSRC Benchmark data set in Python
https://github.com/augustunderground/pygsrc
Last synced: 9 months ago
JSON representation
Read GSRC Benchmark data set in Python
- Host: GitHub
- URL: https://github.com/augustunderground/pygsrc
- Owner: AugustUnderground
- License: mit
- Created: 2024-02-15T09:39:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T02:48:03.000Z (almost 2 years ago)
- Last Synced: 2025-04-15T01:53:48.142Z (about 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GSRC Benchmark in Python
Very quick and even dirtier Reader for the
[GSRC](http://vlsicad.eecs.umich.edu/BK/GSRCbench/) Benchmark Dataset.
## Get the Dataset
Run the `resources/download.sh` script.
```
% pushd resources && ./download.sh && popd
```
This will generate a `./resources/gsrc/HARD` and `./resources/gsrc/SOFT`,
containing the respective datasets.
## Read the Data
See `example/example.py`:
```python
from gsrc import read_gsrc
base = './resources/gsrc'
mode = 'HARD'
name = 'n100'
data = read_gsrc(base,name,mode)
```
## Installation
From git:
```
% pip install git+https://github.com/augustunderground/pygsrc.git
```
From source:
```
% git clone https://github.com/augustunderground/pygsrc.git
% cd pygsrc
% pip install . --use-feature=in-tree-build
```