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
This assertion is in VCAllocEvaluate() function in iq_router.cpp.
The loop that checks this assertion iterates over all entries in vc_alloc_vcs dequeue. Lets call this loop L1.
There is another loop before L1 that iterates over vc_alloc_vcs and sets this timestamp.
However, if the timestamp for first entry is non-negative, this loop breaks. Thus, when we enter L1, the first entry in vc_alloc_vcs is guaranteed to have non-negative time but others are not, resulting in this assertion fail.
The text was updated successfully, but these errors were encountered:
Setting vc_alloc_delay to 10 in the examples/dragonflyconfig file results in failed assertion:
booksim: routers/iq_router.cpp:783: void IQRouter::_VCAllocEvaluate(): Assertion `time >= 0' failed.
Aborted
This assertion is in VCAllocEvaluate() function in iq_router.cpp.
The loop that checks this assertion iterates over all entries in vc_alloc_vcs dequeue. Lets call this loop L1.
There is another loop before L1 that iterates over vc_alloc_vcs and sets this timestamp.
However, if the timestamp for first entry is non-negative, this loop breaks. Thus, when we enter L1, the first entry in vc_alloc_vcs is guaranteed to have non-negative time but others are not, resulting in this assertion fail.
The text was updated successfully, but these errors were encountered: