Changes between Version 21 and Version 22 of IntegrationOpenMP/Dev2012_LMDZOR


Ignore:
Timestamp:
01/28/13 15:19:40 (12 years ago)
Author:
acosce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IntegrationOpenMP/Dev2012_LMDZOR

    v21 v22  
    175175 * avec correction routage Josefine 
    176176 * orchidee offline 
     177 
     178 
     179== OMP trunk Orchidee rev 1078 + lmdz 1628 ==  
     180 * correction : initialisation des variables lors de l'allocation dans sechiba.f90  
     181{{{ 
     182Ex :  
     183 
     184     ALLOCATE (vbeta4(kjpindex),stat=ier) 
     185     IF (ier.NE.0) THEN 
     186        WRITE (numout,*) ' error in vbeta4 allocation. We stop. We need kjpindex words = ',kjpindex 
     187        STOP 'sechiba_init' 
     188     END IF 
     189+    vbeta4(:) = undef_sechiba 
     190 
     191}}} 
     192 
     193=== Compilation Debug ===  
     194{{{ 
     195F_O = -DCPP_PARA -DCPP_OMP -p -g -traceback -fp-stack-check -ftrapuv -check bounds $(F_D) $(F_P) -I$(MODDIR) -module $(MODDIR) 
     196}}} 
     197 
     1981 an 32 MPI x 4OMP = 32 MPI x 1 OMP = 24 MPI x 2 OMP  
     199 
     200=== Compilation -O0 === 
     201{{{ 
     202F_O = -DCPP_PARA -DCPP_OMP -O0 $(F_D) $(F_P) -I$(MODDIR) -module $(MODDIR) -fp-model precise 
     203}}} 
     204 
     2051 an 32 MPI x 2 OMP = 32 MPI x 1 OMP  
     206 
     207=== Compilation -O1 ===