Revision a06969a7d744a6084837941df54f50703a6faaef authored by Jason Boutte on 10 June 2021, 02:05:22 UTC, committed by Jason Boutte on 10 June 2021, 02:05:22 UTC
1 parent bc97330
Raw File
TryMPISERIAL.f90
! Test for the mct mpiserial library
! in which mpi_cart is not defined (and likely never will be)
! Failure to compile means mpi-serial is being used.
!
program mpiserial_test
 implicit none
 include 'mpif.h'
 integer :: i
 select case(i)
 case(mpi_cart)
 end select
end program mpiserial_test
back to top