How do I know if a julia binary join is related to MKL?

When compiling (in the Make.user file) I used the following options:

USE_INTEL_MKL = 1
USE_INTEL_MKL_FFT = 1

      

To make sure it is indeed mkl related, I tried this:

~$ ldd /home/kaiyin/opt/julia-0.6.0-rc1/julia
    linux-vdso.so.1 =>  (0x00007ffe85fec000)
    libjulia.so.0.6 => not found
    libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f748579e000)
    librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f7485596000)
    libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f7485379000)
    libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f7484faf000)
    /lib64/ld-linux-x86-64.so.2 (0x0000563aa3d8e000)

      

It seems to have nothing to do with mkl. Also, libjulia.so was "not found". Any suggestions?

By the way, I can run julia repl without problems:

   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: https://docs.julialang.org
   _ _   _| |_  __ _   |  Type "?help" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.6.0-rc1.0
 _/ |\__'_|_|_|\__'_|  |  
|__/                   |  x86_64-linux-gnu

julia> 

      

+3


source to share


1 answer


versioninfo()

is a useful function for obtaining such information. you can use versioninfo(true)

to dump more.



+4


source







All Articles