Skip to content
Closed
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: 4 additions & 0 deletions config/default_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ num_register_tokens: 0

healpix_level: 5

# Split the encoder's HEALPix/location dimension across this many consecutive
# distributed ranks through local assimilation.
encoder_spatial_parallel_size: 4

# Use 2D RoPE instead of traditional global positional encoding
# When True: uses 2D RoPE based on healpix cell coordinates (lat/lon)
# When False: uses traditional pe_global positional encoding
Expand Down
8 changes: 8 additions & 0 deletions config/encoder_spatial_parallel_4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# (C) Copyright 2025 WeatherGenerator contributors.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.

# Four consecutive ranks share one batch and each process one quarter of the
# HEALPix/location dimension through local assimilation.
encoder_spatial_parallel_size: 4
8 changes: 8 additions & 0 deletions config/encoder_spatial_parallel_8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# (C) Copyright 2025 WeatherGenerator contributors.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.

# Eight consecutive ranks share one batch and each process one eighth of the
# HEALPix/location dimension through local assimilation.
encoder_spatial_parallel_size: 8
Loading