Skip to content
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

add GPU slabplanet file read albedo runs #589

Merged
merged 3 commits into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
20 changes: 18 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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/*"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, looking at the conservation plots, there is definitely something wrong with energy for the GPU runs. I would expect these to be that different. E.g. for function CPU v GPU:

Screen Shot 2024-02-09 at 2 55 11 PM

It would be good for us to try to debug this as the next step.

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
Expand Down
1 change: 1 addition & 0 deletions config/model_configs/gpu_slabplanet_albedo_function.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply_limiter: false
conservation_softfail: true
dt: "200secs"
dt_cpl: 200
dt_save_to_sol: "3600secs"
Expand Down
17 changes: 17 additions & 0 deletions config/model_configs/gpu_slabplanet_albedo_static_map.yml
Original file line number Diff line number Diff line change
@@ -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"
17 changes: 17 additions & 0 deletions config/model_configs/gpu_slabplanet_albedo_temporal_map.yml
Original file line number Diff line number Diff line change
@@ -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"
Loading