Skip to content
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

New feature: intra-node write aggregation #156

Merged
merged 13 commits into from
Nov 7, 2024
Merged

New feature: intra-node write aggregation #156

merged 13 commits into from
Nov 7, 2024

Conversation

wkliao
Copy link
Member

@wkliao wkliao commented Nov 7, 2024

This new feature is designed to reduce the possible congestion of all-to-many
personalized communication inside of MPI-IO when the number of allocated MPI
processes per compute node is large, for example larger than 64 per node, and
the non-contiguous requests per process spread over a wide range of file space.
Such congestion have been observed when running the E3SM-IO F case using 21600
MPI processes on DOE parallel computers, Perlmutter at NRSC, Frontier at OLCF,
and Aurora at ALCF.

When this feature enabled, a subset of MPI processes running on the same
compute node will be selected to be the aggregator. The non-aggregators send
their write requests to the assigned aggregators and then only the aggregators
make the MPI file write calls to write to the file.

To enable this new feature, a PnetCDF I/O hint 'nc_num_aggrs_per_node' can set
by the users. When setting its value to a positive integral value, PnetCDF will
select this number of processes per node to be the aggregators. Setting it to 0
disables the aggregation (the default mode.)

@wkliao wkliao merged commit 8981841 into master Nov 7, 2024
4 checks passed
@wkliao wkliao deleted the intra_node3 branch November 7, 2024 07:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant