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 incorrect and ambiguous help strings #6672

Open
wants to merge 1 commit into
base: master
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
22 changes: 11 additions & 11 deletions src/cts/src/TritonCTS.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -73,24 +73,24 @@ sta::define_cmd_args "clock_tree_synthesis" {[-wire_unit unit]
[-root_buf buf] \
[-clk_nets nets] \
[-tree_buf buf] \
[-distance_between_buffers] \
[-branching_point_buffers_distance] \
[-clustering_exponent] \
[-clustering_unbalance_ratio] \
[-sink_clustering_size] \
[-sink_clustering_max_diameter] \
[-distance_between_buffers distance] \
[-branching_point_buffers_distance distance] \
[-clustering_exponent exponent] \
[-clustering_unbalance_ratio ratio] \
[-sink_clustering_size size] \
[-sink_clustering_max_diameter diameter] \
[-sink_clustering_enable] \
[-balance_levels] \
[-sink_clustering_levels levels] \
[-num_static_layers] \
[-sink_clustering_buffer] \
[-num_static_layers num] \
[-sink_clustering_buffer buf] \
[-obstruction_aware] \
[-no_obstruction_aware] \
[-apply_ndr] \
[-sink_buffer_max_cap_derate] \
[-sink_buffer_max_cap_derate derate] \
[-dont_use_dummy_load] \
[-delay_buffer_derate] \
[-library] \
[-delay_buffer_derate derate] \
[-library library] \
} ;# checker off

proc clock_tree_synthesis { args } {
Expand Down
2 changes: 1 addition & 1 deletion src/drt/src/TritonRoute.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ sta::define_cmd_args "detailed_route_debug" {
[-maze]
[-net name]
[-pin name]
[-box x1 y1 x2 y2]
[-box {x1 y1 x2 y2}]
[-dump_last_worker]
[-iter iter]
[-pa_markers]
Expand Down
6 changes: 3 additions & 3 deletions src/grt/src/GlobalRouter.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,9 @@ proc global_route { args } {
}
}

sta::define_cmd_args "repair_antennas" { diode_cell \
[-iterations iterations] \
[-ratio_margin ratio_margin]}
sta::define_cmd_args "repair_antennas" { [-iterations iterations] \
[-ratio_margin ratio_margin] \
[diode_cell] }

proc repair_antennas { args } {
sta::parse_key_args "repair_antennas" args \
Expand Down