Windows上的OpenBLAS崩溃

时间:2015-06-14 12:11:26

标签: c++ windows visual-studio openblas

我在Windows上使用OpenBLAS并遇到崩溃问题。我正在使用测试代码(整个程序),取自here的英特尔MKL(我略微修改了它)。其他函数调用也存在同样的问题。通过逐步调试,崩溃发生在main return 0之后。输出矩阵的循环打印出正确的结果。

double *A, *B, *C;
int m, n, k, i, j;
double alpha, beta;

m = 2, k = 2, n = 2;
alpha = 1.0; beta = 0.0;

A = (double *) malloc(m*k*sizeof(double));
B = (double *) malloc(k*n*sizeof(double));
C = (double *) malloc(m*n*sizeof(double));

for (i = 0; i < (m*k); i++) A[i] = (double) (i + 1);
for (i = 0; i < (k*n); i++) B[i] = (double) (-i - 1);
for (i = 0; i < (m*n); i++) C[i] = (double) 0.0;


cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans,
    m, n, k, alpha, A, k, B, n, beta, C, n);


printf("\n Top left corner of matrix C: \n");
for (i = 0; i<min(m, 6); i++)
{
    for (j = 0; j<min(n, 6); j++)
        printf("%12.5G", C[j + i*n]);
    printf("\n");
}

free(A);
free(B);
free(C);

执行exit(mainret)后发生崩溃。

 #else  /* !defined (_WINMAIN_) && defined (_CRT_APP) */
        if ( !managedapp )
        {
 #ifndef _CRT_APP
            exit(mainret);
 #else
            _exit_app();
 #endif  /* _CRT_APP */
 #if !defined(_WINMAIN_) && defined(_CRT_APP)
            /* WINAPI_FAMILY_APP "Windows" applications should never reach here,
             * but Console applications will if they do not exit the process.
             * So, terminate the process for Console apps only
             */
            ExitProcess(mainret);
 #endif
        }

我想到的第一件事是ESP值,如果函数调用约定不匹配可能会被破坏(我使用的是预构建的MinGW OpenBLAS 0.2.14库),但调试版本中的所有ESP检查都成功通过。 我正在使用MSVC ++编译器,而构建的程序集是32位。

如何更准确地查明问题或者造成这次崩溃的原因是什么?

0 个答案:

没有答案