Skip to content

Commit 0a0d009

Browse files
authored
Merge branch 'master' into ipa_it2_clean
2 parents 761c1be + 1a103be commit 0a0d009

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

doc/src/vpr/basic_flow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Basic flow
44
The Place and Route process in VPR consists of several steps:
55

66
- Packing (combinines primitives into complex blocks)
7-
- Placment (places complex blocks within the FPGA grid)
7+
- Placement (places complex blocks within the FPGA grid)
88
- Routing (determines interconnections between blocks)
99
- Analysis (analyzes the implementation)
1010

doc/src/vpr/command_line_usage.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,6 +1299,7 @@ The following options are only valid when the router is in timing-driven mode (t
12991299
**Default:** ``1.2``
13001300

13011301
.. option:: --router_profiler_astar_fac <float>
1302+
13021303
Controls the directedness of the timing-driven router's exploration when doing router delay profiling of an architecture.
13031304
The router delay profiling step is currently used to calculate the place delay matrix lookup.
13041305
Values between 1 and 2 are resonable; higher values trade some quality for reduced run-time.

odin_ii/src/verilog/verilog_bison.y

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ int yylex(void);
5252
%define parse.error verbose
5353

5454
%locations
55+
%expect 2
5556

5657
%union{
5758
char *id_name;
@@ -208,6 +209,8 @@ int yylex(void);
208209
%type <node> list_of_generate_block_items generate_item generate_block_item generate loop_generate_construct if_generate_construct
209210
%type <node> case_generate_construct case_generate_item_list case_generate_items generate_block generate_localparam_declaration generate_defparam_declaration
210211

212+
213+
211214
/* capture wether an operation is signed or not */
212215
%type <op> var_signedness
213216

0 commit comments

Comments
 (0)