Is there a way to create fortran MEX files using Intel OneAPI?

13 visualizaciones (últimos 30 días)
Yafet Menjetta
Yafet Menjetta el 20 de Jul. de 2021
Comentada: Alessandro D el 10 de Jul. de 2022
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 comentario
luca guerrieri
luca guerrieri el 28 de Abr. de 2022
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.

Iniciar sesión para comentar.

Respuestas (1)

Anshika Chourasia
Anshika Chourasia el 11 de Ag. de 2021
Editada: Anshika Chourasia el 11 de Ag. de 2021
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 comentarios
Vince Virgilio
Vince Virgilio el 12 de Mayo de 2022
Editada: Vince Virgilio el 12 de Mayo de 2022
I also need mex to support Intel OneAPI Fortran, specifically version 2022.2.0173. Matlab 2022a does not appear to support it.
Alessandro D
Alessandro D el 10 de Jul. de 2022
Does Matlab R2022a support Intel one api for Fortran? I have Microsoft Visual Studio 2022 and the Intel Fortran compiler one api

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB Compiler en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by