Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VIVADO HLS INSTALLATION INSTALLATION NOT FOUND MAKE SURE VIVADO HLS ON PATH #1015

Open
Tf-arch opened this issue May 30, 2024 · 1 comment
Open
Labels

Comments

@Tf-arch
Copy link

Tf-arch commented May 30, 2024

We are using the vivado 2019.1 linux version lab edition

[Vivado 2019.1: Lab Edition - Linux] filename=Xilinx_Vivado_Lab_Lin_2019.1_0524_1430.tar.gz)

but it has no specific VIVADO_HLS. and we getting the error

VIVADO HLS INSTALLATION INSTALLATION NOT FOUND MAKE SURE VIVADO HLS ON PATH

when we run
hls_model.build command

so could you us to tell us the exact version we should install so that we can get VIVADO HLS. we are working on ubunto 18?

@Tf-arch Tf-arch added the bug label May 30, 2024
@RikPi
Copy link

RikPi commented Jun 19, 2024

Hi, do you have vivado_hls executable on path? You can easily add it in Python by adding the following before calling hls_model.build

import os
os.environ['PATH'] = '<CHANGE TO YOUR INSTALLATION PATH>/Xilinx/Vivado/2019.1/bin:' + os.environ['PATH']

For example, in my case it is:
import os
os.environ['PATH'] = '/tools/Xilinx/Vivado/2019.1/bin:' + os.environ['PATH']

To give a bit more context, you should find your vivado_hls executable inside the bin folder the path is pointing at in the commands above

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants