File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,11 @@ void ShowSetup(const t_vpr_setup& vpr_setup) {
30
30
VTR_LOG (" Circuit placement file: %s\n " , vpr_setup.FileNameOpts .PlaceFile .c_str ());
31
31
VTR_LOG (" Circuit routing file: %s\n " , vpr_setup.FileNameOpts .RouteFile .c_str ());
32
32
VTR_LOG (" Circuit SDC file: %s\n " , vpr_setup.Timing .SDCFile .c_str ());
33
- VTR_LOG (" Vpr floorplanning constraints file: %s\n " , vpr_setup.FileNameOpts .read_vpr_constraints_file .c_str ());
33
+ if (vpr_setup.FileNameOpts .read_vpr_constraints_file .empty ()) {
34
+ VTR_LOG (" Vpr floorplanning constraints file: not specified\n " );
35
+ } else {
36
+ VTR_LOG (" Vpr floorplanning constraints file: %s\n " , vpr_setup.FileNameOpts .read_vpr_constraints_file .c_str ());
37
+ }
34
38
VTR_LOG (" \n " );
35
39
36
40
VTR_LOG (" Packer: %s\n " , (vpr_setup.PackerOpts .doPacking ? " ENABLED" : " DISABLED" ));
Original file line number Diff line number Diff line change 23
23
* The following definitions are useful to understanding this class:
24
24
*
25
25
* Partition: a grouping of atoms that are constrained to a portion of an FPGA
26
- * See vpr/base/partition.h for more detail
26
+ * See vpr/src/ base/partition.h for more detail
27
27
*
28
28
* Region: the x and y bounds of a rectangular region, optionally including a subtile value,
29
29
* that atoms in a partition are constrained to
30
- * See vpr/base/region.h for more detail
30
+ * See vpr/src/ base/region.h for more detail
31
31
*
32
32
* PartitionRegion: the union of regions that a partition can be placed in
33
- * See vpr/base/partition_region.h for more detail
33
+ * See vpr/src/ base/partition_region.h for more detail
34
34
*
35
35
*
36
36
*/
You can’t perform that action at this time.
0 commit comments