Arthur

Results 7 comments of Arthur

Hi @green-cabbage, have you been able to successfully deploy your GCN model? I am also trying to implement a GCN model using hls4ml, but no success so far :/

Hi, I have a quick question related to this. When I create my HLS model with `hls4ml.converters.keras_to_hls`, I get the following warning: `WARNING: Cannot use "Latency" model strategy for conv2d...

Thanks for the reply @jmitrevs! The warning is gone. However, when compiling my HLS model I'm having weird errors that I've not seen before. ``` In file included from firmware/myproject.cpp:22:...

Hi, I'm having the same issue with Dense layers. `WARNING: Cannot use "Latency" model strategy for dense1 layer. Switching to "Resource" strategy.` So this bug might not be limited to...

> Dense on 3D input is supported. Behind the scenes, it will result in exactly the same code as in your 2nd alternative, i.e., pointwise Conv2D. The reason you don't...

> You can see in the report exactly what is the DSP used for. When using the resource strategy, the weights will be stored in BRAM and there will be...

Hi, thank you so much for the insightful reply @vloncar ! However, by being creative with the supported Keras layers it seems like I will not be able to succesfully...