File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Basic flow
4
4
The Place and Route process in VPR consists of several steps:
5
5
6
6
- Packing (combinines primitives into complex blocks)
7
- - Placment (places complex blocks within the FPGA grid)
7
+ - Placement (places complex blocks within the FPGA grid)
8
8
- Routing (determines interconnections between blocks)
9
9
- Analysis (analyzes the implementation)
10
10
Original file line number Diff line number Diff line change @@ -1299,6 +1299,7 @@ The following options are only valid when the router is in timing-driven mode (t
1299
1299
**Default: ** ``1.2 ``
1300
1300
1301
1301
.. option :: --router_profiler_astar_fac <float >
1302
+
1302
1303
Controls the directedness of the timing-driven router's exploration when doing router delay profiling of an architecture.
1303
1304
The router delay profiling step is currently used to calculate the place delay matrix lookup.
1304
1305
Values between 1 and 2 are resonable; higher values trade some quality for reduced run-time.
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ int yylex(void);
52
52
%define parse.error verbose
53
53
54
54
%locations
55
+ %expect 2
55
56
56
57
%union {
57
58
char *id_name;
@@ -208,6 +209,8 @@ int yylex(void);
208
209
%type <node> list_of_generate_block_items generate_item generate_block_item generate loop_generate_construct if_generate_construct
209
210
%type <node> case_generate_construct case_generate_item_list case_generate_items generate_block generate_localparam_declaration generate_defparam_declaration
210
211
212
+
213
+
211
214
/* capture wether an operation is signed or not */
212
215
%type <op> var_signedness
213
216
You can’t perform that action at this time.
0 commit comments