diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index fa4c6538cc..b9885b8497 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -168,7 +168,7 @@ steps: slurm_mem: 20GB - label: "Slabplanet: albedo from temporal map" - key: "slabplanet_albedo_map_temporal" + key: "slabplanet_albedo_temporal_map" command: "julia --color=yes --project=experiments/AMIP/ experiments/AMIP/coupler_driver.jl --config_file $CONFIG_PATH/slabplanet_albedo_temporal_map.yml" artifact_paths: "experiments/AMIP/output/slabplanet/slabplanet_albedo_temporal_map_artifacts/*" agents: @@ -349,7 +349,23 @@ steps: - label: "GPU Slabplanet: albedo from function" key: "gpu_slabplanet_albedo_function" command: "julia --color=yes --project=experiments/AMIP/ experiments/AMIP/coupler_driver.jl --config_file $CONFIG_PATH/gpu_slabplanet_albedo_function.yml" - artifact_paths: "experiments/AMIP/output/gpu/slabplanet/gpu_slabplanet_albedo_function_artifacts/*" + artifact_paths: "experiments/AMIP/output/slabplanet/gpu_slabplanet_albedo_function_artifacts/*" + agents: + slurm_mem: 20GB + slurm_gpus: 1 + + - label: "GPU Slabplanet: albedo from static map" + key: "gpu_slabplanet_albedo_static_map" + command: "julia --color=yes --project=experiments/AMIP/ experiments/AMIP/coupler_driver.jl --config_file $CONFIG_PATH/gpu_slabplanet_albedo_static_map.yml" + artifact_paths: "experiments/AMIP/output/slabplanet/gpu_slabplanet_albedo_static_map_artifacts/*" + agents: + slurm_mem: 20GB + slurm_gpus: 1 + + - label: "GPU Slabplanet: albedo from temporal map" + key: "gpu_slabplanet_albedo_temporal_map" + command: "julia --color=yes --project=experiments/AMIP/ experiments/AMIP/coupler_driver.jl --config_file $CONFIG_PATH/gpu_slabplanet_albedo_temporal_map.yml" + artifact_paths: "experiments/AMIP/output/slabplanet/gpu_slabplanet_albedo_temporal_map_artifacts/*" agents: slurm_mem: 20GB slurm_gpus: 1 diff --git a/config/model_configs/gpu_slabplanet_albedo_function.yml b/config/model_configs/gpu_slabplanet_albedo_function.yml index 61dd17468e..e9ee5ede71 100644 --- a/config/model_configs/gpu_slabplanet_albedo_function.yml +++ b/config/model_configs/gpu_slabplanet_albedo_function.yml @@ -1,4 +1,5 @@ apply_limiter: false +conservation_softfail: true dt: "200secs" dt_cpl: 200 dt_save_to_sol: "3600secs" diff --git a/config/model_configs/gpu_slabplanet_albedo_static_map.yml b/config/model_configs/gpu_slabplanet_albedo_static_map.yml new file mode 100644 index 0000000000..82969cb066 --- /dev/null +++ b/config/model_configs/gpu_slabplanet_albedo_static_map.yml @@ -0,0 +1,17 @@ +apply_limiter: false +conservation_softfail: true +dt: "200secs" +dt_cpl: 200 +dt_save_to_sol: "3600secs" +energy_check: true +h_elem: 4 +job_id: "gpu_slabplanet_albedo_static_map" +land_albedo_type: "map_static" +mode_name: "slabplanet" +moist: "equil" +mono_surface: true +precip_model: "0M" +rad: "gray" +run_name: "gpu_slabplanet_albedo_static_map" +t_end: "10days" +vert_diff: "true" diff --git a/config/model_configs/gpu_slabplanet_albedo_temporal_map.yml b/config/model_configs/gpu_slabplanet_albedo_temporal_map.yml new file mode 100644 index 0000000000..bdd6d61a08 --- /dev/null +++ b/config/model_configs/gpu_slabplanet_albedo_temporal_map.yml @@ -0,0 +1,17 @@ +apply_limiter: false +conservation_softfail: true +dt: "200secs" +dt_cpl: 200 +dt_save_to_sol: "3600secs" +energy_check: true +h_elem: 6 +job_id: "gpu_slabplanet_albedo_temporal_map" +land_albedo_type: "map_temporal" +mode_name: "slabplanet" +moist: "equil" +mono_surface: true +precip_model: "0M" +rad: "gray" +run_name: "gpu_slabplanet_albedo_temporal_map" +t_end: "10days" +vert_diff: "true"