Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/UIUC-ChenLab/scalehls
A scalable High-Level Synthesis framework on MLIR
https://github.com/UIUC-ChenLab/scalehls
compiler fpga hls llvm mlir
Last synced: 3 months ago
JSON representation
A scalable High-Level Synthesis framework on MLIR
- Host: GitHub
- URL: https://github.com/UIUC-ChenLab/scalehls
- Owner: UIUC-ChenLab
- License: other
- Created: 2020-04-20T21:15:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T14:17:41.000Z (6 months ago)
- Last Synced: 2024-06-14T20:04:18.428Z (5 months ago)
- Topics: compiler, fpga, hls, llvm, mlir
- Language: MLIR
- Homepage:
- Size: 66.3 MB
- Stars: 202
- Watchers: 15
- Forks: 44
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ScaleHLS Project
[![Build and Test](https://github.com/hanchenye/scalehls/actions/workflows/buildAndTest.yml/badge.svg?branch=master)](https://github.com/hanchenye/scalehls/actions/workflows/buildAndTest.yml)
ScaleHLS is a High-level Synthesis (HLS) framework on [MLIR](https://mlir.llvm.org). ScaleHLS can compile HLS C/C++ or PyTorch model to optimized HLS C/C++ in order to generate high-efficiency RTL design using downstream tools, such as Xilinx Vivado HLS.
By using the MLIR framework that can be better tuned to particular algorithms at different representation levels, ScaleHLS is more scalable and customizable towards various applications coming with intrinsic structural or functional hierarchies. ScaleHLS represents HLS designs at multiple levels of abstraction and provides an HLS-dedicated analysis and transform library (in both C++ and Python) to solve the optimization problems at the suitable representation levels. Using this library, we've developed a design space exploration engine to generate optimized HLS designs automatically.
For more details, please see our [HPCA'22](https://doi.org/10.1109/HPCA53966.2022.00060) and [DAC'22](https://doi.org/10.1145/3489517.3530631) paper:
```bibtex
@inproceedings{yehpca2022scalehls,
title={ScaleHLS: A New Scalable High-Level Synthesis Framework on Multi-Level Intermediate Representation},
author={Ye, Hanchen and Hao, Cong and Cheng, Jianyi and Jeong, Hyunmin and Huang, Jack and Neuendorffer, Stephen and Chen, Deming},
booktitle={2022 IEEE International Symposium on High-Performance Computer Architecture (HPCA)},
year={2022}
}
@inproceedings{yedac2022scalehls,
title={ScaleHLS: a scalable high-level synthesis framework with multi-level transformations and optimizations},
author={Ye, Hanchen and Jun, HyeGang and Jeong, Hyunmin and Neuendorffer, Stephen and Chen, Deming},
booktitle={Proceedings of the 59th ACM/IEEE Design Automation Conference},
year={2022}
}
```## Framework Architecture
## Setting this up
### Prerequisites
- python3
- cmake
- ninja
- clang and lldOptionally, the following packages are required for the Python binding.
- pybind11
- numpy### Clone ScaleHLS
```sh
$ git clone --recursive [email protected]:hanchenye/scalehls.git
$ cd scalehls
```### Build ScaleHLS
Run the following script to build ScaleHLS. Optionally, add `-p ON` to enable the Python binding and `-j xx` to specify the number of parallel linking jobs.
```sh
$ ./build-scalehls.sh
```After the build, we suggest to export the following paths.
```sh
$ export PATH=$PATH:$PWD/build/bin:$PWD/polygeist/build/bin
$ export PYTHONPATH=$PYTHONPATH:$PWD/build/tools/scalehls/python_packages/scalehls_core
```## Compiling HLS C/C++
To optimize C/C++ kernels with the design space exploration (DSE) engine, run:
```sh
$ cd samples/polybench/gemm$ # Parse C/C++ kernel into MLIR.
$ cgeist test_gemm.c -function=test_gemm -S \
-memref-fullrank -raise-scf-to-affine > test_gemm.mlir$ # Launch the DSE and emit the optimized design as C++ code.
$ scalehls-opt test_gemm.mlir -debug-only=scalehls \
-scalehls-dse-pipeline="top-func=test_gemm target-spec=../config.json" \
| scalehls-translate -scalehls-emit-hlscpp > test_gemm_dse.cpp
```If Python binding is enabled, we provide a `pyscalehls` tool to showcase the `scalehls` Python library:
```sh
$ pyscalehls.py test_gemm.c -f test_gemm > test_gemm_pyscalehls.cpp
```## Compiling PyTorch Model
Install the pre-built [Torch-MLIR](https://github.com/llvm/torch-mlir) front-end:
```
$ python -m venv mlir_venv
$ source mlir_venv/bin/activate
$ python -m pip install --upgrade pip
$ pip install --pre torch-mlir torchvision -f https://llvm.github.io/torch-mlir/package-index/ --extra-index-url https://download.pytorch.org/whl/nightly/cpu
```Once Torch-MLIR is installed, you should be able to run the following test:
```sh
$ cd samples/pytorch/resnet18$ # Parse PyTorch model to LinAlg dialect (with Torch-MLIR mlir_venv activated).
$ python3 resnet18.py > resnet18.mlir$ # Optimize the model and emit C++ code.
$ scalehls-opt resnet18.mlir \
-scaleflow-pytorch-pipeline="top-func=forward loop-tile-size=8 loop-unroll-factor=4" \
| scalehls-translate -scalehls-emit-hlscpp > resnet18.cpp
```## Repository Layout
The project follows the conventions of typical MLIR-based projects:
- `include/scalehls` and `lib` for C++ MLIR dialects/passes.
- `polygeist` for the C/C++ front-end.
- `samples` for C/C++ and PyTorch examples.
- `test` for holding regression tests.
- `tools` for command line tools.