select method
- int col,
- RadixEncode encode
Select the partial product term from the multiples using a RadixEncode.
Implementation
Logic select(int col, RadixEncode encode) {
final mults = fetchMultiples(col)
.named('select_r${encode.row}_c$col', naming: Naming.mergeable);
return _select(mults, encode);
}