Skip to content
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

Print not specified for floorplan constraints file when running vpr w… #1773

Merged
merged 3 commits into from Jun 22, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion vpr/src/base/ShowSetup.cpp
Expand Up @@ -30,7 +30,11 @@ void ShowSetup(const t_vpr_setup& vpr_setup) {
VTR_LOG("Circuit placement file: %s\n", vpr_setup.FileNameOpts.PlaceFile.c_str());
VTR_LOG("Circuit routing file: %s\n", vpr_setup.FileNameOpts.RouteFile.c_str());
VTR_LOG("Circuit SDC file: %s\n", vpr_setup.Timing.SDCFile.c_str());
VTR_LOG("Vpr floorplanning constraints file: %s\n", vpr_setup.FileNameOpts.read_vpr_constraints_file.c_str());
if (vpr_setup.FileNameOpts.read_vpr_constraints_file == "") {
VTR_LOG("Vpr floorplanning constraints file: not specified %s\n");
sfkhalid marked this conversation as resolved.
Show resolved Hide resolved
} else {
VTR_LOG("Vpr floorplanning constraints file: %s\n", vpr_setup.FileNameOpts.read_vpr_constraints_file.c_str());
}
VTR_LOG("\n");

VTR_LOG("Packer: %s\n", (vpr_setup.PackerOpts.doPacking ? "ENABLED" : "DISABLED"));
Expand Down
6 changes: 3 additions & 3 deletions vpr/src/base/vpr_constraints.h
Expand Up @@ -23,14 +23,14 @@
* The following definitions are useful to understanding this class:
*
* Partition: a grouping of atoms that are constrained to a portion of an FPGA
* See vpr/base/partition.h for more detail
* See vpr/src/base/partition.h for more detail
*
* Region: the x and y bounds of a rectangular region, optionally including a subtile value,
* that atoms in a partition are constrained to
* See vpr/base/region.h for more detail
* See vpr/src/base/region.h for more detail
*
* PartitionRegion: the union of regions that a partition can be placed in
* See vpr/base/partition_region.h for more detail
* See vpr/src/base/partition_region.h for more detail
*
*
*/
Expand Down