Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
branch = develop
[submodule "pyFV3"]
path = pyFV3
url = https://github.com/NOAA-GFDL/PyFV3.git
url = https://github.com/NOAA-GFDL/pyFV3.git
branch = develop
[submodule "pySHiELD"]
path = pySHiELD
url = https://github.com/NOAA-GFDL/PySHiELD.git
url = https://github.com/NOAA-GFDL/pySHiELD.git
branch = develop
2 changes: 1 addition & 1 deletion NDSL
Submodule NDSL updated 85 files
+6 −3 .github/workflows/unit_tests.yaml
+5 −3 examples/mpi/zarr_monitor.py
+1 −1 external/gt4py
+6 −1 mkdocs.yml
+46 −19 ndsl/comm/_boundary_utils.py
+11 −7 ndsl/comm/boundary.py
+11 −11 ndsl/comm/decomposition.py
+5 −5 ndsl/comm/partitioner.py
+15 −13 ndsl/constants.py
+4 −5 ndsl/dsl/dace/dace_config.py
+2 −2 ndsl/dsl/dace/labeler.py
+1 −1 ndsl/dsl/dace/stree/optimizations/axis_merge.py
+1 −1 ndsl/dsl/dace/stree/optimizations/clean_tree.py
+1 −1 ndsl/dsl/dace/stree/optimizations/memlet_helpers.py
+1 −1 ndsl/dsl/dace/stree/optimizations/refine_transients.py
+1 −1 ndsl/dsl/dace/stree/optimizations/tree_common_op.py
+2 −2 ndsl/dsl/gt4py_utils.py
+49 −59 ndsl/dsl/stencil.py
+200 −200 ndsl/grid/generation.py
+2 −1 ndsl/grid/global_setup.py
+6 −6 ndsl/grid/helper.py
+6 −7 ndsl/grid/stretch_transformation.py
+40 −24 ndsl/halo/data_transformer.py
+2 −2 ndsl/halo/rotate.py
+24 −21 ndsl/halo/updater.py
+1 −2 ndsl/initialization/allocator.py
+21 −29 ndsl/initialization/subtile_grid_sizer.py
+29 −28 ndsl/performance/timer.py
+52 −34 ndsl/quantity/bounds.py
+2 −2 ndsl/quantity/metadata.py
+16 −17 ndsl/quantity/quantity.py
+2 −2 ndsl/quantity/state.py
+1 −1 ndsl/restart/_legacy_restart.py
+94 −94 ndsl/restart/_properties.py
+1 −44 ndsl/stencils/basic_operations.py
+4 −4 ndsl/stencils/c2l_ord.py
+43 −24 ndsl/stencils/corners.py
+5 −5 ndsl/stencils/testing/grid.py
+3 −3 ndsl/stencils/testing/parallel_translate.py
+2 −0 ndsl/stencils/testing/test_translate.py
+30 −27 ndsl/stencils/tridiag.py
+5 −5 ndsl/types.py
+2 −2 ndsl/utils.py
+8 −8 ndsl/viz/fv3/__init__.py
+4 −4 ndsl/viz/fv3/_constants.py
+9 −9 ndsl/viz/fv3/_plot_cube.py
+2 −2 ndsl/viz/fv3/_plot_diagnostics.py
+8 −8 ndsl/viz/fv3/grid_metadata.py
+2 −8 pyproject.toml
+11 −11 tests/dsl/orchestration/test_call.py
+3 −3 tests/dsl/test_skip_passes.py
+19 −11 tests/dsl/test_stencil.py
+2 −2 tests/dsl/test_stencil_factory.py
+42 −42 tests/mpi/test_mpi_halo_update.py
+16 −16 tests/quantity/test_boundary.py
+4 −4 tests/quantity/test_fieldbundle.py
+52 −7 tests/quantity/test_local.py
+6 −1 tests/quantity/test_quantity.py
+8 −8 tests/quantity/test_state.py
+25 −25 tests/quantity/test_transpose.py
+68 −68 tests/quantity/test_view.py
+16 −17 tests/stencils/test_stencils.py
+10 −10 tests/stree_optimizer/test_merge.py
+4 −4 tests/stree_optimizer/test_pipeline.py
+11 −11 tests/stree_optimizer/test_transient_refine.py
+6 −6 tests/test_4d_fields.py
+8 −23 tests/test_basic_operations.py
+5 −5 tests/test_boilerplate.py
+2 −2 tests/test_caching_comm.py
+18 −18 tests/test_cube_scatter_gather.py
+22 −21 tests/test_dimension_sizer.py
+5 −5 tests/test_g2g_communication.py
+36 −36 tests/test_halo_data_transformer.py
+50 −50 tests/test_halo_update.py
+25 −25 tests/test_halo_update_ranks.py
+18 −18 tests/test_legacy_restart.py
+7 −7 tests/test_ndsl_runtime.py
+4 −3 tests/test_netcdf_monitor.py
+97 −97 tests/test_partitioner.py
+20 −20 tests/test_rotate.py
+5 −5 tests/test_sync_shared_boundary.py
+9 −9 tests/test_tile_scatter.py
+25 −25 tests/test_tile_scatter_gather.py
+44 −40 tests/test_timer.py
+39 −37 tests/test_zarr_monitor.py
2 changes: 1 addition & 1 deletion pyFV3
Loading