Julia Sloan
Julia Sloan
## Describe the bug `LinearRemap` uses scalar indexing, which is not GPU compatible, in [this line](https://github.com/CliMA/ClimaCore.jl/blob/main/src/Operators/remapping.jl#L62) of `linear_remap_op`. We want to use `LinearRemap` in ClimaCoupler on GPU if possible. This...
Part of ClimaCoupler SDI [#188](https://github.com/CliMA/ClimaCoupler.jl/issues/188). The goal of this PR is to implement a concrete example of distributed regridding. This will allow us to implement the logic for a specific...
This is the second PR of ClimaCoupler SDI [#188](https://github.com/CliMA/ClimaCoupler.jl/issues/188), the first being #1107. ## Major goals to accomplish in this PR - Eliminate the use of serial spaces in distributed...
## Purpose Try [ClimaCore branch](https://github.com/CliMA/ClimaCore.jl/pull/1684/files) implementing fixes for ClimaLand implicit solver on GPU. test/runtests.jl runs locally ## To-do ## Content ---- - [ ] I have read and checked the...
## Purpose show allocations in gpu_aquaplanet_dyamond run, for comparison with the [coupled run](https://buildkite.com/clima/climacoupler-ci/builds/2984#018e524e-ec5c-4809-afc2-4677d88c0339), which nearly reaches the 15GB limit after atmos init
Currently, surface SHF and LHF are combined and provided to the coupler as one energy flux field (see `atmos_surface_conditions` [here](https://github.com/CliMA/ClimaAtmos.jl/blob/f32de4b9b283b09fa4e3dd58464f427ea064c7cb/src/surface_conditions/surface_conditions.jl#L385)). The bucket recently separated their fluxes into SHF and LHF,...
## Describe the bug We download some of our data directly from external servers every time we run a simulation. This causes problems, e.g. when those servers are down we...
**Is your feature request related to a problem? Please describe.** We want to be able to run ClimaLSM globally. To do this, there are a few structural changes we need...
**Is your feature request related to a problem? Please describe.** Last component of global GPU runs **Describe the solution you'd like** A clear and concise description of what you want...
**Is your feature request related to a problem? Please describe.** Throughout our code, we use the pattern `(; :sym => val)` in NamedTuples. This can be type unstable because of...