2008-02-26 14:55:23 +01:00
|
|
|
/*
|
|
|
|
LA: linear algebra C++ interface library
|
|
|
|
Copyright (C) 2008 Jiri Pittner <jiri.pittner@jh-inst.cas.cz> or <jiri@pittnerovi.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2005-02-18 23:08:15 +01:00
|
|
|
|
|
|
|
#include "mat.h"
|
|
|
|
|
2005-10-12 13:14:55 +02:00
|
|
|
#ifndef NO_STRASSEN
|
2004-03-17 04:07:21 +01:00
|
|
|
/*Strassen algorithm*/
|
|
|
|
// called routine is fortran-compatible
|
|
|
|
extern "C" void fmm(const char c_transa,const char c_transb,const int m,const int n,const int k,const double alpha,
|
|
|
|
const double *a,const int lda,const double *b,const int ldb,const double beta,double *c,const int ldc,
|
|
|
|
double *d_aux,int i_naux);
|
|
|
|
extern "C" void strassen_cutoff(int c, int c1, int c2, int c3);
|
|
|
|
|
2009-10-08 16:01:15 +02:00
|
|
|
template<>
|
2004-03-17 04:07:21 +01:00
|
|
|
void NRMat<double>::s_cutoff(const int c, const int c1, const int c2, const int c3) const
|
|
|
|
{ strassen_cutoff(c,c1,c2,c3);}
|
2009-10-08 16:01:15 +02:00
|
|
|
|
|
|
|
template<>
|
2004-03-17 04:07:21 +01:00
|
|
|
void NRMat<double>::strassen(const double beta, const NRMat<double> &a, const char transa, const NRMat<double> &b, const char transb, const double alpha)
|
|
|
|
{
|
|
|
|
int l(transa=='n'?a.nn:a.mm);
|
|
|
|
int k(transa=='n'?a.mm:a.nn);
|
|
|
|
int kk(transb=='n'?b.nn:b.mm);
|
|
|
|
int ll(transb=='n'?b.mm:b.nn);
|
|
|
|
|
|
|
|
if(l!=nn|| ll!=mm||k!=kk) laerror("incompatible (or undefined size) matrices in strassen");
|
|
|
|
|
|
|
|
copyonwrite();
|
|
|
|
//swap transpositions and order of matrices
|
|
|
|
fmm(transb,transa,mm,nn,k,alpha,b,b.mm, a, a.mm, beta,*this, mm,NULL,0);
|
|
|
|
}
|
2005-10-12 13:14:55 +02:00
|
|
|
#endif
|