Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

search MPI runner in %MS_MPI% and PATH also in get_mpi_runner #924

Merged
merged 1 commit into from
Jun 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/fpm_meta.f90
Original file line number Diff line number Diff line change
Expand Up @@ -838,6 +838,7 @@ subroutine get_mpi_runner(command,verbose,error)
type(error_t), allocatable, intent(out) :: error

character(*), parameter :: try(*) = ['mpiexec ','mpirun ','mpiexec.exe','mpirun.exe ']
character(:), allocatable :: bindir
integer :: itri
logical :: success

Expand All @@ -855,6 +856,25 @@ subroutine get_mpi_runner(command,verbose,error)
endif
end do

! On windows, also search in %MSMPI_BIN%
if (get_os_type()==OS_WINDOWS) then
! Check that the runtime is installed
bindir = ""
call get_absolute_path(get_env('MSMPI_BIN'),bindir,error)
if (verbose) print *, '+ %MSMPI_BIN%=',bindir
! In some environments, variable %MSMPI_BIN% is missing (i.e. in GitHub Action images).
! Do a second attempt: search for the default location
if (len_trim(bindir)<=0 .or. allocated(error)) then
if (verbose) print *, '+ %MSMPI_BIN% empty, searching C:\Program Files\Microsoft MPI\Bin\ ...'
call get_absolute_path('C:\Program Files\Microsoft MPI\Bin\mpiexec.exe',bindir,error)
endif
if (len_trim(bindir)>0 .and. .not.allocated(error)) then
! MSMPI_BIN directory found
command%s = join_path(bindir,'mpiexec.exe')
return
endif
endif

! No valid command found
call fatal_error(error,'cannot find a valid mpi runner command')
return
Expand Down