-
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
Support packing when modes provide different routing #365
Closed
Conversation
This file contains 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
probot-autolabeler
bot
added
build
Build system
lang-cpp
C/C++ code
lang-make
CMake/Make code
VPR
VPR FPGA Placement & Routing Tool
labels
Jun 14, 2018
probot-autolabeler
bot
added
build
Build system
lang-cpp
C/C++ code
lang-make
CMake/Make code
VPR
VPR FPGA Placement & Routing Tool
labels
Jun 14, 2018
probot-autolabeler
bot
added
build
Build system
lang-cpp
C/C++ code
lang-make
CMake/Make code
VPR
VPR FPGA Placement & Routing Tool
labels
Jun 14, 2018
mithro
changed the title
WIP: Support packing when modes provide different routing
Support packing when modes provide different routing
Jun 14, 2018
@kmurray I've now fixed it so that in the case of no routing conflicts the speed should be pretty much identical. I guess I just need to add a test here now? |
This seems to cause failures at the moment;
|
Indicates that tests crashed or exited non-zero (likely shown as 'Fail' earlier in the log). The QoR failures are likely related to that (-1 is a default value). |
probot-autolabeler
bot
added
build
Build system
infra
Project Infrastructure
lang-cpp
C/C++ code
lang-make
CMake/Make code
lang-perl
Perl code
scripts
Utility & Infrastructure scripts
tests
VPR
VPR FPGA Placement & Routing Tool
VTR Flow
VTR Design Flow (scripts/benchmarks/architectures)
lang-netlist
labels
Jun 15, 2018
probot-autolabeler
bot
added
infra
Project Infrastructure
lang-cpp
C/C++ code
lang-netlist
lang-perl
Perl code
scripts
Utility & Infrastructure scripts
tests
VPR
VPR FPGA Placement & Routing Tool
VTR Flow
VTR Design Flow (scripts/benchmarks/architectures)
labels
Jul 23, 2018
mithro
force-pushed
the
packer-mode-fix
branch
from
August 16, 2018 18:46
fef2aa3
to
836553b
Compare
probot-autolabeler
bot
added
infra
Project Infrastructure
lang-cpp
C/C++ code
lang-netlist
lang-perl
Perl code
scripts
Utility & Infrastructure scripts
tests
VPR
VPR FPGA Placement & Routing Tool
VTR Flow
VTR Design Flow (scripts/benchmarks/architectures)
labels
Aug 16, 2018
It was too easy to confuse E_DETAILED_ROUTE_END_ONLY and E_DETAILED_ROUTE_END. Change it to E_DETAILED_ROUTE_INVALID instead.
This makes the packer work when there are multiple modes which change the routing pattern through a cluster. The packer will try and pack everything together, then it will fail routing causing it to fall back to checking routing atom-by-atom. This means the packer will not add the conflicting modes into one cluster. This fixes the issue with "route through" modes having to be the "zeroth" mode. (I think this actually fixes verilog-to-routing#278 too.)
mithro
force-pushed
the
packer-mode-fix
branch
from
October 9, 2018 02:47
836553b
to
ac31bfa
Compare
litghost
added a commit
to litghost/vtr-verilog-to-routing
that referenced
this pull request
Feb 7, 2020
…asm_speed Improve VTR/genfasm startup
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is a work in progress. I'm sending it to get feedback on the change.
This makes the packer work when there are multiple modes which change the routing pattern through a cluster.
The packer will try and pack everything together, then it will fail routing causing it to fall back to checking routing atom-by-atom.
This will then cause the packer to not add the conflicting modes into one cluster.