-
Notifications
You must be signed in to change notification settings - Fork 4
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
Reuse baroclinic_instability_model
in sharding script and add test
#116
Merged
Merged
Changes from 36 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
39d2d93
Add new reusable workflow for simulation setup
glwagner 3b5e424
Fix indenting
glwagner 4560ccc
Bugfix maybe
glwagner 1aac3db
Another try
glwagner 42f92fe
Restore CompileOrRun
glwagner f7b7958
Generalize CompileOrRun for sharding
glwagner 218ed6e
Dont forget existing env
glwagner fdcbcf2
Single quotes
glwagner 05b0cc5
Typo
glwagner 454ad35
Old name
glwagner b2a8808
Sharding not required
glwagner 14673f7
Add sharding sim
glwagner aedb2cd
Small update to baro instability
glwagner 9ce7e45
Fix typo
glwagner 55b3c5b
Add simulation to script name
glwagner ad856fd
Rm
glwagner aedb06f
Simplify inputs
glwagner f295f32
Add grid name to files
glwagner 3251743
small bugfix
simone-silvestri 7adda32
add an mpi init
simone-silvestri eb5c685
add MPI to project
simone-silvestri 1c97e7a
fix path
simone-silvestri 5218af0
just run with dt=1 for now
simone-silvestri 254831c
Update CompileOrRun.yml
glwagner 54f42c6
Merge remote-tracking branch 'origin/main' into glw/groomed-sharding
glwagner a579c52
Pass grid name into CompileOrRun
glwagner a4337b3
Rm common ref
glwagner 43bda96
Fix bug in sharding grid spec
glwagner 495b8ad
bugfix
glwagner 2db7488
fix
glwagner e16ccda
Dont use parse
glwagner d9f40e2
Merge branch 'main' into glw/groomed-sharding
glwagner f41accd
Update Run.yml
glwagner e9ba0ca
Update Compile.yml
glwagner b7f7d14
Merge branch 'main' into glw/groomed-sharding
giordano 2b5a5f1
Update .github/workflows/Compile.yml
glwagner ead10d8
Update .github/workflows/Run.yml
glwagner d3e6843
grid_name -> grid_type
glwagner dfd0e46
Merge remote-tracking branch 'origin/main' into glw/groomed-sharding
glwagner 6806704
Forget about Gaussian islands for a sec
glwagner 1281ffe
Update sharded_baroclinic_instability_simulation_run.jl
glwagner 83bfb53
Update model_utils.jl
glwagner 7175b98
Update model_utils.jl
glwagner 3f704c4
grid -> grid_type in precompile extensions
glwagner c7a03aa
Update sharding/sharded_baroclinic_instability_simulation_run.jl
glwagner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
using GordonBell25 | ||
using GordonBell25: first_time_step!, time_step!, loop! | ||
using Oceananigans | ||
using Oceananigans.Units | ||
using Oceananigans.Architectures: ReactantState | ||
using Random | ||
using Printf | ||
using Reactant | ||
using MPI | ||
|
||
# Need this for sharding with non-openMPI implementations? | ||
# (GHA uses MPICH) | ||
MPI.Init() | ||
|
||
Reactant.Distributed.initialize(; single_gpu_per_process=false) | ||
|
||
@show Ngpu = length(Reactant.devices()) | ||
|
||
if Ngpu == 1 | ||
rank = 0 | ||
arch = Oceananigans.ReactantState() | ||
elseif Ngpu == 2 | ||
rank = Reactant.Distributed.local_rank() | ||
|
||
arch = Oceananigans.Distributed( | ||
Oceananigans.ReactantState(); | ||
partition = Partition(1, 2, 1) | ||
) | ||
else | ||
Rx = floor(Int, sqrt(Ngpu)) | ||
Ry = Ngpu ÷ Rx | ||
rank = Reactant.Distributed.local_rank() | ||
|
||
arch = Oceananigans.Distributed( | ||
Oceananigans.ReactantState(); | ||
partition = Partition(Rx, Ry, 1) | ||
) | ||
end | ||
|
||
using Dates | ||
@info "[$rank] Generating model..." now(UTC) | ||
|
||
grid_str = get(ENV, "grid_name", "simple_lat_lon") | ||
resolution_fraction_str = get(ENV, "resolution_fraction", "2") | ||
time_step_str = get(ENV, "time_step", "60") | ||
Nz_str = get(ENV, "Nz", "10") | ||
|
||
@show grid_type = Symbol(grid_str) | ||
@show resolution_fraction = parse(Float64, resolution_fraction_str) | ||
@show time_step_str = parse(Float64, time_step_str) | ||
@show Nz = parse(Int, Nz_str) | ||
|
||
model = GordonBell25.baroclinic_instability_model(arch; grid_type, Δt=1, Nz, | ||
resolution=1/resolution_fraction) | ||
|
||
@info "[$rank] Compiling first_time_step!..." | ||
rfirst! = @compile first_time_step!(model) | ||
|
||
@info "[$rank] Compiling loop..." | ||
rstep! = @compile time_step!(model) | ||
|
||
@time "[$rank] Running first_time_step!..." rfirst!(model) | ||
@time "[$rank] Warming up..." rstep!(model) | ||
|
||
rstep!(model) | ||
rstep!(model) | ||
rstep!(model) | ||
|
||
@time "[$rank] Running loop..." begin | ||
for n = 1:10 | ||
rstep!(model) | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/PRONTOLab/GB-25/actions/runs/14148328037?pr=116
🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, its
grid_name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually I will just change them all to grid_type, its better