Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
109bb82
removed creation of xmap in generate_redistribution_map
shreybh1 Feb 13, 2026
e31a33d
removed comm initialisation and added datatype_mpi_val back into the …
shreybh1 Feb 19, 2026
f8bb84f
Take XIOS file frequency configuration from iodef.xml where possible …
EdHone Feb 13, 2026
1ec3ac8
Add GH_SCALAR_ARRAY to argument_mod (#223)
mo-alistairp Feb 16, 2026
16e14a7
Lift adjustable psyclone command options into adjustable flag (#271)
MetBenjaminWent Feb 16, 2026
fa86c53
Improve partitioner unit tests (#254)
mike-hobson Feb 17, 2026
9bbc933
Additions and corrections to code owners files (#278)
tommbendall Feb 19, 2026
1d6710e
Allow different meshes to have different maximum halo depths (#237)
tommbendall Feb 19, 2026
a4098f3
Catch build system up with name change of generated configuration sou…
MatthewHambley Feb 20, 2026
fe642fb
Update CODEOWNERS file to have more comprehensive coverage (#283)
andrewcoughtrie Feb 20, 2026
e157a29
Remove module scope access of namelist variables by coordinate/native…
mo-rickywong Feb 25, 2026
3e601a0
Apps vn3.1 upgrade (#295)
ericaneininger Mar 3, 2026
1045328
IO_Demo benchmarking configuration (#232)
EdHone Mar 6, 2026
a2e4e5e
add validate symlinks calling workflow (#300)
james-bruten-mo Mar 9, 2026
1915036
Purge Intermediate Api access to configuration object from in favor o…
mo-rickywong Mar 10, 2026
4b204d9
Enable reading for cyclic data files using temporal controller (#231)
EdHone Mar 13, 2026
cbcc7a0
Correct bug in global mesh (#309)
mike-hobson Mar 17, 2026
8dedf3a
Safely compute height fields for continuous function spaces (#284)
tommbendall Mar 17, 2026
5aba3ea
Adding fortitude (#217)
mo-lucy-gordon Mar 19, 2026
0c14862
signed Contributors list
shreybh1 Mar 26, 2026
3bfb5c3
Merge branch 'main' into xmap_cache_bug_fix
allynt Mar 27, 2026
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
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
| jcsmeto | James Cunningham-Smith | Met Office | 2026-02-06 |
| thomasmelvin | Thomas Melvin | Met Office | 2026-01-15 |
| ericaneininger | Erica Neininger | Met Office | 2026-03-02 |
| mo-lucy-gordon | Lucy Gordon | Met Office | 2026-03-18 |
| mo-lucy-gordon | Lucy Gordon | Met Office | 2026-03-18 |
| shreybh1 | Shrey Bhardwaj | Met Office | 2026-03-26 |
6 changes: 0 additions & 6 deletions infrastructure/source/utilities/halo_comms_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -841,19 +841,13 @@ function generate_redistribution_map(src_indices, tgt_indices, datatype, xmap) &
integer(i_def), allocatable :: src_offsets(:)
integer(i_def), allocatable :: tgt_offsets(:)
integer(i_def) :: i
type(lfric_comm_type) :: comm
integer(i_def) :: datatype_mpi_val

if( global_mpi%is_comm_set() )then
! create decomposition descriptors
src_idxlist = xt_idxvec_new( src_indices, size(src_indices) )
tgt_idxlist = xt_idxvec_new( tgt_indices, size(tgt_indices) )

! generate exchange map
comm = global_mpi%get_comm()
Comment thread
mike-hobson marked this conversation as resolved.
xmap = xt_xmap_dist_dir_new( src_idxlist, tgt_idxlist, &
comm%get_comm_mpi_val() )

allocate(src_offsets( size(src_indices) ))
allocate(tgt_offsets( size(tgt_indices) ))

Expand Down
Loading