diff --git a/doc/src/vpr/basic_flow.rst b/doc/src/vpr/basic_flow.rst index b7bbe97eed8..00cd3a96661 100644 --- a/doc/src/vpr/basic_flow.rst +++ b/doc/src/vpr/basic_flow.rst @@ -4,7 +4,7 @@ Basic flow The Place and Route process in VPR consists of several steps: - Packing (combinines primitives into complex blocks) -- Placment (places complex blocks within the FPGA grid) +- Placement (places complex blocks within the FPGA grid) - Routing (determines interconnections between blocks) - Analysis (analyzes the implementation) diff --git a/doc/src/vpr/command_line_usage.rst b/doc/src/vpr/command_line_usage.rst index f3f9f5caa0f..ffc7dfc8266 100644 --- a/doc/src/vpr/command_line_usage.rst +++ b/doc/src/vpr/command_line_usage.rst @@ -828,7 +828,7 @@ The following options are only valid when the placement engine is in timing-driv .. option:: --place_delay_model_reducer {min, max, median, arithmean, geomean} - When calculating delta delays for the placment delay model how are multiple values combined? + When calculating delta delays for the placement delay model how are multiple values combined? **Default:** ``min`` diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index bed702d31a0..06598e43c2d 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -1809,7 +1809,7 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg .show_in(argparse::ShowIn::HELP_ONLY); place_timing_grp.add_argument(args.place_delay_model_reducer, "--place_delay_model_reducer") - .help("When calculating delta delays for the placment delay model how are multiple values combined?") + .help("When calculating delta delays for the placement delay model how are multiple values combined?") .default_value("min") .show_in(argparse::ShowIn::HELP_ONLY); diff --git a/vpr/src/util/vpr_utils.cpp b/vpr/src/util/vpr_utils.cpp index 58d9a31059b..4fe146bde08 100644 --- a/vpr/src/util/vpr_utils.cpp +++ b/vpr/src/util/vpr_utils.cpp @@ -182,7 +182,7 @@ void sync_grid_to_blocks() { } if (device_ctx.grid[blk_x][blk_y].width_offset != 0 || device_ctx.grid[blk_x][blk_y].height_offset != 0) { - VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Large block not aligned in placment for cluster_ctx.blocks %lu at (%d, %d, %d).", + VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Large block not aligned in placement for cluster_ctx.blocks %lu at (%d, %d, %d).", size_t(blk_id), blk_x, blk_y, blk_z); }