I have written many Julia wrapper-functions that call routines from various parts of the Intel oneAPI library via the library’s .so file with ccall. This typically works without issue for BLAS routines, LAPACK routines and vector mathematical functions.
However, whenever I try to write a Julia wrapper-function for routines that are from the “BLAS-like Extensions” category of Intel MKL I get segmentation faults and Julia crashes.
Here is a minimal example showing how I call the mkl_dimatcopy routine from Intel oneAPI from Julia using the library file libmkl_rt.so:
# Path to MKL library file.
const libmklSo = "/opt/intel/oneapi/mkl/latest/lib/libmkl_rt.so"
@assert(isfile(libmklSo))
# Random 10 x 10 matrix to transpose.
AB = rand(10, 10)
# Verify that AB is 64-byte aligned which is a requirement of mkl_dimatcopy.
@assert((UInt(pointer(AB)) % 64) == 0)
# Call the mkl_dimatcopy routine.
ccall((:mkl_dimatcopy, libmklSo), Cvoid,
(
Cchar, # ordering ('C')
Cchar, # trans ('T')
Csize_t, # rows (10)
Csize_t, # cols (10)
Cdouble, # alpha (1.0)
Ptr{Cdouble}, # AB
Csize_t, # lda (10)
Csize_t, # ldb (10)
),
'C', 'T', 10, 10, 1.0, AB, 10, 10)
The mkl_dimatcopy function scales and optionally transposes a matrix in-place. But when I run the code above I instead get a segmentation fault and Julia crashes.
I have also tried to verify that the mkl_dimatcopy symbol is in the libmkl_rt.so file I am using, and it seems to be:
$ nm -D /opt/intel/oneapi/mkl/latest/lib/libmkl_rt.so | grep mkl_dimatcopy
00000000005ff510 T mkl_dimatcopy
00000000005ff510 T mkl_dimatcopy_
00000000005ff640 T mkl_dimatcopy_batch
00000000005ff640 T mkl_dimatcopy_batch_
00000000005ff770 T mkl_dimatcopy_batch_strided
00000000005ff770 T mkl_dimatcopy_batch_strided_
Can anyone with a greater ccall/Julia/MKL knowledge than me tell me why this is happening and how I can fix it?
I also asked this question on the Intel forum a few days ago, but I have not received any reply there and since the issue might be Julia/ccall related and not Intel related it might be better suited for this forum.