Setup and Quick Start

Getting started with hls4ml is very easy. There are several installation options available and once installed, it takes only a few lines of code to run your first synthesis.

Installation

The latest release of hls4ml can be installed with pip:

pip install hls4ml

Warning

Previously, versions of hls4ml were made available on conda-forge. These are outdated and should NOT be used. Installing with pip is currently the only supported method.

Some features of hls4ml need extra dependencies. See the Optional Dependencies section for more details.

Development version

hls4ml is rapidly evolving and many experimental features and bugfixes are available on the development branch. Development version can be installed directly from git:

pip install git+https://github.com/fastmachinelearning/hls4ml@main

Dependencies

Note

As of version 1.1.0+, all conversion frontend specific packages are optional. Only install the packages you need.

Frontend

The hls4ml library requires python 3.10 or later, and depends on a number of Python packages and external tools for synthesis and simulation. Python dependencies are automatically managed by pip or conda.

The following Python packages are all optional and are only required if you intend to use the corresponding converter.

  • Keras is required by the Keras converter.
    • TensorFlow (version 2.8 to 2.14) is required by the Keras v2 converter (keras v2 is included in TensorFlow).

    • Keras <https://pypi.org/project/keras/> 3.0 or above is required by the Keras v3 converter. Keras v3 supports multiple backends for training and inference, and the conversion is not tied any specific backend. Notice that Keras v3 may not coexist with Keras v2 in the same Python environment.

  • ONNX (version 1.4.0 and newer) is required by the ONNX converter.

  • PyTorch is required by the PyTorch converter.

  • Quantization support

Running C simulation from Python requires a C++11-compatible compiler. On Linux, a GCC C++ compiler g++ is required. Any version from a recent Linux should work. On MacOS, when the clang-based g++ finds issues with ap_types headers, one may still need to install GCC, using brew for example. For the oneAPI backend, one must have oneAPI=2025.0 (2025.1 is known not to work) installed, along with the FPGA compiler, to run C/SYCL simulations.

Specific functionalities may need additional Python packages. If any needed is missing, hls4ml will raise an error and prompt you to install the missing packages.

To run FPGA synthesis, installation of following tools is required:

  • Xilinx Vivado HLS 2020.1 for synthesis for Xilinx FPGAs using the Vivado backend. Older versions may work, but use at your own risk.

  • Vitis HLS 2022.2 or newer is required for synthesis for Xilinx FPGAs using the Vitis backend.

  • Intel Quartus 20.1 to 21.4 for the synthesis for Intel/Altera FPGAs using the Quartus backend.

  • oneAPI 2024.1 to 2025.0 with the FPGA compiler and recent Intel/Altera Quartus for Intel/Altera FPGAs using the oneAPI backend. Newer versions of OneAPI removed FPGA support and will to work with hls4ml.

Catapult HLS 2024.1_1 or 2024.2 can be used to synthesize both for ASICs and FPGAs.

Quick Start

For basic concepts to understand the tool, please visit the Concepts chapter. Here we give line-by-line instructions to demonstrate the general workflow.

import hls4ml

from keras.models import Sequential
from keras.layers import Dense, Activation


# Construct a basic keras model
model = Sequential()
model.add(Dense(64, input_shape=(16,), activation='relu'))
model.add(Dense(32, activation='relu'))

# This is where you would train the model in a real-world scenario

# Generate an hls configuration from the keras model
config = hls4ml.utils.config_from_keras_model(model)

# You can print the config to see some default parameters
print(config)

# Convert the model to an hls project using the config
hls_model = hls4ml.converters.convert_from_keras_model(
   model=model,
   hls_config=config,
   backend='Vitis'
)

Once converted to an HLS project, you can connect the project into the Python runtime and use it to run predictions on a numpy array:

import numpy as np

# Compile the hls project and link it into the Python runtime
hls_model.compile()

# Generate random input data
X_input = np.random.rand(100, 16)

# Run the model on the input data
hls_prediction = hls_model.predict(X_input)

After that, you can use Vitis HLS to synthesize the model:

# Use Vitis HLS to synthesize the model
# This might take several minutes
hls_model.build()

# Optional: print out the report
hls4ml.report.read_vivado_report('my-hls-test')

Done! You’ve built your first project using hls4ml! To learn more about our various API functionalities, check out our tutorials here.

If you want to configure your model further, check out our Configuration page.

Existing examples

  • Training codes and examples of resources needed to train the models can be found in the tutorial.

  • Examples of model files and weights can be found in example_models directory.

Uninstalling

To uninstall hls4ml:

pip uninstall hls4ml

If installed with conda, remove the package with:

conda remove hls4ml

Optional Dependencies

hls4ml provides several optional dependency groups that can be installed based on your specific needs. Multiple groups can be installed simultaneously by specifying them in a comma-separated list (pip install hls4ml[xxx,yyy,zzz]).

Warning

Some optional dependencies may conflict with each other. For example, Keras v2 and Keras v3 cannot coexist in the same Python environment; qkeras requires certain versions of TensorFlow that may conflict with other packages. For example, pip install hls4ml[qkeras,hgq2] will not work.

# For distributed arithmetic
pip install hls4ml[da]

# For HGQ frontend
pip install hls4ml[hgq]

# For HGQ2 frontend
pip install hls4ml[hgq2]

# For Keras v3 frontend
pip install hls4ml[keras-v3]

# For ONNX frontend
pip install hls4ml[onnx]

# For DSP-aware pruning
pip install hls4ml[optimization]

# For weights and activation range visualization
pip install hls4ml[profiling]

# For QKeras frontend
pip install hls4ml[qkeras]

# For Quartus report parsing
pip install hls4ml[quartus-report]

# For symbolic regression
pip install hls4ml[sr]

# For documentation building (developers)
pip install hls4ml[doc]

# For testing (developers)
pip install hls4ml[testing]