Go to file
Hanchen Ye 1f4200e88a mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
include mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
lib mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
samples mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
test mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
tools mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
.clang-format mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
.gitignore build code structure; update readme; remove pymlir directory 2020-08-25 14:11:30 -05:00
CMakeLists.txt mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
README.md mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00

README.md

ScaleHLS Project (SCALEHLS)

This project aims to create a framework that ultimately converts an algorithm written in a high level language into an efficient hardware implementation. With multiple levels of intermediate representations (IRs), MLIR appears to be the ideal tool for exploring ways to optimize the eventual design at various levels of abstraction (e.g. various levels of parallelism). Our framework will be based on MLIR, it will incorporate a backend for high level synthesis (HLS) C/C++ code. However, the key contribution will be our parametrization and optimization of a tremendously large design space.

Quick Start

This setup assumes that you have built LLVM and MLIR in $LLVM_BUILD_DIR. To build and launch the tests, run

mkdir build && cd build
cmake -G Ninja .. -DMLIR_DIR=$LLVM_BUILD_DIR/lib/cmake/mlir -DLLVM_EXTERNAL_LIT=$LLVM_BUILD_DIR/bin/llvm-lit
cmake --build . --target check-scalehls

After the installation and test successfully completed, you should be able to run

bin/scalehls-translate -emit-hlscpp ../test/EmitHLSCpp/test_*.mlir

TODO List

scalehls-translate EmitHLSCpp

  1. Test HLS C++ emitter with some real benchmarks;
  2. TODOs in EmitHLSCpp.cpp;
  3. Create testcase for each important operation;
  4. Support memref/tensor cast/view/subview operations;
  5. Support atomic/complex/extend -related operations.

scalehls-opt

  1. Initial implementation.

HLSCpp Dialect

  1. Think about the dialect design.
  2. Initial implementation.

References

  1. MLIR Documents
  2. mlir-npcomp github
  3. circt github
  4. onnx-mlir github