Is there a way to create fortran MEX files using Intel OneAPI?
조회 수: 5 (최근 30일)
이전 댓글 표시
I have some fortran codes that i need to turn into mex files for a project. The issue is that the fotran compiler i have on my mac (Intel OneAPI) is not supported by MATLAB and any other compiler that is supported is nott available anymore since OneAPI replaced Intell Parallel studio XE.
Is there a way to compile and create mex funtions using OneAPi as a compiler?
댓글 수: 1
luca guerrieri
2022년 4월 28일
I just installed the latest Intel Fortran, version 2021.5.0. I am running Monterey 12.3.1 and Matlab 2019b. I managed to compile a mex function combining a few tricks:
1) At the XQuartz prompt, I have to set the environmental variables for ifort by running the command
source /opt/intel/oneapi/setvars.sh
(Unfortunately, I have not found a good way to avoid running this command every time I want to use ifort.)
2) Start Matlab from XQuartz with the command
/Applications/MATLAB_R2019b.app/bin/matlab &
Here you will have to change the command depending on the version of Matlab you are using
3) grab the modified mex setup xml file attached here, unzip it and save it somewhere where you can find it again --- you can put it with the other setup files under /Applications/MATLAB_R2019b.app/bin/maci64/mexopts, or anywhere else.
The only change I had to make relative to the intel_fortran.xml file that came with the version of Matlab that I am running is at the end of the file. I jsut had to delete a line that was checking for the existence of a library that the latest versions of the linker will find even if they are not in the directory where they are supposed to be. I learned about this issue and solution on from a post on the Apple Developer Forum. This is the modified snippet of the XML file.
<CLANGRT_DIR>
<and>
<cmdReturns name="xcode-select -print-path"/>
<dirExists name="$$" />
</and>
</CLANGRT_DIR>
4) Use the xml file under 3 to run the mex setup with the following command:
mex -v -setup:/Applications/MATLAB_R2019b.app/bin/maci64/mexopts/intel_fortran_luca.xml
Of course, if you have saved it somewhere else, you need to change the path used above
5) Every other time you want to compile a mex function, you will have to repeat steps 1) and 2) above.
답변 (1개)
Anshika Chourasia
2021년 8월 11일
편집: Anshika Chourasia
2021년 8월 11일
It is my understanding that R2021a doesn’t currently support Intel OneAPI.
Our developers are aware of the issue and the enhancement/support for Intel OneAPI might be considered for a future release of MATLAB.
댓글 수: 7
Vince Virgilio
2022년 5월 12일
편집: Vince Virgilio
2022년 5월 12일
I also need mex to support Intel OneAPI Fortran, specifically version 2022.2.0173. Matlab 2022a does not appear to support it.
Alessandro D
2022년 7월 10일
Does Matlab R2022a support Intel one api for Fortran? I have Microsoft Visual Studio 2022 and the Intel Fortran compiler one api
참고 항목
카테고리
Help Center 및 File Exchange에서 Fortran with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!