Andrew M. Bradley
Andrew M. Bradley
Separate issue but for this same effort: From https://my.cdash.org/test/60628244, ``` svn export failed with output: and errput svn: E170000: URL 'https://svn-ccsm-inputdata.cgd.ucar.edu/trunk/inputdata/ice/mpas-cice/EC30to60E2r2/mpas-seaice.graph.info.200908.part.8' doesn't exist ``` May we run metis on Chrysalis...
@jonbob Great. I'll do it. Just didn't want to write to that directory without confirmation that it's OK.
In the mappy nightlies, these two tests show this error: * PEM_Ln90.ne30pg2_EC30to60E2r2.F2010-SCREAMv1-MPASSI.mappy_gnu9 * ERP_Ln22.ne4pg2_oQU480.F2010-SCREAMv1-MPASSI.mappy_gnu9.atmlndactive-rtm_off
@oksanaguba is that for standalone Homme? I suspect that's an easier case for supporting an external Kokkos build than the CIME case. In any case, it's fine with me; I...
Two points for consideration: 1. I agree with Luca that it's not clear the bool->int conversion to work around the system issue is, in its current form, as minimal as...
@ndkeen I think you've spotted the issue. `pearea` is a persistent, allocated array that `attr` will point to (see utils/cam_grid_support.F90, routine `cam_grid_attr_init_1d_r8`). In contrast, `area_scm` is a local array. A...
For the allocatable approach, you'll need to make it `allocatable, pointer`, not just `allocatable`. That's because the memory needs to be persistent since `attr` will point to it. An alternative...
This PR looks like it will be quite a bit of effort to merge in its current state. Perhaps it's premature to post it. Perhaps it would be better to...
The team_barrier is needed in principle, but it needs to be outside of the `min_diff < 0` condition. I think this should work: ``` const bool min_diff_neg = min_diff <...
@mt, @oksanaguba, @bartgol I'm interested in your thoughts on the above.