Need algorithms to implement Matrix multiplication on FPGA

Status
Not open for further replies.

deepu_s_s

Full Member level 5
Joined
Mar 24, 2007
Messages
305
Helped
15
Reputation
30
Reaction score
5
Trophy points
1,298
Activity points
3,021
matrix multiplication hindi

Any fast algorithms to implemet Matrix multiplication on FPGA. Please help me with some ideas..

Added after 2 minutes:

Don't suggest me opencores. org. Send me some pdfs or any other notes.
 

Re: Matrix Multiplication

Hi Deepu,
Did you try doing this?

Type row1 is range 1 to 2;
type col1 is range 1 to 2;

Type matrix1 is array(row1,col1) of integer;

signal s1 :matrix1;

similarly row2,col2,
type matrix2 is array (col2,row2) of integer;
s2 is declared.

s3(1,1)<= s1(1,1)*s2(1,1);
etc...
 

Re: Matrix Multiplication

Yeah I guess..I don't have Xilinx ISE at home.Please Check it and let me know.
 

Matrix Multiplication

Hi guys,

Actually i am doing the implementation of Rijndael algorithm. So I want the 4 x 4 multiplication block in one of the module. So please suggest with me some fast algorithms or any hints/clues
 

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…