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

Communicator refactor #496

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open

Conversation

bknueven
Copy link
Collaborator

@bknueven bknueven commented Mar 7, 2025

This PR finishes the work started in #476 by utilizing the new API introduced for communication in #476 at a higher level. This refactoring has a few major outcomes:

  1. The "Hub" is now primarily responsible for (a) termination and (b) sending and receiving the most up-to-date inner and outer bound information.
  2. Spokes must now explicitly check for updates in the fields they are interested in: the call to Spoke.got_kill_signal only updates the SHUTDOWN field. This mirrors how things are currently done in the hub and removes from spooky action at a distance from the code.
  3. With the exception of termination and best current bounds (which are still hard coded to rank 0), Spoke now look up the rank providing the information they need to function. If there is no provider of that information the program will terminate with an error, and if there is more than one provider of that information the program will typically terminate with an error.
  4. Lots of bespoke code has been eliminate from both the Hub and Spoke classes and is now in SPCommunicator
  5. Automatic checking for sanity on buffer lengths has been moved to the class FieldLengths, which centrally stores the length of each field. Validation is done automatically and generically in SPCommunicator.register_recv_field
  6. The SPCommunicator classes now register as a class attribute what they send and receive. This isn't necessary, but makes it possible to write the method SPCommunicator.register_receive_fields in a generic way. But maybe we should just be doing calls to super() with traditional inheritance instead?
  7. Improves termination time: each call to Spoke.got_kill_signal only checks the shutdown field. Further, instead of all cylinder ranks agreeing on shutting down by checking is_new, we now terminate when the first one gets the shutdown indicator through an SPCommunicator.allreduce_or call to synchronize the action. This results in (a) faster termination and (b) more flexibility: Spoke.got_kill_signal can be called multiple times to jump out of expensive function executions.

@bknueven bknueven force-pushed the communicator_refactor branch from d512137 to ad1f6b9 Compare March 7, 2025 20:42
@bknueven bknueven force-pushed the communicator_refactor branch from 7a33788 to d89676c Compare March 7, 2025 22:26
@bknueven bknueven force-pushed the communicator_refactor branch from dbcd3f1 to 4d3b668 Compare March 7, 2025 23:51
@bknueven bknueven force-pushed the communicator_refactor branch from 9bccfe6 to f2ff331 Compare March 10, 2025 16:48
@bknueven bknueven force-pushed the communicator_refactor branch from 2d250ac to a94c2dd Compare March 11, 2025 02:54
@bknueven bknueven force-pushed the communicator_refactor branch from 6c6fd66 to 1a0ceb8 Compare March 26, 2025 17:05
@bknueven bknueven marked this pull request as ready for review March 27, 2025 16:59
@bknueven bknueven force-pushed the communicator_refactor branch from 64901fb to 252166c Compare April 1, 2025 20:22
is_new (bool): Indicates whether the "gotten" values are new,
based on the write_id.
"""
if not synchronize:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if not synchronize:
if synchronize:


fullcomm.Barrier()
global_toc("Finalize Complete")
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
global_toc("Finalize Complete")
global_toc("Finalized")

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
global_toc("Finalize Complete")
global_toc("All cylinders finalized")

Maybe this instead?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or ..

Suggested change
global_toc("Finalize Complete")
global_toc("Cylinder Finalization Complete")

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