You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Expecting all wire-to-wire switches of wire segments with cost index (%d) to have same 'buffered' value (%d), but found segment switch with different 'buffered' value (%d)\n", cost_index, switches_buffered[cost_index], buffered);
390
+
// If a previous buffering state is inconsistent with the current one,
391
+
// the node should be treated as buffered, as there are only two possible
392
+
// values for the buffering state (except for the UNDEFINED case).
393
+
//
394
+
// This means that at least one edge of this node has a buffered switch,
395
+
// which prevails over unbuffered ones.
396
+
switches_buffered[cost_index] = 1;
397
+
398
+
VTR_LOG_WARN("Inconsistency in the buffering state of all wire-to-wire switches of wire segments "
399
+
"with cost index (%d) to have same 'buffered' value (%d), "
400
+
"but found segment switch with different 'buffered' value (%d)\n", cost_index, switches_buffered[cost_index], buffered);
0 commit comments