Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

CESM1.2.z - memory leak when using intel 14.x compiler

jedwards

CSEG and Liaisons
Staff member
The intel 14 compiler causes a memory leak in the pop model in file diags_on_lat_aux_grid.F90The following change resolves the problem: --- diags_on_lat_aux_grid.F90(revision 64866)+++ diags_on_lat_aux_grid.F90(working copy)@@ -711,8 +711,11 @@         REGION_MASK_LAT_AUX(:,:,2) = REGION_MASK_LAT_AUX(:,:,1)      endif -     REGION_MASK_LAT_AUX(:,:,1) =   &-                    merge( 1, 0, REGION_MASK_LAT_AUX(:,:,1) > 0 )+     where(REGION_MASK_LAT_AUX(:,:,1) > 0)+        REGION_MASK_LAT_AUX(:,:,1) = 1+     elsewhere+        REGION_MASK_LAT_AUX(:,:,1) = 0+     end where  http://bugzilla/show_bug.cgi?id=2121
 
Top