Skip to content

DLWP Indexing and memory consumption fix #859

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

Open
wants to merge 45 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3b15d51
Add workflow to automatically sync changes from nvidia/modulus into m…
nathanielcresswellclay Nov 23, 2024
8f0cc02
add WeightedOceanMSE to criterion
zacespinosa Nov 25, 2024
c439e00
Merge pull request #1 from AtmosSci-DLESM/WeightedOceanMSE
zacespinosa Dec 2, 2024
47fdce8
add optional gaussian noise to inputs and coupled variables during tr…
zacespinosa Nov 26, 2024
2826a02
add random seed - still need to test
zacespinosa Dec 2, 2024
e44dcc9
remove datatransformer code - shouldn't be part of this PR
zacespinosa Dec 2, 2024
f73e149
move logging
zacespinosa Dec 2, 2024
50041ef
Removed blossom-ci workflow from modulus-uw fork, updated automatic sync
nathanielcresswellclay Dec 2, 2024
e2f3376
Fix the training and inference problem in nvidia modulus
ivanauyeung Dec 13, 2024
b8951be
Fix indexing in constant coupler
nathanielcresswellclay Dec 14, 2024
20170ad
add 'Multi_SymmetricConvNeXtBlock'
Bwformer Dec 16, 2024
68ca5bf
Repalce 'n_layers' with 'n_conv_blocks' for clarity
Bwformer Dec 16, 2024
0c3288a
Merge pull request #8 from AtmosSci-DLESM/fix_indexing_coupler
Bwformer Dec 16, 2024
c81405e
Merge pull request #2 from AtmosSci-DLESM/GaussianNoiseCoupled
zacespinosa Dec 16, 2024
1317c02
Fix indexing in constant coupler
ivanauyeung Dec 18, 2024
027473b
Fix indexing in constant coupler
ivanauyeung Dec 18, 2024
aff387e
change back to 'n_layers' to match the old models
Bwformer Dec 19, 2024
80821ec
Merge pull request #9 from Bwformer/bw/DoubleConv
Bwformer Dec 19, 2024
5726c7b
enforce precedence of upstream modulus changes when auto syncing.
nathanielcresswellclay Dec 26, 2024
4574532
Merge pull request #3 from AtmosSci-DLESM/update_workflow
nathanielcresswellclay Dec 26, 2024
be854fd
Merge branch 'main' into dlwp_coupled_training_inference_fix
yairchn Jan 6, 2025
957b00a
set scaling for mean: 0, std: 1 where no change is needed
yairchn Jan 6, 2025
d519a84
Merge branch 'dev' into dlwp_coupled_training_inference_fix
yairchn Jan 6, 2025
afb4e63
Merge pull request #7 from AtmosSci-DLESM/dlwp_coupled_training_infer…
yairchn Jan 6, 2025
3a3e9d1
fix memory leak in coupled timeseries
yairchn Mar 2, 2025
cd81224
Merge pull request #14 from AtmosSci-DLESM/yc/mem_leak_coupledtimeseries
yairchn Mar 3, 2025
6d34145
Add workflow to automatically sync changes from nvidia/modulus into m…
nathanielcresswellclay Nov 23, 2024
2b9008d
Fix the training and inference problem in nvidia modulus
ivanauyeung Dec 13, 2024
c8ff21a
Fix indexing in constant coupler
ivanauyeung Dec 18, 2024
e0e9d9b
Fix indexing in constant coupler
ivanauyeung Dec 18, 2024
e12861c
Removed blossom-ci workflow from modulus-uw fork, updated automatic sync
nathanielcresswellclay Dec 2, 2024
1dc4783
enforce precedence of upstream modulus changes when auto syncing.
nathanielcresswellclay Dec 26, 2024
5fac4e8
set scaling for mean: 0, std: 1 where no change is needed
yairchn Jan 6, 2025
9c5c9e8
add 'Multi_SymmetricConvNeXtBlock'
Bwformer Dec 16, 2024
5c27fba
Repalce 'n_layers' with 'n_conv_blocks' for clarity
Bwformer Dec 16, 2024
2cd0cec
change back to 'n_layers' to match the old models
Bwformer Dec 19, 2024
7c92ab2
fix memory leak in coupled timeseries
yairchn Mar 2, 2025
bfa1489
Merge branch 'dev' into rebase_physicsnemo
daviddpruitt Apr 24, 2025
65d8483
add coupler fixes, var and time selection
daviddpruitt Apr 24, 2025
4d7f5c9
Fix for ordering on coupler
daviddpruitt Apr 24, 2025
3541167
batch size fix in coupler
daviddpruitt Apr 24, 2025
ed33b0c
broken workflow cleanup
daviddpruitt Apr 24, 2025
6bd06dc
Merge pull request #19 from AtmosSci-DLESM/rebase_physicsnemo
daviddpruitt Apr 24, 2025
f5ba5ff
cleanup for upstream merge (#20)
daviddpruitt Apr 26, 2025
fe01de4
Merge physics nemo (#21)
daviddpruitt May 7, 2025
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
Prev Previous commit
Next Next commit
enforce precedence of upstream modulus changes when auto syncing.
  • Loading branch information
nathanielcresswellclay authored and daviddpruitt committed Apr 24, 2025
commit 1dc478319c00595c76d031132078dcda9474e9e2
2 changes: 1 addition & 1 deletion .github/workflows/automatic_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Merge Changes from modulus
id: merge
run: |
git merge upstream/main || echo "No changes to merge"
git merge -X theirs upstream/main || echo "No changes to merge"

# Step 4: Push Changes to Fork
- name: Push Changes to Fork
Expand Down