cycle-free graph violated - partition depends on itself #431
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 23 replies
-
Hi, the problem is that the MaxPool layer was not correctly streamlined and converted to an HLS node ("StreamingMaxPool_Batch"). Do you apply the |
Beta Was this translation helpful? Give feedback.
-
Hi @fpjentzsch, hope you are still answering this issue. I have met a similar problem, this is what my model looks like: |
Beta Was this translation helpful? Give feedback.
-
Hi @fpjentzsch, In detailI ran into a problem while executing I made some adjustments and tests (see #860 (comment) for details), but the error still occurred. Then I looked at the answers in this issue, and I used the ResNet-50 process to re-tune my code, but I was still stuck. Part of the onnx file when resnet-50 is not used, see #860 (comment) Part of the onnx file when using resnet-50, as follows. I guessed that it was due to the concat operation, so I stopped using concat and split all the output, but still had the same problem. I hope you can help me solve this problem.Thanks again. |
Beta Was this translation helpful? Give feedback.
Hi, the problem is that the MaxPool layer was not correctly streamlined and converted to an HLS node ("StreamingMaxPool_Batch").
Do you apply the
MakeMaxPoolNHWC()
andInferStreamingMaxPool()
transformations during streamlining and HLS-conversion, respectively?