Skip to content

add ED only, diagnostic EDMF longruns #1353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add ED only, diag EDMF longruns
juliasloan25 committed May 14, 2025
commit b7ab0553da2037632fdea366cdd827fab06da024
56 changes: 56 additions & 0 deletions .buildkite/longruns/pipeline.yml
Original file line number Diff line number Diff line change
@@ -247,6 +247,62 @@ steps:
slurm_mem: 32GB
modules: climacommon/2025_03_18

- label: "GPU AMIP with bucket: ED only"
key: "amip_edonly_bucket_gpu"
command:
- echo "--- Run simulation"
- "julia --color=yes --project=experiments/ClimaEarth/ experiments/ClimaEarth/run_amip.jl --config_file $CONFIG_PATH/amip_edonly_bucket.yml --job_id amip_edonly_bucket_gpu"
artifact_paths: "experiments/ClimaEarth/output/amip_edonly_bucket_gpu/artifacts/*"
env:
CLIMACOMMS_DEVICE: "CUDA"
agents:
queue: clima
slurm_mem: 32GB
slurm_gpus: 1
modules: climacommon/2025_03_18

- label: "GPU AMIP with integrated land: ED only"
key: "amip_edonly_integrated_land_gpu"
command:
- echo "--- Run simulation"
- "julia --color=yes --project=experiments/ClimaEarth/ experiments/ClimaEarth/run_amip.jl --config_file $CONFIG_PATH/amip_edonly_integrated_land.yml --job_id amip_edonly_integrated_land_gpu"
artifact_paths: "experiments/ClimaEarth/output/amip_edonly_integrated_land_gpu/artifacts/*"
env:
CLIMACOMMS_DEVICE: "CUDA"
agents:
queue: clima
slurm_mem: 32GB
slurm_gpus: 1
modules: climacommon/2025_03_18

- label: "GPU AMIP with bucket: diag EDMF"
key: "amip_diagedmf_bucket_gpu"
command:
- echo "--- Run simulation"
- "julia --color=yes --project=experiments/ClimaEarth/ experiments/ClimaEarth/run_amip.jl --config_file $CONFIG_PATH/amip_diagedmf_bucket.yml --job_id amip_diagedmf_bucket_gpu"
artifact_paths: "experiments/ClimaEarth/output/amip_diagedmf_bucket_gpu/artifacts/*"
env:
CLIMACOMMS_DEVICE: "CUDA"
agents:
queue: clima
slurm_mem: 32GB
slurm_gpus: 1
modules: climacommon/2025_03_18

- label: "GPU AMIP with integrated land: diag EDMF"
key: "amip_diagedmf_integrated_land_gpu"
command:
- echo "--- Run simulation"
- "julia --color=yes --project=experiments/ClimaEarth/ experiments/ClimaEarth/run_amip.jl --config_file $CONFIG_PATH/amip_diagedmf_integrated_land.yml --job_id amip_diagedmf_integrated_land_gpu"
artifact_paths: "experiments/ClimaEarth/output/amip_diagedmf_integrated_land_gpu/artifacts/*"
env:
CLIMACOMMS_DEVICE: "CUDA"
agents:
queue: clima
slurm_mem: 32GB
slurm_gpus: 1
modules: climacommon/2025_03_18

# DYAMOND AMIP: 1 day (convection resolving)
- label: "GPU AMIP SUPERFINE: dyamond_target"
key: "longrun_amip_dyamond_gpu"
19 changes: 19 additions & 0 deletions config/longrun_configs/amip_diagedmf_bucket.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FLOAT_TYPE: "Float32"
albedo_model: "CouplerAlbedo"
atmos_config_file: "config/longrun_configs/amip_target_diagedmf.yml"
bucket_albedo_type: "map_temporal"
checkpoint_dt: "720hours"
co2: "maunaloa"
coupler_toml: ["toml/amip.toml"]
dt: "120secs"
dt_cpl: "120secs"
dt_save_to_sol: "30days"
energy_check: false
h_elem: 16
mode_name: "amip"
radiation_reset_rng_seed: true
start_date: "20100101"
surface_setup: "PrescribedSurface"
t_end: "366days"
topography: "Earth"
topo_smoothing: true
19 changes: 19 additions & 0 deletions config/longrun_configs/amip_diagedmf_integrated_land.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FLOAT_TYPE: "Float32"
albedo_model: "CouplerAlbedo"
atmos_config_file: "config/longrun_configs/amip_target_diagedmf.yml"
checkpoint_dt: "720hours"
co2: "maunaloa"
coupler_toml: ["toml/amip.toml"]
dt: "120secs"
dt_cpl: "120secs"
dt_save_to_sol: "30days"
energy_check: false
h_elem: 16
land_model: "integrated"
mode_name: "amip"
radiation_reset_rng_seed: true
start_date: "20100101"
surface_setup: "PrescribedSurface"
t_end: "366days"
topography: "Earth"
topo_smoothing: true
22 changes: 22 additions & 0 deletions config/longrun_configs/amip_edonly_bucket.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FLOAT_TYPE: "Float32"
albedo_model: "CouplerAlbedo"
atmos_config_file: "config/longrun_configs/amip_target_edonly.yml"
bucket_albedo_type: "map_temporal"
checkpoint_dt: "30days"
coupler_toml: ["toml/amip.toml"]
dt: "120secs"
dt_cpl: "120secs"
dt_save_to_sol: "30days"
energy_check: false
h_elem: 16
land_model: "bucket"
mode_name: "amip"
moist: equil
netcdf_interpolation_num_points: [90, 45, 31]
radiation_reset_rng_seed: true
start_date: "20100101"
surface_setup: "PrescribedSurface"
t_end: "366days"
topography: "Earth"
topo_smoothing: true
z_elem: 39
21 changes: 21 additions & 0 deletions config/longrun_configs/amip_edonly_integrated_land.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FLOAT_TYPE: "Float32"
albedo_model: "CouplerAlbedo"
atmos_config_file: "config/longrun_configs/amip_target_edonly.yml"
checkpoint_dt: "30days"
coupler_toml: ["toml/amip.toml"]
dt: "120secs"
dt_cpl: "120secs"
dt_save_to_sol: "30days"
energy_check: false
h_elem: 16
land_model: "integrated"
mode_name: "amip"
moist: equil
netcdf_interpolation_num_points: [90, 45, 31]
radiation_reset_rng_seed: true
start_date: "20100101"
surface_setup: "PrescribedSurface"
t_end: "366days"
topography: "Earth"
topo_smoothing: true
z_elem: 39