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
Currently the DataLink type used by the scatter unit and gather unit is:
--| Either contains a @Just (BitVector frameWidth)@ or @Nothing@.typeDataLinkframeWidth=Maybe (BitVectorframeWidth)
But since all communication is scheduled ahead of time we don't need any flow control mechanisms at this level.
As a workaround we can apply Just to all BitVector frameWidths and use fromMaybe 0 to strip them.
The scatter engines, gather engines, switch and their tests should be adjusted to reflect this change.
The text was updated successfully, but these errors were encountered:
Currently the
DataLink
type used by the scatter unit and gather unit is:But since all communication is scheduled ahead of time we don't need any flow control mechanisms at this level.
As a workaround we can apply
Just
to allBitVector frameWidths
and usefromMaybe 0
to strip them.The scatter engines, gather engines, switch and their tests should be adjusted to reflect this change.
The text was updated successfully, but these errors were encountered: