Ignore:
Timestamp:
07/15/19 12:29:31 (5 years ago)
Author:
adurocher
Message:

trunk : GPU implementation with OpenACC ( merge from glcp.idris.fr )

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/base/abort.F90

    r901 r953  
    1717    !$omp end single 
    1818  end subroutine 
     19 
     20  !!!Abort execution when openacc is on 
     21  subroutine abort_acc( message ) 
     22    use mpi_mod 
     23    implicit none 
     24    character(len=*), optional, intent(in) :: message   
     25#ifdef _OPENACC 
     26    call dynamico_abort( "Not tested with OpenACC ! " // message ) 
     27#endif 
     28  end subroutine 
    1929end module 
Note: See TracChangeset for help on using the changeset viewer.