-
Notifications
You must be signed in to change notification settings - Fork 463
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
Launch efa instances from heterogenous reservations #3768
Merged
Merged
Changes from 22 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
cc4b037
init p5 optimize
arjkesh c3abb82
temp changes
arjkesh 3fc3f3d
debug
arjkesh bb842bf
disable build
arjkesh 1f0e964
update refresh logic
arjkesh 7d2e450
add debug
arjkesh 1b26823
raise on purpose
arjkesh c656ee3
raise again
arjkesh 1d5c089
update
arjkesh fa0fe28
update
arjkesh 3100f27
update
arjkesh 9bb1796
run efa with default behavior
arjkesh 1fa6f80
evert "run efa with default behavior"
arjkesh cbb3eab
competition 1
arjkesh 01f5ee6
competition 2
arjkesh 458ac2f
revert temp changes, make sure PRs behave as usual
arjkesh 0f60161
add more logging
arjkesh 8731694
bug fix
arjkesh 1f444db
deepcopy
arjkesh d904077
update
arjkesh 1afe96e
revert temp changes
arjkesh 6ca99b6
Merge branch 'master' into p5_optimize
arjkesh 9312b99
Merge branch 'master' into p5_optimize
arjkesh cac4919
Merge branch 'master' into p5_optimize
arjkesh e7abd56
Merge branch 'master' into p5_optimize
arjkesh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ | |
# language governing permissions and limitations under the License. | ||
from __future__ import absolute_import | ||
|
||
import os | ||
|
||
import pytest | ||
|
||
from packaging.version import Version | ||
|
@@ -35,7 +37,10 @@ def can_run_pytorchddp(ecr_image): | |
return Version(image_framework_version) in SpecifierSet(">=1.10") | ||
|
||
|
||
# Skip due to known issue: https://github.com/pytorch/pytorch/issues/99074 | ||
@pytest.mark.skipif( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can remove these conditional skips if we still want to run these |
||
os.getenv("SM_EFA_TEST_INSTANCE_TYPE") == "p5.48xlarge", | ||
reason="Low availability of instance type; Must ensure test works on new instances.", | ||
) | ||
@pytest.mark.processor("gpu") | ||
@pytest.mark.model("N/A") | ||
@pytest.mark.multinode(2) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can remove these conditional skips if we still want to run these