【问题标题】:LAPACK dgetrs vs dgesvLAPACK dgetrs 与 dgesv
【发布时间】:2016-03-17 14:48:45
【问题描述】:

在 LAPACK 文档中,

dgesv 求解一般线性方程组 AX=B。

dgetrs 使用 DGETRF 计算的 LU 分解求解一般线性方程组 AX=B、AT X=B 或 AH X=B。

有什么区别?此外,我制作了以下 C/C++ 程序,并且都给出了不同的结果。为什么会这样?

#include <iostream>
#include <iomanip>
#include <vector>
#include <math.h>
#include <time.h>
#include "stdafx.h"

using namespace std;

extern "C" {
// LU decomoposition of a general matrix
void dgetrf_(int* M, int *N, double* A, int* lda, int* IPIV, int* INFO);
//// generate inverse of a matrix given its LU decomposition
//void dgetri_(int* N, double* A, int* lda, int* IPIV, double* WORK, int*    lwork, int* INFO);
void dgetrs_(char* C, int* N, int* NRHS, double* A, int* LDA, int* IPIV, double* B, int* LDB, int* INFO);
void dgesv_(int *n, int *nrhs, double *a, int *lda, int *ipiv, double *b, int *ldb, int *info);
}

void solvelineq(double* A, double* B, int N)
{
int *IPIV = new int[N + 1];
int LWORK = N*N;
double *WORK = new double[LWORK];
int INFO;
char C = 'N';
int NRHS = 1;
dgetrf_(&N, &N, A, &N, IPIV, &INFO);
dgetrs_(&C, &N, &NRHS, A, &N, IPIV, B, &N, &INFO);

//dgetri_(&N, A, &N, IPIV, WORK, &LWORK, &INFO);

delete IPIV;
delete WORK;
}

double comparematrices(double* A, double* B, int N)
{
double sum = 0.;
for (int i = 0; i < N; ++i)
    sum += fabs(A[i] - B[i]);
return sum;
}

int main() {
int dim;
std::cout << "Enter Dimensions of Matrix : \n";
std::cin >> dim;
clock_t c1, c2;
c1 = clock();

vector<double> a(dim*dim);
vector<double> b(dim);
vector<double> c(dim);
vector<int> ipiv(dim);
srand(1);              // seed the random # generator with a known value
double maxr = (double)RAND_MAX;
for (int r = 0; r < dim; r++) {  // set a to a random matrix, i to the identity
    for (int c = 0; c < dim; c++) {
        a[r + c*dim] = rand() / maxr;
    }
    b[r] = rand() / maxr;
    c[r] = b[r];
}
c2 = clock();
cout << endl << dim << " x " << dim << " matrix generated in : " << double(c2 - c1) / CLK_TCK << " seconds " << endl;
// C is identical matrix to B because we are solving by two methods.

c1 = clock();
solvelineq(&*a.begin(), &*c.begin(), dim);
c2 = clock();
cout << endl << " dgetrf_ and dgetrs_ completed in : " << double(c2 - c1) / CLK_TCK << " seconds " << endl;
vector<double> a1(a);
vector<double> b1(b);
int info;
int one = 1;
c1 = clock();
dgesv_(&dim, &one, &*a.begin(), &dim, &*ipiv.begin(), &*b.begin(), &dim, &info);
c2 = clock();
cout << endl << " dgesv_ completed in : " << double(c2 - c1) / CLK_TCK << " seconds " << endl;
cout << "info is " << info << endl;
double eps = 0.;
c1 = clock();
for (int i = 0; i < dim; ++i)
{
    double sum = 0.;
    for (int j = 0; j < dim; ++j)
        sum += a1[i + j*dim] * b[j];
    eps += fabs(b1[i] - sum);
}
c2 = clock();
cout << endl << " dgesv_ check completed in : " << double(c2 - c1) / CLK_TCK << " seconds " << endl;
cout << "check is " << eps << endl;
cout << "\nFinal Matrix 1 : " << endl;
for (int i = 0; i < dim; ++i)
    cout << b[i] << endl;

cout << "\nFinal Matrix 2 : " << endl;
for (int i = 0; i < dim; ++i)
    cout << c[i] << endl;
double diff;
c1 = clock();
diff = comparematrices(&*b.begin(), &*c.begin(), dim);
c2 = clock();
cout << endl << " Both functions compared in : " << double(c2 - c1) / CLK_TCK << " seconds " << endl;
cout << "Sum of difference is : " << diff << endl;
return 0;
}

我的结果: 输入矩阵的维度: 5

5 x 5 矩阵在 0 秒内生成

dgetrf_ 和 dgetrs_ 在 0.001 秒内完成

dgesv_ 在 0 秒内完成 信息为 0

dgesv_ 检查完成时间:0 秒 检查是 2.02009e-15

最终矩阵 1: -2.97629 4.83948 2.00769 -1.98887 -5.15561

最终矩阵 2: -1.40622 2.29029 0.480829 -1.63597 0.71962

两个函数的比较时间:0 秒

差的和是:11.8743

【问题讨论】:

    标签: c++ c matrix lapack equation-solving


    【解决方案1】:

    调用dgesv 等效于调用dgetrfdgetrsdgesvsource code 非常简单。主要包含对dgetrfdgetrs函数的调用。

    示例中的结果不同,因为dgetrf 更改了A 矩阵。 在lapack's reference 中声明:

    A is DOUBLE PRECISION array, dimension (LDA,N)
    On entry, the M-by-N matrix to be factored.
    On exit, the factors L and U from the factorization
    A = P*L*U; the unit diagonal elements of L are not stored.
    

    在您的示例中,第二次使用了不同的 A 矩阵。 由于您打算使用lapack,我建议您也尝试使用blas 例程(daxpy,dnrm2)。

    我创建了一个比较 dgesvdgetrfdgetrs 的简单示例

    #include <iostream>
    #include <vector>
    #include <stdlib.h>
    
    using namespace std;
    
    extern "C" {
      void daxpy_(int* n,double* alpha,double* dx,int* incx,double* dy,int* incy);
      double dnrm2_(int* n,double* x, int* incx);
    
      void dgetrf_(int* M, int *N, double* A, int* lda, int* IPIV, int* INFO);
      void dgetrs_(char* C, int* N, int* NRHS, double* A, int* LDA, int* IPIV, double* B, int* LDB, int* INFO);
      void dgesv_(int *n, int *nrhs, double *a, int *lda, int *ipiv, double *b, int *ldb, int *info);
    }
    
    void print(const char* head, int m, int n, double* a){
      cout << endl << head << endl << "---------" << endl;
      for(int i=0; i<m; ++i){
        for(int j=0; j<n; ++j){
          cout << a[i+j*m]<< ' ';
        }
        cout << endl;
      }
      cout << "---------" << endl;
    }
    
    int main() {
      int dim;
      std::cout << "Enter Dimensions of Matrix : \n";
      std::cin >> dim;
    
      vector<double> a(dim*dim);
      vector<double> b(dim);
      srand(1);              // seed the random # generator with a known value
      double maxr = (double)RAND_MAX;
      for (int r = 0; r < dim; r++) {  // set a to a random matrix, i to the identity
        for (int i = 0; i < dim; i++) {
          a[r + i*dim] = rand() / maxr;
        }
        b[r] = rand() / maxr;
      }
    
      int info;
      int one = 1;
      char N = 'N';
      vector<int> ipiv(dim);
    
      vector<double> a1(a);
      vector<double> b1(b);
      dgesv_(&dim, &one, a1.data(), &dim, ipiv.data(), b1.data(), &dim, &info);
      print("B1",5,1,b1.data());
    
      vector<double> a2(a);
      vector<double> b2(b);
      dgetrf_(&dim, &dim, a2.data(), &dim, ipiv.data(), &info);
      dgetrs_(&N, &dim, &one, a2.data(), &dim, ipiv.data(), b2.data(), &dim, &info);
      print("B2",5,1,b2.data());
    
      double d_m_one = -1e0;
      daxpy_(&dim,&d_m_one,b2.data(),&one,b1.data(),&one);
      cout << endl << "diff = " << dnrm2_(&dim,b1.data(),&one) << endl;
    
      return 0;
    }
    

    在我的电脑上运行 dim=5 它给出的案例:

    B1
    ---------
    0.782902 
    3.35317 
    4.40269 
    -5.10512 
    -1.26615 
    ---------
    
    B2
    ---------
    0.782902 
    3.35317 
    4.40269 
    -5.10512 
    -1.26615 
    ---------
    
    diff = 0
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-07-25
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-07-14
      相关资源
      最近更新 更多