-
Notifications
You must be signed in to change notification settings - Fork 43
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
Error when open superblue18 on GUI #21
Comments
I had the same problem as sheiny mentioned above. if (!net) { Actually, the special nets defined in SPECIALNETS section in .def file, cannot be found and null pointer is returned causing segmentation fault. |
Thank you for the help. |
If the design is defined only using a def file, this error doesn't happen, because both normal and special nets are defined in the def file. The error actually happens when a Reader (in your case the ICCAD15Reader, but it also happens for GenericReader) is populating the design with nets from the verilog file, and only the cells from the def file. The special nets in the def file are skipped, and when the design tries to retrieve one of them it's not found and the program crashes. I copied the section creating the special nets from the Reader which uses only def file. Relative pull request: #23 (comment) |
Hello, I also use the example of superblue18 on gui. But I face a different erro below: Loading library into Rsyn... Had anyone met the same problem ? |
It's probably the same issue.
|
Thanks, I find the problem now. |
Hello, I'm having some problems when opening superblue18 using GUI.
Thats what a I did:
So, when I open the script superblue18-long.rsyn I got a segmentation fault.
here is the log error:
And here is the stack trace:
The seg fault was in file: rsyn/src/rsyn/phy/obj/impl/PhysicalDesign.cpp:917
on method:
The text was updated successfully, but these errors were encountered: