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 f89faad commit 1ee7745Copy full SHA for 1ee7745
vpr/src/route/rr_graph_storage.h
@@ -218,6 +218,12 @@ class t_rr_graph_storage {
218
* // See if the node appears ONLY on 1 side
219
* if (1 == node_sides(id).count()) {
220
* }
221
+ *
222
+ * TODO: This function may be deprecated, depending its utilization
223
+ * in client functions, router, GUI etc. It offers a shortcut
224
+ * for developers who can check what sides a node appear on.
225
+ * However, such query can be done outside RRGraph by iterating
226
+ * over all the sides and using API is_node_on_specific_side()
227
*/
228
std::bitset<NUM_SIDES> node_sides(RRNodeId id) const {
229
return get_node_sides(
0 commit comments