https://github.com/teodutu/cgra-app-runner
Scripts that allow running Morpher applications on the Versat CGRA
https://github.com/teodutu/cgra-app-runner
Last synced: 10 months ago
JSON representation
Scripts that allow running Morpher applications on the Versat CGRA
- Host: GitHub
- URL: https://github.com/teodutu/cgra-app-runner
- Owner: teodutu
- License: gpl-3.0
- Created: 2023-10-03T20:14:49.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T20:43:19.000Z (almost 3 years ago)
- Last Synced: 2025-03-25T02:40:35.008Z (over 1 year ago)
- Language: Shell
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CGRA App Runner
Scripts that allow running Morpher applications on the Versat CGRA
## Setting up the Environment
Run the following command to set up the submodules and tools:
```console
./setup.sh
```
## Running an Application
Because applications need to be annotated in order for Morpher to extract its DFG, this is only compatible with Morpher applications.
You can find them in the `Morpher/Morpher/DFG_Generator/benchmarks` folder.
When you've decided upon an application, use `run_on_versat.sh` to run it.
The script requires 2 arguments:
- the path to the source code file of the application
- the name of the function to map to the CGRA (the one containing the call to `please_map_me()`)
You can run the script like so:
```console
./run_on_versat.sh Morpher/Morpher_DFG_Generator/benchmarks/opencgra_benchmarks/fir/kernel.c kernel
```