High-Level Synthesis with Partial Evaluation
Anyhls requires a working AnyDSL installation. A script to build the impala frontend and thorin backend as well as the runtime component is provided by the anydsl metaproject (setup.sh). This script will also checkout AnyHLS's sources and configure a build directory.
The setup.sh configures AnyHLS and sets all required paths. The backend for code generation will be set to aocl
. This can be changed via CMake:
BACKEND
: defines the backend to generate code for (supported values:aocl
,hls
)
Example:
cd anydsl/anyhls/build
cmake -DBACKEND=aocl ..
make