Altera_Forum
Honored Contributor
13 years agoFPGA Multiplication Resource Utilization
Hi,
I need to do 18x7 multiplication and my FPGA doesnt have the built in DSP blocks, so I am using behavioral code in the source code to do the multiplication. It is taking around 190 LUT to do this multiplication Example: q_srrc_sum <= $signed(7'd63) * q_srrc; where q_srrc is an 18 bit vector I need to do 16 of these and it takes lot of the area. Is there a better way to optimize this , so that the resource utilization is less. Thank You