SPMV functions in MKL Library cannot work properly on my computer. How can I fix it?
This is my first time working with the MKL library. After referring to the official documentation, I obtained the latest version of the MKL library via the apt package manager in the WSL2 Ubuntu system. I correctly configured the header and library paths in the CMake file. Then, I tested cblas_dgemv
first and it worked fine. However, when I switched to using the CSR-related interfaces, I encountered an unusual error during runtime: the process terminated without any error message, and the exit code was 139. I will present the C++ code and CMake configuration I used for testing below:
SPMV functions in MKL Library cannot work properly on my computer. How can I fix it?
This is my first time working with the MKL library. After referring to the official documentation, I obtained the latest version of the MKL library via the apt package manager in the WSL2 Ubuntu system. I correctly configured the header and library paths in the CMake file. Then, I tested cblas_dgemv
first and it worked fine. However, when I switched to using the CSR-related interfaces, I encountered an unusual error during runtime: the process terminated without any error message, and the exit code was 139. I will present the C++ code and CMake configuration I used for testing below: