A Vivado HLS Command Line Helper Tool.
Supports a command line driven development process, which increases the performance of the HLS tool and aids compatibility with source control tools, in order achieve an increase in productivity.
- Flexibly execute any of the Vivado HLS build stages
- Open build reports
- Clean up generated files
- View complete project status
- Open Vivado HLS GUI with project loaded
- Python 3
- Tested with and and 3.9
- Vivado HLS
- Tested with Vivado HLS 2017.1 and 2018.1
pip install hlsclt
Depends on Click and pyaml which will be installed automatically by pip.
In order to use Clicks Shell Completion feature,
locate the directory for completions of your shell. (zsh user may choose on of $fpath
).
Then execute the following (replace ${some_comp_dir}
with the one of your shell):
_HLSCLT_COMPLETE=${SHELL}_source hlsclt > ${some_comp_dir}/_hlsclt
chmod +x ${some_comp_dir}/_hlsclt
This tool is intended to aid a command line driven development process for Vivado HLS. Whilst the tool is designed to be flexible, certain guidelines should be followed. A top level project folder should contain your HLS source files (or folders) and a 'hls_config.yaml' file which specifies some of the required configuration for a HLS project (device, clock speed etc).
A recommended directory structure is as follows:
- my_project_name
- src
- dut.cpp
- dut.h
- tb
- testbench.cpp
- hls_config.yaml
- src
An example project structure and hls_config.yaml can be found in the examples directory. A full guide for setting a config.py can be seen in the Project Config section.
The tool should be invoked from within the project folder, i.e. :
cd my_project_name
hlsclt build csim
The tool will read in the configuration from your 'hls_config.yaml' file and invoke Vivado HLS to perform the chosen build stages.
All of the tools commands and options can be seen by using the '--help' argument:
[ben@localhost]$ hlsclt --help
Usage: hlsclt [OPTIONS] COMMAND [ARGS]...
Helper tool for using Vivado HLS through the command line. If no arguments
are specified then a default run is executed which includes C simulation, C
synthesis, Cosimulation and export for both Vivado IP Catalog and System
Generator. If any of the run options are specified then only those specified
are performed.
Options:
--version Show the version and exit.
-c, --config-file FILENAME
-d, --debug
--help Show this message and exit.
Commands:
build Run HLS build stages.
clean Remove generated files.
open_gui Open the Vivado HLS GUI and load the project.
report Open reports.
status Print out the current project status.
The tool is built using the concept of 'nested' commands (like git for example), where the main command 'hlsclt' has a group of subcommands, some of which in turn have subcommands. The 'status' command is a simple example of single level of nesting:
[ben@localhost]$ hlsclt status
Project Details
Project Name: proj_simple_adder
Number of solutions generated: 1
Latest Solution Folder: 'proj_simple_adder/solution1'
Language Choice: vhdl
Build Status
C Simulation: Pass
C Synthesis: Not Run
Cosimulation: Not Run
Export:
IP Catalog: Not Run
System Generator: Not Run
Export Evaluation: Not Run
The build subcommand is slightly more complex than the other top-level commands. Nested subcommands under the build command can be chained in order to perform multiple HLS build stages, each with their own options:
[ben@localhost]$ hlsclt build csim syn cosim -d
In this example the tool will launch the HLS process to run a C simulation, followed by C Synthesis, and finally a cosimulation with debugging enabled so that we can view the waveforms of the cosimulation at a later point.
Each command or subcommand has it's own help option which gives specific information about the command and how to use it. For example the export subcomand:
[ben@localhost]$ hlsclt build export --help
Usage: hlsclt build export [OPTIONS]
Runs the Vivado HLS export stage.
Options:
-t, --type [ip|sysgen] Specify an export type, Vivado IP Catalog or System
Generator. Accepts multiple occurrences. [required]
-e, --evaluate Runs Vivado synthesis and place and route for the
generated export.
--help Show this message and exit.
Each Vivado HLS project requires a 'hls_config.yaml' file in order to use hlsclt. This file contains all of the information required by Vivado HLS and hlsclt to perform build operations for your project. The file uses basic yaml syntax to specify the configuration in a parsable format. The full list of available configuration options is shown below:
Configuration Item | Variable Name | Valid Options | Required |
---|---|---|---|
Project Name | project_name | Any valid directory name | No (Default is name of the containing project folder prepended with 'proj_') |
Function Name | top_level_function_name | String which match function name | Yes |
Source Files Dir | src_dir_name | Name of directory where source files are located, relative to the project folder | No (Default is 'src') |
Testbench Files Dir | tb_dir_name | Name of directory where testbench files are located, relative to the project folder | No (Default is 'tb') |
Source Files | src_files | A list of source files required, located within the Source Files directory | Yes |
Testbench Files | tb_files | A list of testbench files required, located within the Testbench Files directory | Yes |
Device String | part_name | A device string as used by Vivado HLS (see examples) | Yes |
Clock Period | clock_period | A value in nanoseconds input as a string, e.g. "10" | Yes |
HDL Language | language | Either "vhdl" or "verilog" | No (Default is 'vhdl') |
Compiler | Compiler | Either "gcc" or "clang" | No (HLS defaults to gcc) |
Compiler Options | cflags | Any flag for GCC (e.g. --std=c++11) | No |
Testbench Options | tb_cflags | Any flag for GCC (e.g. --std=c++11) | No |
Active Solution | solution | Any valid directory name | No (Default is 'sol_default') |
All Solutions | solutions | List of solution specific configurations (See next table) | No |
Configuration Item | Variable Name | Valid Options | Required |
---|---|---|---|
Solution Name | name | Any valid directory name | No (Default 'sol_default') |
Function Name | top_level_function_name | String which match function name | No (Default to projects top_level_function_name) |
directives | directives | A list of hls directives, set_directive_ is prepended automatically |
No |
Additional Scripts | source | A list of tcl scripts that will be include | No |
Note: In order to pass a cflag to only one source or testbench file specify it as an object like:
src_files: - path: src/my_file.cpp cflags: -Wall - ...
Here is an example file taken from the simple_adder example shipped with the tool
# Config file for Simple Adder Vivado HLS project
project_name: proj_simple_adder
top_level_function_name: simple_adder
part_name: xc7z020clg484-1
clock_period: 10
language: vhdl
compiler: clang
src_dir_name: ""
tb_dir_name: ""
src_files:
- src/dut.h
- src/dut.cpp
tb_files:
- path: tb/testbench.cpp
cflags: -Wno-unknown-pragmas
solution: sol_default
solutions:
- name: sol_default
- name: sol_pipelined
directives:
- pipeline simple_adder
See LICENSE
If you have any issues or find a bug please first search the open issues on github and then submit a new issue ticket.