Skip to content
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
4 changes: 3 additions & 1 deletion .buildkite/distributed/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ steps:
TEST_ARCHITECTURE: "CPU"
commands:
- "srun julia -O0 --color=yes --project -e 'using Pkg; Pkg.test()'"
timeout_in_minutes: 1440
agents:
slurm_mem: 50G
slurm_ntasks: 4
Expand All @@ -112,8 +113,9 @@ steps:
TEST_ARCHITECTURE: "GPU"
commands:
- "srun julia -O0 --color=yes --project -e 'using Pkg; Pkg.test()'"
timeout_in_minutes: 1440
agents:
slurm_mem: 80G # Apparently the GPU tests require more memory
slurm_mem: 100G # Apparently the GPU tests require more memory
slurm_ntasks: 4
slurm_gpus_per_task: 1
retry:
Expand Down
5 changes: 4 additions & 1 deletion test/test_distributed_hydrostatic_model.jl
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ for arch in archs
arch = synchronized(arch)
closure = CATKEVerticalDiffusivity()

if arch.local_rank == 0
@info " Testing CATKE with $(ranks(arch)) ranks"
end

# "s" for "serial" computation, "p" for parallel
ms = rotation_with_shear_test(global_underlying_grid, closure)
mp = rotation_with_shear_test(underlying_grid, closure)
Expand Down Expand Up @@ -188,4 +192,3 @@ for arch in archs
end
end
end

Loading