Currently I am using MAGMA 2.5.4 to solve a batched linear solver with tiny sizes of matrices. I want to involve magma_dgesv_batched
in my project compiled via a CMakeLists file.
The include_directories
and target_link_libraries
are shown below.
include_directories( "/usr/local/magma/include" )
include_directories( "/home/research/magma-2.5.4/magma-2.5.4/include" )
include_directories( "/home/research/magma-2.5.4/magma-2.5.4/testing" )
target_link_libraries(minus
-L/usr/local/magma/lib magma_sparse magma
-L/usr/lib/cuda/lib64 cublas cudart cusparse
-L/usr/lib/x86_64-linux-gnu/openblas-pthread/cmake/openblas openblas
pthread
)
However, I met some linkage errors:
tmpxft_00003500_00000000-5_minus_cuda.cudafe1.cpp:(.text+0x506): undefined reference to `magma_opts::magma_opts(magma_opts_t)'
/usr/bin/ld: tmpxft_00003500_00000000-5_minus_cuda.cudafe1.cpp:(.text+0x514): undefined reference to `magma_opts::parse_opts(int, char**)'
/usr/bin/ld: tmpxft_00003500_00000000-5_minus_cuda.cudafe1.cpp:(.text+0xfce): undefined reference to `magma_opts::cleanup()'
collect2: error: ld returned 1 exit status
make[2]: *** [cmd/CMakeFiles/minus-simpleEx.dir/build.make:105: bin/minus-simpleEx] Error 1
make[1]: *** [CMakeFiles/Makefile2:926: cmd/CMakeFiles/minus-simpleEx.dir/all] Error 2
make: *** [Makefile:95: all] Error 2
Obviously, it shows that I am not linking the correct library, yet I have no idea how I should fix it in my CMakeLists file. I had viewed the MAGMA documentation and it seems that there is no additional library I need to link (perhaps I am doing something wrongly).
The MAGMA is installed successfully and I had run its testing code of magma_dgesv_batched
perfectly as well. Gcc version is 8 with cuda 10 in Ubuntu 20.04.
Thank you!
Okay, I somehow solve the problem after asking one of the developers of MAGMA. The thing is that,
magma_opts::magma_opts(magma_opts_t)
is not included in standard MAGMA libraries, but it is kept in thetesting
folder of the MAGMA. I should not fully copy the testing code from MAGMA and try to run it, but rather, I should mimic its structure. To solve the opt::queue in the testing code, I need to create amagma queue
bymagma_queue_create
andmagma_queue_destroy
.Here's the complete code that is run perfectly: