Skip to content

[NeMo-UX] Make TE and Apex dependencies optional#9550

Merged
ericharper merged 48 commits intor2.0.0rc1from
ashors/remove-te-apex-deps
Jul 15, 2024
Merged

[NeMo-UX] Make TE and Apex dependencies optional#9550
ericharper merged 48 commits intor2.0.0rc1from
ashors/remove-te-apex-deps

Conversation

@ashors1
Copy link
Collaborator

@ashors1 ashors1 commented Jun 26, 2024

What does this PR do ?

This PR provides a fallback codepath that defaults to pure Pytorch/jit when TE and Apex are not installed. Note that this is specifically designed to work with NeMo 2.0, so there are no guarantees when running with NeMo 1.0 models.

Collection: [Note which collection this PR will affect]

Changelog

  • Add specific line by line info of high level changes in this PR.

Usage

  • You can potentially add a usage example below
# Add a code snippet demonstrating how to use this 

GitHub Actions CI

The Jenkins CI system has been replaced by GitHub Actions self-hosted runners.

The GitHub Actions CI will run automatically when the "Run CICD" label is added to the PR.
To re-run CI remove and add the label again.
To run CI on an untrusted fork, a NeMo user with write access must first click "Approve and run".

Before your PR is "Ready for review"

Pre checks:

  • Make sure you read and followed Contributor guidelines
  • Did you write any new necessary tests?
  • Did you add or update any necessary documentation?
  • Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc)
    • Reviewer: Does the PR have correct import guards for all optional libraries?

PR Type:

  • New Feature
  • Bugfix
  • Documentation

If you haven't finished some of the above items you can still open "Draft" PR.

Who can review?

Anyone in the community is free to review the PR once the checks have passed.
Contributor guidelines contains specific people who can review PRs to various areas.

Additional Information

  • Related to # (issue)

@ashors1 ashors1 requested review from akoumpa and marcromeyn June 26, 2024 22:28
@github-actions github-actions bot added core Changes to NeMo Core NLP labels Jun 26, 2024
@ashors1 ashors1 changed the title Ashors/remove te apex deps Make TE and Apex dependencies optional Jun 26, 2024
@github-actions github-actions bot removed the core Changes to NeMo Core label Jun 26, 2024
@ashors1 ashors1 marked this pull request as draft June 26, 2024 23:39
Comment on lines +290 to +295
# def check_adlr_autoresume_termination(iteration, model, optimizer, lr_scheduler, save: bool):
# """Check for autoresume signal and exit if it is received."""
# from apex.ppu.checkpointing import save_checkpoint
#
# autoresume = get_adlr_autoresume()
# # Add barrier to ensure consistency.
# torch.distributed.barrier()
# if autoresume.termination_requested():
# if save:
# save_checkpoint(iteration, model, optimizer, lr_scheduler)
# print_rank_0(">>> autoresume termination request found!")
# if torch.distributed.get_rank() == 0:
# autoresume.request_resume()
# print_rank_0(">>> training terminated. Returning")
# sys.exit(0)

Check notice

Code scanning / CodeQL

Commented-out code

This comment appears to contain commented-out code.
@github-actions github-actions bot added the CI label Jun 30, 2024
@ericharper ericharper requested review from dimapihtar and removed request for akoumpa and marcromeyn July 3, 2024 19:12
HAVE_MEGATRON_CORE = False
from typing import Any

RetroConfig = Any
Copy link
Collaborator

Choose a reason for hiding this comment

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

do we want to do the same for all of others mcore's classes we are trying to import under "try" block?
also, why don't use ApexGuardDefaults?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

do we want to do the same for all of others mcore's classes we are trying to import under "try" block?

So this PR is intended to provide a pure pytorch/jit path for NeMo 2.0, so things are not guaranteed to work with NeMo 1.0 models (I have updated the description to reflect this). I added this change because previously, the import of the Retro model in https://github.com/NVIDIA/NeMo/blob/bdb4e89d9ac33d733f8ea7b21552628dda798825/nemo/collections/nlp/models/language_modeling/__init__.py was breaking the 2.0 codepath, but it looks like that's no longer the case anymore. If it makes things clearer, I go ahead and revert this change.

@ashors1 ashors1 marked this pull request as ready for review July 5, 2024 06:47
@ashors1 ashors1 changed the title Make TE and Apex dependencies optional [NeMo-UX] Make TE and Apex dependencies optional Jul 5, 2024
setup_microbatch_calculator,
)

HAVE_APEX = True

Check notice

Code scanning / CodeQL

Unused local variable

Variable HAVE_APEX is not used.
@ashors1 ashors1 force-pushed the ashors/remove-te-apex-deps branch from ed46aec to 9e0fbbd Compare July 5, 2024 19:50
@ashors1 ashors1 marked this pull request as draft July 5, 2024 19:56
@ashors1 ashors1 force-pushed the ashors/remove-te-apex-deps branch from 6f3f671 to 6abeff6 Compare July 5, 2024 20:05
@ashors1 ashors1 marked this pull request as ready for review July 5, 2024 20:06
@github-actions github-actions bot removed the core Changes to NeMo Core label Jul 5, 2024
ashors1 and others added 28 commits July 9, 2024 19:54
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors1@users.noreply.github.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors1@users.noreply.github.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors1@users.noreply.github.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors1@users.noreply.github.com>
…ore RETRO MLM

Signed-off-by: huvunvidia <86480512+huvunvidia@users.noreply.github.com>
Signed-off-by: huvunvidia <huvunvidia@users.noreply.github.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors1@users.noreply.github.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors@nvidia.com>
Signed-off-by: ashors1 <ashors1@users.noreply.github.com>
Copy link
Collaborator

@ericharper ericharper left a comment

Choose a reason for hiding this comment

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

LGTM. Thanks!

@ko3n1g ko3n1g mentioned this pull request Jul 18, 2024
2 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants