Skip to content

Commit 1f90702

Browse files
glwagnerclaude
andcommitted
Reduce default grid sizes for sharded ocean climate to avoid OOM
Match the smaller defaults (64×64) used in PR #258 for the sharded baroclinic instability test to avoid out-of-memory on CI runners. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 468bf1e commit 1f90702

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sharding/sharded_ocean_climate_simulation_compile.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ const args_settings = ArgParseSettings()
44
@add_arg_table! args_settings begin
55
"--grid-x"
66
help = "Base factor for number of grid points on the x axis."
7-
default = 192
7+
default = 64
88
arg_type = Int
99
"--grid-y"
1010
help = "Base factor for number of grid points on the y axis."
11-
default = 96
11+
default = 64
1212
arg_type = Int
1313
"--grid-z"
1414
help = "Base factor for number of grid points on the z axis."

sharding/sharded_ocean_climate_simulation_run.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ const args_settings = ArgParseSettings()
77
@add_arg_table! args_settings begin
88
"--grid-x"
99
help = "Base factor for number of grid points on the x axis."
10-
default = 192
10+
default = 64
1111
arg_type = Int
1212
"--grid-y"
1313
help = "Base factor for number of grid points on the y axis."
14-
default = 96
14+
default = 64
1515
arg_type = Int
1616
"--grid-z"
1717
help = "Base factor for number of grid points on the z axis."

0 commit comments

Comments
 (0)