We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8192a19 + a5e7c7a commit 02b338aCopy full SHA for 02b338a
vpr/src/base/read_options.cpp
@@ -3010,6 +3010,12 @@ void set_conditional_defaults(t_options& args) {
3010
args.RouteFile.set(route_file, Provenance::INFERRED);
3011
}
3012
3013
+ if (args.FlatPlaceFile.provenance() != Provenance::SPECIFIED) {
3014
+ std::string flat_place_file = args.out_file_prefix;
3015
+ flat_place_file += default_output_name + ".flat_place";
3016
+ args.FlatPlaceFile.set(flat_place_file, Provenance::INFERRED);
3017
+ }
3018
+
3019
if (args.ActFile.provenance() != Provenance::SPECIFIED) {
3020
std::string activity_file = args.out_file_prefix;
3021
activity_file += default_output_name + ".act";
0 commit comments