Skip to content

Commit bb23e6c

Browse files
fix signal 6 in stratix 10 arch strong test
1 parent 1b860d1 commit bb23e6c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

vpr/src/base/place_and_route.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,9 @@ t_chan_width setup_chan_width(const t_router_opts& router_opts,
441441
* is used to determine if the channel width should be rounded to an
442442
* even number.
443443
*/
444-
t_chan_width init_chan(int cfactor, const t_chan_width_dist& chan_width_dist, e_graph_type graph_directionality) {
444+
t_chan_width init_chan(int cfactor,
445+
const t_chan_width_dist& chan_width_dist,
446+
e_graph_type graph_directionality) {
445447
auto& device_ctx = g_vpr_ctx.mutable_device();
446448
auto& grid = device_ctx.grid;
447449

vpr/src/route/rr_graph2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,8 +472,8 @@ std::vector<t_seg_details> alloc_and_load_seg_details(int* max_chan_width,
472472
* (ie. channel segments) for each horizontal and vertical channel. */
473473
void alloc_and_load_chan_details(const DeviceGrid& grid,
474474
const t_chan_width& nodes_per_chan,
475-
const std::vector<t_seg_details>& seg_details_y,
476475
const std::vector<t_seg_details>& seg_details_x,
476+
const std::vector<t_seg_details>& seg_details_y,
477477
t_chan_details& chan_details_x,
478478
t_chan_details& chan_details_y) {
479479
chan_details_x = init_chan_details(grid, nodes_per_chan, seg_details_x, X_AXIS);

0 commit comments

Comments
 (0)