-
Notifications
You must be signed in to change notification settings - Fork 391
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
Clean up rr_node_route_inf #2499
Comments
The target_flag member used to be used by a different router; however, that router has since been removed. This data was still being collected and stored, but was going unused. Removed the member which would save space and should improve performance slightly. See issue verilog-to-routing#2499
The target_flag member used to be used by a different router; however, that router has since been removed. This data was still being collected and stored, but was going unused. Removed the member which would save space and should improve performance slightly. See issue verilog-to-routing#2499
The This would require creating a new struct to hold this "per-iteration" routing info and would require modifying the RoutingContext to also hold this information:
Perhaps the new type could be named @vaughnbetz What do you think about this change? |
@AlexandreSinger As discussed: The |
acc_cost is also read during the connection router (maze expansion); it just isn't written during maze expansion. |
The PR resolving this issue has been merged into master. Closing this issue. Since the occ and acc_cost are read during the wave expansion, it should be fine to keep them in this struct. |
The text was updated successfully, but these errors were encountered: