Hello, I am trying to convert a pytorch Transformer Decoder from onnx to Hailo8l.
However when I try to parse it in the dfc, I get the following errors:
Parsing failed. The errors found in the graph are:
UnsupportedOperationError in op /decoder/GatherElements_1: GatherElements operation is unsupported
UnsupportedReduceMaxLayerError in op /decoder/ReduceMax: Failed to create reduce max layer at vertex /decoder/ReduceMax. Reduce max is only supported on the features axis, and with keepdim=True
UnsupportedOperationError in op /decoder/TopK: TopK operation is unsupported
UnsupportedOperationError in op /decoder/GatherElements: GatherElements operation is unsupported
Please try to parse the model again, using these end node names: /decoder/Add, /decoder/enc_output/norm/LayerNormalization, /decoder/enc_score_head/Add.
Exporting the Encoder worked fine, so I do not understand why converting the Decoder does not work.
I am new to Hailo, so maybe I am not seeing something obvious.