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

Fix typos in documentation #567

Open
wants to merge 1 commit into
base: master+wip
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/src/vpr/basic_flow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion doc/src/vpr/command_line_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``

Expand Down
2 changes: 1 addition & 1 deletion vpr/src/base/read_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<e_reducer, ParseReducer>(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);

Expand Down
2 changes: 1 addition & 1 deletion vpr/src/util/vpr_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down