Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/augustunderground/pygsrc
Read GSRC Benchmark data set in Python
https://github.com/augustunderground/pygsrc
Last synced: about 6 hours 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 (9 months ago)
- Default Branch: master
- Last Pushed: 2024-08-21T02:48:03.000Z (3 months ago)
- Last Synced: 2024-08-21T03:49:54.976Z (3 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- 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_gsrcbase = './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
```