Jacopo Abramo

Results 173 comments of Jacopo Abramo

Hi @fpjentzsch , thank you for your reply. Yes, adding the transformation to the HLS conversion step did the trick. I'll close the issue.

Greetings, I'm reopening this issue for the following reason: I changed the FINN version (I checked out the "dev" branch, commit hash 281af25500cfbfb8e7abd23c956e4599851fdda8) and tried re-running my notebook to generate...

Hi @auphelia , thanks for the reply. That did the trick. Now I'm having an issue because apparently Vitis HLS is not installed (which makes sense since I only installed...

Hello again, I now have the following output after trying to build the model with Vitis HLS. The code for the building is shown below (target is PYNQ-Z2): ```python from...

> `WARNING: [HLS 207-5567] Invalid Directive: for current device, RAM_S2P + URAM is invalid combination for BIND_STORAGE's option 'type + impl' (/home/jacopo/git/finn/deps/finn-hlslib/slidingwindow.h:116:49) ` From this warning it looks like URAM...

Closing issue as it is now solved.

> Hi, I don't have the answer to your issue unfortunately, but others might. Hi @thesps , thanks for the reply. Actually I may have found the reason why it...

@vloncar thanks for the update, good to know! Then I'll try to get hold of a Vivado HLS version compatible with hls4ml. Like I said I would be more than...

@thesps thanks, I've already started looking into that. Meanwhile, I managed to download Vivado HLS and started the building of my model. Now the synthesis fails due to this error:...

> Add `io_type='io_stream'` to `convert_from_keras_model` I created the configuration as follows: ```python cfg = hls4ml.converters.create_config(backend='Vivado', project_name="deeptrack_hls") cfg['IOType'] = 'io_stream' # Must set this if using CNNs! cfg['HLSConfig'] = hls_config cfg['KerasModel']...