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 df05ed8 commit cbdb361Copy full SHA for cbdb361
vpr/src/route/rr_graph_reader.cpp
@@ -686,14 +686,14 @@ void process_rr_node_indices(const DeviceGrid& grid) {
686
for (int iy = node.ylow(); iy <= node.yhigh(); iy++) {
687
for (int ix = node.xlow(); ix <= node.xhigh(); ix++) {
688
count = node.ptc_num();
689
- indices[CHANX][iy][ix][0][count] = inode;
+ indices[CHANX][iy][ix][0].at(count) = inode;
690
}
691
692
} else if (node.type() == CHANY) {
693
694
695
696
- indices[CHANY][ix][iy][0][count] = inode;
+ indices[CHANY][ix][iy][0].at(count) = inode;
697
698
699
0 commit comments