2017-10-21 210 views
1

在這個偉大的網站的幫助下,我能夠使用像這樣在this answer中建議的「新構建系統」在Sublime Text 3中編譯我的Fortran代碼。在Sublime Text 3中編譯Fortran時與英特爾MKL庫鏈接?

{ 
    "cmd": ["cmd", "/e:on", "/v:on", "/k", "ipsxe-comp-vars intel64 vs2013 && ifort ${file}"], 
    "file_regex": "^.*\\\\([0-9A-Za-z_]+\\.[A-Za-z0-9]+)\\(([0-9]+)\\):[ ]+error[ ]+#([0-9]+):[ ]+(.*)$", 
    "working_dir":"${file_path}", 
    "selector":"source.f ,source.for ,source.ftn ,source.f90 ,source.fpp ,source.i ,source.i90", 
    "encoding":"cp936", 
    "path":"C:\\Program Files (x86)\\IntelSWTools\\compilers_and_libraries_2017.2.187\\windows\\bin;${path}", 
    "variants": 
     [ 
      { 
       "name": "Run", 
       "cmd": ["cmd", "/e:on", "/v:on", "/c", "ipsxe-comp-vars intel64 vs2013 && ifort ${file} && ${file_base_name}"] 
      } 
    ] 

} 

現在,我想鏈接到MKL庫,以從其高度優化的例程中受益。我想包括LAPACK例程,來自mkl_dfti的FFT,來自mkl_vsl的隨機數等。我嘗試將這些庫添加到編譯命令中,如下所示,但未成功。

"cmd": ["cmd", "/e:on", "/v:on", "/c", "ipsxe-comp-vars intel64 vs2013 && 
     ifort ${file} && ${file_base_name} mkl_lapack95_lp64.lib mkl_intel_lp64.lib 
     mkl_intel_thread.lib mkl_core.lib libiomp5md.lib"] 

我使用Windows 10並可以在Visual Studio 2013中訪問這些庫。我需要幫助配置Sublime Text以使用相同的庫。

回答

2

英特爾Fortran編譯器標誌/ Qmkl添加了MKL庫。 將「ifort $ {file}」更改爲「ifort/Qmkl $ {file}」應該適合您。

+0

您通常需要做更多。 Tere是各種旗幟,你必須根據特定的點來選擇。請參閱https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor –

相關問題