Skip to content

Commit 461f853

Browse files
sfkhalidvaughnbetz
authored andcommitted
Ran make format to format code
1 parent eb2cc34 commit 461f853

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

vpr/src/base/ShowSetup.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -512,14 +512,14 @@ static void ShowPlacerOpts(const t_placer_opts& PlacerOpts,
512512

513513
VTR_LOG("PlacerOpts.pad_loc_type: ");
514514
switch (PlacerOpts.pad_loc_type) {
515-
case FREE:
516-
VTR_LOG("FREE\n");
517-
break;
518-
case RANDOM:
519-
VTR_LOG("RANDOM\n");
520-
break;
521-
default:
522-
VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown I/O pad location type\n");
515+
case FREE:
516+
VTR_LOG("FREE\n");
517+
break;
518+
case RANDOM:
519+
VTR_LOG("RANDOM\n");
520+
break;
521+
default:
522+
VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown I/O pad location type\n");
523523
}
524524

525525
VTR_LOG("PlacerOpts.constraints_file: ");

vpr/src/base/read_options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1633,7 +1633,7 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg
16331633
" * 'free' allows placement to optimize pad locations\n"
16341634
" * 'random' fixes pad locations to arbitrary locations\n.")
16351635
.default_value("free")
1636-
.choices({"free", "random"})
1636+
.choices({"free", "random"})
16371637
.show_in(argparse::ShowIn::HELP_ONLY);
16381638

16391639
place_grp.add_argument(args.constraints_file, "--fix_clusters")

vpr/src/base/vpr_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,8 +838,8 @@ enum e_place_algorithm {
838838
};
839839

840840
enum e_pad_loc_type {
841-
FREE,
842-
RANDOM
841+
FREE,
842+
RANDOM
843843
};
844844

845845
enum e_place_effort_scaling {

0 commit comments

Comments
 (0)