diff options
author | Alberto Ruiz <aruiz@um.es> | 2008-10-02 15:53:10 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2008-10-02 15:53:10 +0000 |
commit | 192ac5f4b98517862c37ecf161505396ad223cd8 (patch) | |
tree | 811312f28bca2bd18d282bc0be732a17cd8dbcd7 /lib/Numeric/LinearAlgebra/LAPACK | |
parent | 9c6b2af0066f7608301ad685ea5e60753fc3b6ff (diff) |
alternative multiply versions
Diffstat (limited to 'lib/Numeric/LinearAlgebra/LAPACK')
-rw-r--r-- | lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c | 74 | ||||
-rw-r--r-- | lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | 6 |
2 files changed, 80 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c index 310f6ee..0dccea2 100644 --- a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c +++ b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c | |||
@@ -814,3 +814,77 @@ int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r)) { | |||
814 | free(auxipiv); | 814 | free(auxipiv); |
815 | OK | 815 | OK |
816 | } | 816 | } |
817 | |||
818 | //////////////////////////////////////////////////////////// | ||
819 | |||
820 | int multiplyR(KDMAT(a),KDMAT(b),DMAT(r)) { | ||
821 | REQUIRES(ac==br && ar==rr && bc==rc,BAD_SIZE); | ||
822 | int i,j,k; | ||
823 | for (i=0;i<ar;i++) { | ||
824 | for(j=0;j<bc;j++) { | ||
825 | double temp = 0; | ||
826 | for(k=0;k<ac;k++) { | ||
827 | temp += ap[i*ac+k]*bp[k*bc+j]; | ||
828 | } | ||
829 | rp[i*rc+j] = temp; | ||
830 | } | ||
831 | } | ||
832 | OK | ||
833 | } | ||
834 | |||
835 | int multiplyC(KCMAT(a),KCMAT(b),CMAT(r)) { | ||
836 | REQUIRES(ac==br && ar==rr && bc==rc,BAD_SIZE); | ||
837 | int i,j,k; | ||
838 | for (i=0;i<ar;i++) { | ||
839 | for(j=0;j<bc;j++) { | ||
840 | doublecomplex temp = {0,0}; | ||
841 | for(k=0;k<ac;k++) { | ||
842 | doublecomplex aik = ((doublecomplex*)ap)[i*ac+k]; | ||
843 | doublecomplex bkj = ((doublecomplex*)bp)[k*bc+j]; | ||
844 | //double w = aik.r+aik.i+bkj.r+bkj.i; | ||
845 | //if (w>w) exit(1); | ||
846 | //printf("%d",w>w); | ||
847 | temp.r += aik.r * bkj.r - aik.i * bkj.i; | ||
848 | temp.i += aik.r * bkj.i + aik.i * bkj.r; | ||
849 | //printf("%f %f %f %f \n",aik.r,aik.i,bkj.r,bkj.i); | ||
850 | //printf("%f %f %f \n",w,temp.r,temp.i); | ||
851 | |||
852 | } | ||
853 | ((doublecomplex*)rp)[i*rc+j] = temp; | ||
854 | //printf("%f %f\n",temp.r,temp.i); | ||
855 | } | ||
856 | } | ||
857 | OK | ||
858 | } | ||
859 | |||
860 | void dgemm_(char *, char *, integer *, integer *, integer *, | ||
861 | double *, const double *, integer *, const double *, | ||
862 | integer *, double *, double *, integer *); | ||
863 | |||
864 | void zgemm_(char *, char *, integer *, integer *, integer *, | ||
865 | doublecomplex *, const doublecomplex *, integer *, const doublecomplex *, | ||
866 | integer *, doublecomplex *, doublecomplex *, integer *); | ||
867 | |||
868 | |||
869 | int multiplyR2(KDMAT(a),KDMAT(b),DMAT(r)) { | ||
870 | REQUIRES(ac==br && ar==rr && bc==rc,BAD_SIZE); | ||
871 | double alpha = 1; | ||
872 | double beta = 0; | ||
873 | integer m = ar; | ||
874 | integer n = bc; | ||
875 | integer k = ac; | ||
876 | int i,j; | ||
877 | dgemm_("N","N",&m,&n,&k,&alpha,ap,&m,bp,&k,&beta,rp,&m); | ||
878 | OK | ||
879 | } | ||
880 | |||
881 | int multiplyC2(KCMAT(a),KCMAT(b),CMAT(r)) { | ||
882 | REQUIRES(ac==br && ar==rr && bc==rc,BAD_SIZE); | ||
883 | integer m = ar; | ||
884 | integer n = bc; | ||
885 | integer k = ac; | ||
886 | doublecomplex alpha = {1,0}; | ||
887 | doublecomplex beta = {0,0}; | ||
888 | zgemm_("N","N",&m,&n,&k,&alpha,(doublecomplex*)ap,&m,(doublecomplex*)bp,&k,&beta,(doublecomplex*)rp,&m); | ||
889 | OK | ||
890 | } | ||
diff --git a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h index 79e52be..c0361a6 100644 --- a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h +++ b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h | |||
@@ -84,3 +84,9 @@ int schur_l_C(KCMAT(a), CMAT(u), CMAT(s)); | |||
84 | 84 | ||
85 | int lu_l_R(KDMAT(a), DVEC(ipiv), DMAT(r)); | 85 | int lu_l_R(KDMAT(a), DVEC(ipiv), DMAT(r)); |
86 | int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r)); | 86 | int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r)); |
87 | |||
88 | int multiplyR(KDMAT(a),KDMAT(b),DMAT(r)); | ||
89 | int multiplyC(KCMAT(a),KCMAT(b),CMAT(r)); | ||
90 | |||
91 | int multiplyR2(KDMAT(a),KDMAT(b),DMAT(r)); | ||
92 | int multiplyC2(KCMAT(a),KCMAT(b),CMAT(r)); | ||