我如何确定julia二进制文件是否与MKL相关联?

qed*_*qed 3 intel-mkl julia

我在编译时使用了以下选项(在Make.user文件中):

USE_INTEL_MKL = 1
USE_INTEL_MKL_FFT = 1
Run Code Online (Sandbox Code Playgroud)

为了确保它确实与mkl相关联,我尝试了以下操作:

~$ 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)
Run Code Online (Sandbox Code Playgroud)

似乎与mkl没有任何关系。另外,“未找到” libjulia.so。有什么建议么?

顺便说一句,我可以毫无问题地开始朱莉娅的代表:

   _       _ _(_)_     |  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> 
Run Code Online (Sandbox Code Playgroud)

Gni*_*muc 5

versioninfo()是获取此类信息的有用功能。您可以versioninfo(true)用来转储更多。