How to target a different board/FPGA than the examples?
davidfhorowitz opened this issue · 2 comments
In the documentation it says you can re-target the examples for any FPGA with enough room. I would like to target a ZCU111 RFSoC so I can insert the IP into a custom design. I believe I need to alter the "build.py" file but I'm not clear on which lines need to be altered and how to specify ZCU111 rather than the default ZCU104. Can you provide guidance?
Thank you
Can I just open the Vivado project that was created, switch the part, and regenerate everything?
Hi, you should be able to change the part in Vivado after the fact, at least if the device is from the same family and the HLS-generated code is compatible.
To see which Boards you can select in the build.py, see https://github.com/Xilinx/finn/blob/dev/src/finn/util/basic.py
For an example of how to add support for new boards, you could refer to this PR: Xilinx/finn#787