-
Notifications
You must be signed in to change notification settings - Fork 414
[AP][Solver] Supporting Unfixed Blocks #2944
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
Merged
amin1377
merged 1 commit into
verilog-to-routing:master
from
AlexandreSinger:feature-ap-solver
Mar 21, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/no_fixed_blocks/config/config.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
############################################################################### | ||
# Configuration file for running the MCNC benchmarks through the AP flow. | ||
# | ||
# The AP flow requires that each circuit contains fixed blocks and is fixed | ||
# to a specific device size. The device sizes here were chosen to match the | ||
# device sizes of the default VTR flow. | ||
############################################################################### | ||
|
||
# Path to directory of circuits to use | ||
circuits_dir=benchmarks/verilog | ||
|
||
# Path to directory of architectures to use | ||
archs_dir=arch/timing | ||
|
||
# Add architectures to list to sweep | ||
arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml | ||
|
||
# Add circuits to list to sweep | ||
circuit_list_add=boundtop.v | ||
circuit_list_add=ch_intrinsics.v | ||
circuit_list_add=or1200.v | ||
circuit_list_add=spree.v | ||
circuit_list_add=stereovision3.v | ||
|
||
# Constrain the circuits to their devices | ||
circuit_constraint_list_add=(stereovision3.v, device=vtr_extra_small) | ||
circuit_constraint_list_add=(ch_intrinsics.v, device=vtr_extra_small) | ||
circuit_constraint_list_add=(spree.v, device=vtr_extra_small) | ||
circuit_constraint_list_add=(boundtop.v, device=vtr_extra_small) | ||
circuit_constraint_list_add=(or1200.v, device=vtr_small) | ||
|
||
# Constrain the circuits to their channel widths | ||
# 1.3 * minW | ||
circuit_constraint_list_add=(stereovision3.v, route_chan_width=44) | ||
circuit_constraint_list_add=(ch_intrinsics.v, route_chan_width=52) | ||
circuit_constraint_list_add=(spree.v, route_chan_width=78) | ||
circuit_constraint_list_add=(boundtop.v, route_chan_width=50) | ||
circuit_constraint_list_add=(or1200.v, route_chan_width=118) | ||
|
||
# Parse info and how to parse | ||
parse_file=vpr_fixed_chan_width.txt | ||
|
||
# How to parse QoR info | ||
qor_parse_file=qor_ap_fixed_chan_width.txt | ||
|
||
# Pass requirements | ||
pass_requirements_file=pass_requirements_ap_fixed_chan_width.txt | ||
|
||
# Pass the script params while writing the vpr constraints. | ||
script_params=-track_memory_usage -crit_path_router_iterations 100 --analytical_place --route | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By the way, did this update affect the results? Given how fast the solver already is, I wouldn’t expect to see any significant improvement in runtime, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It improved the runtime. The QoR does change, but I would not expect it to change by much. I will run Titan to see!