You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What I expected: Since the User's Guide indicates that Intel compilers are an option, I would expect the cube_to_target executable to work with minimal intervention.
What I saw: Runs to generate bnd_topo files for MPAS-A grids fail unless I use GNU compiler.
# other output...
Writing topo file to
/glade/derecho/scratch/gdicker/2024Apr26_NCARTopoTest/Topo/cube_to_target/mpasa
120_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_20240429.nc
# ... multiple blank lines here ...
anticipated number of overlaps jall_anticipated= -198767296
Compute overlap weights:
more weights than anticipated
increase jall
This seems to be due to the logic around line 597 of cube_to_target.F90. GNU builds this seems to be handled appropriately, but my runs with Intel suggest (due to negative jall_anticipated) that the integer overflow check isn't sufficient.
The text was updated successfully, but these errors were encountered:
What I expected: Since the User's Guide indicates that Intel compilers are an option, I would expect the
cube_to_target
executable to work with minimal intervention.What I saw: Runs to generate bnd_topo files for MPAS-A grids fail unless I use GNU compiler.
What I did on Derecho:
cd
into cube_to_targetmodule purge && module load intel-classic cray-mpich netcdf-mpi
cube_to_target
executable:make
./cube_to_target --grid_descriptor_file "/glade/campaign/cesm/cesmdata/inputdata/share/meshes/mpasa120z32_ESMFmesh_cdf5_c20210120.nc" --intermediate_cs_name "${PATH_TO}/gmted2010_modis_bedmachine-ncube3000-220518.nc" --output_grid mpasa120 --smoothing_scale "100.0" --name_email_of_creator "${YOUR_VALUE_HERE}"
Error text:
This seems to be due to the logic around line 597 of cube_to_target.F90. GNU builds this seems to be handled appropriately, but my runs with Intel suggest (due to negative jall_anticipated) that the integer overflow check isn't sufficient.
The text was updated successfully, but these errors were encountered: