c - `mkl_malloc` 上出现段错误

标签 c segmentation-fault malloc valgrind intel-mkl

上下文

我想使用英特尔的 MKL 库创建一个数组,然后用它做各种事情。但是,它在 mkl_malloc 上出现段错误。

问题

我正在尝试运行以下程序。运行它时,我在指定的行出现段错误。问题出在 mkl_malloc 上。我可以做什么来解决这个问题?这是怎么回事?

#include "mkl_types.h"
#include "mkl_spblas.h"
#include <stddef.h>  // For NULL
#include <stdio.h>


// Find reason for segfault
int main() {
    MKL_INT m=2000, k=1000;
    double  *A_dense;

    // Allocate memory to matrix
    A_dense = (double *)mkl_malloc( m*k*sizeof( double ), 128);  // Fails here.
    if (A_dense == NULL) {
        printf("ERROR: Can't allocate memory for matrices. Aborting... \n\n");
        mkl_free(A_dense);
        return 1;
    }

    mkl_free(A_dense);
    return 0;
}

编译:

 $ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/mkl/lib/intel65
 $ gcc -m64 -I/opt/intel/mkl/include -L/opt/intel/mkl/lib/intel64 -lmkl_rt -lpthread -lm test_alloc.c -o test
test
test_alloc.c: In function 'main':
test_alloc.c:13:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

我用 valgrind 得到的输出是:

$ valgrind --leak-check=full ./test
==69680== Memcheck, a memory error detector
==69680== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et al.
==69680== Using Valgrind-3.7.0 and LibVEX; rerun with -h for copyright info
==69680== Command: ./test
==69680== 
==69680== Invalid read of size 8
==69680==    at 0x868D1D1: MKL_MALLOC (in /opt/intel/composerxe-2011.5.220/mkl/lib/intel64/libmkl_intel_lp64.so)
==69680==    by 0x4F56B1C: MKL_MALLOC (in /opt/intel/composerxe-2011.5.220/mkl/lib/intel64/libmkl_rt.so)
==69680==    by 0x4006B0: main (in /export/home/myuser/devel/part_distances/lib/test)
==69680==  Address 0xf42400 is not stack'd, malloc'd or (recently) free'd
==69680== 
==69680== 
==69680== Process terminating with default action of signal 11 (SIGSEGV)
==69680==  Access not within mapped region at address 0xF42400
==69680==    at 0x868D1D1: MKL_MALLOC (in /opt/intel/composerxe-2011.5.220/mkl/lib/intel64/libmkl_intel_lp64.so)
==69680==    by 0x4F56B1C: MKL_MALLOC (in /opt/intel/composerxe-2011.5.220/mkl/lib/intel64/libmkl_rt.so)
==69680==    by 0x4006B0: main (in /export/home/myuser/devel/part_distances/lib/test)
==69680==  If you believe this happened as a result of a stack
==69680==  overflow in your program's main thread (unlikely but
==69680==  possible), you can try to increase the size of the
==69680==  main thread stack using the --main-stacksize= flag.
==69680==  The main thread stack size used in this run was 8388608.
==69680== 
==69680== HEAP SUMMARY:
==69680==     in use at exit: 4,603 bytes in 19 blocks
==69680==   total heap usage: 19 allocs, 0 frees, 4,603 bytes allocated
==69680== 
==69680== LEAK SUMMARY:
==69680==    definitely lost: 0 bytes in 0 blocks
==69680==    indirectly lost: 0 bytes in 0 blocks
==69680==      possibly lost: 0 bytes in 0 blocks
==69680==    still reachable: 4,603 bytes in 19 blocks
==69680==         suppressed: 0 bytes in 0 blocks
==69680== Reachable blocks (those to which a pointer was found) are not shown.
==69680== To see them, rerun with: --leak-check=full --show-reachable=yes
==69680== 
==69680== For counts of detected and suppressed errors, rerun with: -v
==69680== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 4 from 4)
Segmentation fault

替代方案

我正在使用单一动态链接 (SDL),因为我无法使静态链接正常工作。

最佳答案

文档建议包含 mkl.h

所以改变:

#include "mkl_types.h"
#include "mkl_spblas.h"

#include "mkl.h"

关于c - `mkl_malloc` 上出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23385227/

相关文章:

segmentation-fault - Fortran 认为未分配的数组已经分配

c - 移动指针后的 Malloc 在 C 中不起作用?

c - malloc.c 中的 SIGABRT,刚刚发生了什么?

c - 如何使用 clock_getttime() 在 linux 操作系统上使用 C 以纳秒为单位记录进程执行时间?

c - 为什么我的程序一直返回输入提示?

c - _Complex 上的波浪号 '~' 运算符,它有什么作用?它是一个扩展吗?

c - 没有节点结构的二叉搜索树递归

c - 全局修改数组/结构不起作用

c - C 中的二叉搜索树,段错误

c++ - 在 C++ 中发生堆栈溢出时获取 SIGSEGV