We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5fab8 commit 2334819Copy full SHA for 2334819
vpr/src/route/rr_graph_generation/build_scatter_gathers.cpp
@@ -210,7 +210,7 @@ std::vector<t_bottleneck_link> alloc_and_load_scatter_gather_connections(const s
210
scatter_loc.y = gather_loc.y + sg_link.y_offset;
211
scatter_loc.layer_num = gather_loc.layer_num + sg_link.z_offset;
212
213
- const std::vector<t_segment_inf> segment_inf& = (sg_link.x_offset != 0) ? segment_inf_x :
+ const std::vector<t_segment_inf>& segment_inf = (sg_link.x_offset != 0) ? segment_inf_x :
214
(sg_link.y_offset != 0) ? segment_inf_y : segment_inf_z;
215
216
const e_rr_type chan_type = (sg_link.x_offset != 0) ? e_rr_type::CHANX :
0 commit comments