File tree 1 file changed +9
-2
lines changed 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -269,12 +269,19 @@ class RRGraphView {
269
269
return node_storage_.num_non_configurable_edges (node);
270
270
}
271
271
272
- /* * @brief Get ID range for configurable edges. This function is inlined for runtime optimization. */
272
+ /* * @brief A configurable edge represents a programmable switch between routing resources, which could be
273
+ * a multiplexer
274
+ * a tri-state buffer
275
+ * a pass gate
276
+ * This API gets ID range for configurable edges. This function is inlined for runtime optimization. */
273
277
inline edge_idx_range configurable_edges (RRNodeId node) const {
274
278
return node_storage_.configurable_edges (node);
275
279
}
276
280
277
- /* * @brief Get ID range for non-configurable edges. This function is inlined for runtime optimization. */
281
+ /* * @brief A non-configurable edge represents a hard-wired connection between routing resources, which could be
282
+ * a non-configurable buffer that can not be turned off
283
+ * a short metal connection that can not be turned off
284
+ * This API gets ID range for non-configurable edges. This function is inlined for runtime optimization. */
278
285
inline edge_idx_range non_configurable_edges (RRNodeId node) const {
279
286
return node_storage_.non_configurable_edges (node);
280
287
}
You can’t perform that action at this time.
0 commit comments