-
Notifications
You must be signed in to change notification settings - Fork 101
CI tests on multi-GPU runners #1229
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
Open
gagank1
wants to merge
21
commits into
main
Choose a base branch
from
gkaushik/multi-gpu-ci
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
68fa036
initial commit of adding multi-gpu ci runners
gagank1 62f381d
fix missing multi_gpu marker in esm2
gagank1 250bd29
switch to a6000 runners
gagank1 68307b1
fixed moco multi-gpu tests
gagank1 6fbe6f4
bind to only localhost
gagank1 494c6fb
Merge origin/main and add multi_gpu markers to new tests
gagank1 b777145
implemented data download in evo2 gradient equivalence test. fixed bu…
gagank1 c3f9737
added new ciflow:multi-gpu label and fixed scheduling
gagank1 9812568
update pull request template and contributing.md with instructions fo…
gagank1 01eabb6
run multi-gpu tests nightly only for now
gagank1 9520a1d
don't upload multigpu test results to codecov
gagank1 aa64021
match structure of existing pytest runner scripts
gagank1 617003a
Merge remote-tracking branch 'origin/main' into gkaushik/multi-gpu-ci
gagank1 16dc4ff
added @pytest.mark.multi_gpu to new recipes tests
gagank1 9c994c7
update recipes workflow to run multigpu tests nightly if single gpu t…
gagank1 2fe65dc
more scheduling changes
gagank1 3bf090d
add missing multi_gpu mark registration
gagank1 5f17689
fix recipes workflow return code, add fp8 check to test_accelerate_am…
gagank1 f14497c
fine tune scheduling logic
gagank1 d2822a4
fix labels for copy pr bot
gagank1 91e4dcd
xfail known bug
gagank1 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Copilot Autofix
AI 7 days ago
The recommended fix is to explicitly specify least privilege permissions for the workflow or, ideally, for the individual jobs in
.github/workflows/unit-tests-recipes.yml.For the
get-pr-labelsjob, the only required permission is to read pull request metadata (and potentially repository contents if any fetch occurs).pull-requests: readand optionallycontents: readcover reading PR info and repo access.Add a top-level
permissionsblock aftername:(applies to all jobs), or alternatively, apply a narrower permissions block to each job. For simplicity and following the error’s suggestion, add at the top/workflow level.Edit the file
.github/workflows/unit-tests-recipes.yml, adding:directly after the
name:key and before events (on:).Required methods/imports/definitions: None; this is a YAML structure change only.