Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

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