Differences between revisions 1 and 2
Revision 1 as of 2008-04-27 17:47:56
Size: 891
Editor: was
Comment:
Revision 2 as of 2008-11-14 13:42:09
Size: 891
Editor: anonymous
Comment: converted to 1.6 markup
No differences found!

Multimodular matrix multiply over cyclotomic fields

10:39 < craigcitro> so wait, multiplying two matrices over Q(zeta_r) will be more complicated than just multiplying two of these, right?
10:39 < craigcitro> because the modding by the cyclotomic poly will have to happen somewhere ...
10:39 < wstein> To multiply two matrices one does this:
10:39 < wstein> (1) a single matrix multiply to get the reduction mod all primes over p.
10:40 < craigcitro> ohh, you're going to it multimodular ...
10:40 < wstein> (2) turn the columns into n*m matrices (we'll need a fast reshape command)
10:40 < wstein> (3) mutiply mod p (very very fast -- should dominate - uses clements FFLAS)
10:40 < wstein> (4) reshape
10:40 < wstein> (5) lift via a matrix multiply
10:41 < wstein> (6) do for many p and then apply the ALREADY WRITTEN AND OPTIMIZED CRT code for matrices over ZZ.

cyclo/multipy (last edited 2008-11-14 13:42:09 by anonymous)