Ignore:
Timestamp:
10/12/16 16:11:13 (8 years ago)
Author:
ymipsl
Message:

Bad name for intel simd directives

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/explicit_scheme.f90

    r360 r487  
    7878 
    7979               IF (stage==1) THEN ! first stage : save model state in XXm1 
    80                   !$SIMD 
     80                  !DIR$ SIMD 
    8181                  DO ij=ij_begin,ij_end 
    8282                     psm1(ij)=ps(ij) 
     
    8585 
    8686               ! updates are of the form x1 := x0 + tau*f(x1) 
    87                !$SIMD 
     87               !DIR$ SIMD 
    8888               DO ij=ij_begin,ij_end 
    8989                  ps(ij)=psm1(ij)+tau*dps(ij) 
     
    104104            IF (stage==1) THEN ! first stage : save model state in XXm1 
    105105               DO l=ll_begin,ll_end 
    106                   !$SIMD 
     106                  !DIR$ SIMD 
    107107                  DO ij=ij_begin,ij_end 
    108108                     massm1(ij,l)=mass(ij,l) 
     
    113113            ! updates are of the form x1 := x0 + tau*f(x1) 
    114114            DO l=ll_begin,ll_end 
    115                !$SIMD 
     115               !DIR$ SIMD 
    116116               DO ij=ij_begin,ij_end 
    117117                  mass(ij,l)=massm1(ij,l)+tau*dmass(ij,l) 
     
    137137         IF (stage==1) THEN ! first stage : save model state in XXm1 
    138138            DO l=ll_begin,ll_end 
    139                !$SIMD 
     139               !DIR$ SIMD 
    140140               DO ij=ij_begin,ij_end 
    141141                  um1(ij+u_right,l)=u(ij+u_right,l) 
     
    148148 
    149149         DO l=ll_begin,ll_end 
    150             !$SIMD 
     150            !DIR$ SIMD 
    151151            DO ij=ij_begin,ij_end 
    152152               u(ij+u_right,l)=um1(ij+u_right,l)+tau*du(ij+u_right,l) 
Note: See TracChangeset for help on using the changeset viewer.