Go to file
Hanchen Ye ce293ee4c5 [QoREstimation] design parameters data structure; initial impl of longer path search 2020-09-23 18:23:43 -05:00
config remove global dialect registration; update file structure 2020-09-23 14:10:34 -05:00
include [QoREstimation] design parameters data structure; initial impl of longer path search 2020-09-23 18:23:43 -05:00
lib [QoREstimation] design parameters data structure; initial impl of longer path search 2020-09-23 18:23:43 -05:00
samples mechanical rename hlsld to scalehls; update file structure 2020-09-06 18:05:16 -05:00
test remove global dialect registration; update file structure 2020-09-23 14:10:34 -05:00
tools remove global dialect registration; update file structure 2020-09-23 14:10:34 -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 change lit report style 2020-09-14 19:56:06 -05:00
README.md [README] update todos 2020-09-23 14:15:21 -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 and this repository is cloned to $SCALEHLS_DIR. To build and launch the tests, run

mkdir $SCALEHLS_DIR/build
cd $SCALEHLS_DIR/build
cmake -G Ninja .. -DMLIR_DIR=$LLVM_BUILD_DIR/lib/cmake/mlir -DLLVM_DIR=$LLVM_BUILD_DIR/build/lib/cmake/llvm -DLLVM_ENABLE_ASSERTIONS=ON -DCMAKE_BUILD_TYPE=DEBUG
cmake --build . --target check-scalehls
export PATH=$SCALEHLS_DIR/build/bin:$PATH

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

cd $SCALEHLS_DIR
scalehls-opt -convert-to-hlscpp test/Conversion/ConvertToHLSCpp/test_*.mlir
scalehls-opt -convert-to-hlscpp test/EmitHLSCpp/test_*.mlir | scalehls-translate -emit-hlscpp

TODOs List

HLSCpp Dialect

  1. TODOs in HLSCpp/PragmaOps.td.

QoREstimation Pass

  1. Performance estimator implementation.

PragmaDSE Pass

EmitHLSCpp

  1. Test HLS C++ emitter with onnx/npcomp;
  2. TODOs in EmitHLSCpp.cpp;
  3. Support memref/tensor cast/view/subview operations;
  4. Support atomic/complex/extention -related operations.

References

  1. MLIR Documents
  2. mlir-npcomp github
  3. onnx-mlir github
  4. circt github
  5. comba github
  6. dahlia github