我尝试使用函数 cblas_cgemm(); 对矩阵乘法进行矩阵运算。但是与手动计算相比,我得到的答案是不正确的。我试图简化我的代码而不在输入中使用虚构的术语,但问题仍然存在。我应该进行哪些更改才能获得正确的输出。这是我的代码。
#include<stdio.h>
#include<math.h>
#include<complex.h>
#include "cblas.h"
void main()
{
int i,j;
double complex A[2][2]={1,2,
3,4};
double complex B[2][2]={4,5,
6,7};
double complex W[2][2]={0,0,
0,0};
const int m1=2;
const int n1=2;
const int k1=2;
const int lda1=2;
const int ldb1=2;
const int ldc1=2;
const double alpha=1.0;
const double beta=0.0;
cblas_cgemm(CblasRowMajor,CblasNoTrans,CblasNoTrans,m1,n1,k1,&alpha,A,lda1,B, ldb1 ,&beta,W, ldc1);
for(i=0;i<m1;++i)
{
for(j=0;j<n1;++j)
printf("%lf %lf\n" ,creal(W[i][j]),cimag(W[i][j]));
printf("\n");
}
}
我的输出为
-119296.000000 0.000000
-188416.000000 0.000000 0.000000 0.000000
0.000000 0.000000
我提到了这个网站lapack:cblas_cgemm
请帮助 我使用 cblas_dgemm() 的代码如下
//Y := alpha*A*X + beta*Y, or y := alpha*A**T*x + beta*y,
#include<stdio.h>
#include "cblas.h"
const double A[3][1]={
1,
2,
3
};
const double X[1][4]={
1,2,3,4,
};
double Y[3][4]={
0,0,0,0,
0,0,0,0,
0,0,0,0
};
int main()
{
const int m=3;
const int k=1;const int n=4;
const int lda=1;
const int ldb=4;
const int ldc=4;
int incX,incY;
const double alpha=1.0;
const double beta=0.0;
incX=1;incY=1;
int i,j;
for(i=0;i<m;++i)
{for(j=0;j<k;++j)
printf("%lf \t" ,A[i][j]);
putchar('\n');
}
cblas_dgemm(CblasRowMajor,CblasNoTrans,CblasNoTrans,m,n,k,alpha,A, lda,X, ldb ,beta,Y, ldc);
for(i=0;i<m;++i)
{
for(j=0;j<n;++j)
printf("%lf\t" ,Y[i][j]);
printf("\n");
}
return 0;
}
我的输出为
hp@hp-hp-notebook:〜/beam forming/programs/studentProjectDetails $ ./dgemm_trial 1.000000
2.000000
2.000000 3.000000
1.000000 2.000000 2.000000 3.000000 4.000000
2.000000 2.000000 4.000000 4.000000 6.000000
6.000000 8.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000近报