-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing pugixml.hpp Header File when compling from source #315
Comments
Hi, you have not correctly initialized the submodules in the repository. After cloning the repo, launch the following: |
It works, thank you for your help. By the way, I am trying to modify the source code but the development document is incomplete, where can I find more documents about development? |
There is not much documentation for development; it is still a work in progress. I can guide you through if you could share some information on what you'd like to implement. |
Thank you very much! We have an idea about resource sharing, aiming to optimize the issue of resource sharing between different layers when using HLS for neural networks. Since the original C++ code is designed using a factory pattern, I encountered some troubles while reading the code. I would like to know which module or data structure I should focus on if I want to optimize the resource sharing algorithm. Currently, I am puzzled about how your HLS framework identifies shareable substructures from the graph structure. |
Command Line Used: ../configure --prefix=/opt/panda --enable-flopoco -enable-debug & make
Description of the Bug:
When compiling BambuHLS, I encountered a fatal error stating that the pugixml.hpp header file cannot be found. This suggests that the pugixml framework is missing.
Steps to Reproduce:
Just follow the document from https://panda.deib.polimi.it/?page_id=88
Expected Behavior:
No error
Actual Behavior:
During compilation, the error message fatal error: pugixml.hpp: No such file or directory is encountered, halting the compilation process.
Additional Information:
The temporary solution of copying the pugixml source code to /src/HLS directory suggests that the framework may not be properly included or configured in the build process. Further guidance on resolving this issue would be appreciated.
The text was updated successfully, but these errors were encountered: