Missing files on Vitis HLS backend deployment #1187
-
Apologies for this long post. From the tutorials, Vivado HLS was used. In my case since I only have Vivado 2024.1, Vitis HLS is the one needed to be used. I've already changed the code according to the methods I will use (Backend for Vitis and Pynq-Zu for FPGA). `import hls4ml config = hls4ml.utils.config_from_keras_model(model, granularity='name') I already have used pip install for the pynq-zu according to another post regarding the usage of pynq-zu for hls4ml. here I've changed the backend to Vitis because that's what they said here when I run the code above, this comes out: So, my solution for this was to change the And here comes the bit about the missing files, When I get to the part I need to run this I get this message So I checked my directories and there was no But I kept on going with the tutorial and when I reached the part where I had to archive the files into a Send help please ;~; |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 20 replies
-
There are |
Beta Was this translation helpful? Give feedback.
IT WORKS NOW OMG I DONT KNOW WHAT I DID BUT I DID SOMETHING.
From the start of this discussion I have:
Gave up trying to replace vitis hls backend for the vivado accelerator backend part and just stuck with vivado accelerator
because of this I installed 2 versions of vivado, 2020.1.1(for the vivado accelerator) and 2024.1 (for the vitis backend)
Made sure that for both the versions of vivado my fpga board is recognized. For 2020.1 I had to put the board files into the board files directory and then made that the board repository for that version.
because of this everytime I use tutorials part1-4 I have to source it to 2024.1 vitis hls
and if I want to use tutorial part7 i have to source i…