Tensor product for binary numbers

221 Views Asked by At

I'm working on an FPGA project where I need to calculate tensor product between two binary numbers. This is to be used to calculate CRC values. I was referring to this paper from IEEE. "Fast parallel CRC algorithm and implementation on a configurable processor"

According to this paper, I need to calculate the "product" of this expression;

1011 $\otimes$ 1001

Is this tensor product or something else?

Thanks in advance!