[libre-riscv-dev] [Bug 132] SIMD-like nmigen signal for partitioning

bugzilla-daemon at libre-riscv.org bugzilla-daemon at libre-riscv.org
Wed Aug 14 22:33:29 BST 2019


http://bugs.libre-riscv.org/show_bug.cgi?id=132

--- Comment #14 from Jacob Lifshay <programmerjake at gmail.com> ---
(In reply to Luke Kenneth Casson Leighton from comment #12)
> (In reply to Jacob Lifshay from comment #11)
> 
> > > 
> > > If the code is not doing single cycle results we cannot use it.
> > 
> > yes we can, we just need to tell the pipeline API "this takes 3 stages
> > instead of one, so insert extra registers on the control signals"
> 
> Which still does not take care of cancellation.

it's a simple data pipe, if a particular element is canceled, that pipeline
slot will just be empty, just like divpipecore. the control pipeline can keep
track of which elements have valid data and which have been canceled.

> 
> The multiplier code will now need to implement cancellation, which is a
> global mask (not a register-propagated signal).
the surrounding control hardware will just set the associated control signals
such that the canceled/unused data elements are ignored.

> 
> Have a look at MaskCancellable.
> 
> The predicate mask (which is register based) and the stop mask (which is
> global per pipe) are opaque to the (combinatorial) Stage API.

that's just fine. think of the multiplier as identical to a combinatorial stage
except it takes more than one clock cycle for the data to get through.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the libre-riscv-dev mailing list