select method

Logic select(
  1. int col,
  2. 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);
}