PKU-IDEA / OpenPARF

🕹 OpenPARF: An Open-Source Placement and Routing Framework for Large-Scale Heterogeneous FPGAs with Deep Learning Toolkit
BSD 3-Clause "New" or "Revised" License
107 stars 13 forks source link

关于OpenPARF的安装问题 #6

Closed JustinJustinJustinJustinJustin666 closed 7 months ago

JustinJustinJustinJustinJustin666 commented 7 months ago

作者你好,我将本地的OpenPARF使用rm -rf OpenPARF指令删除后,重新将OpenPARF克隆下来。我确保我的依赖及先决条件都与README中的一样。在进行cmake的时候会出现以下情况, image 在make的时候会出现以下情况, image 在make install的时候会出现以下情况, image 请告诉我该怎么做?

limbo018 commented 7 months ago

看起来是database编译报错。你把make -j 那一句改成 make,看一下单线程编译会报什么错?Yibo LinAssistant ProfessorPeking University On Feb 26, 2024, at 10:13 PM, JustinJustinJustinJustinJustin666 @.***> wrote: 作者你好,我将本地的OpenPARF使用rm -rf OpenPARF指令删除后,重新将OpenPARF克隆下来。我确保我的依赖及先决条件都与README中的一样。在进行cmake的时候会出现以下情况, image.png (view on web) 在make的时候会出现以下情况, image.png (view on web) 在make install的时候会出现以下情况, image.png (view on web) 请告诉我该怎么做?

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: @.***>

magic3007 commented 7 months ago

I have added a commit to fix this bug on the master branch, please pull this commit.

Additionally, could you please tell me your compiler and its version? This bug seems to have not thrown an error on our previous compiler. Informing us could help us continue to improve. :)

JustinJustinJustinJustinJustin666 commented 7 months ago

感谢二位及时的回复!OpenPARF安装成功了。 我的G++版本为7.5.0,GCC版本为7.5.0 image image python版本为3.7.16

magic3007 commented 7 months ago

According to the screenshot here, the gcc version is 9.4. Is there an issue with the router when running here?

JustinJustinJustinJustinJustin666 commented 7 months ago

不好意思!在截屏的环境下无法布线,我刚刚在cmake日志中检查发现C++的编译器使用的是clang10.0.0版本,当我换了G++7.5.0之后并清除构建目录重新进行cmake、make、make install后,可以成功进行布线! 感谢作者!