-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Gaudi: add CI #3160
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
Merged
Merged
Gaudi: add CI #3160
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
4e40467
wip(test): adding test to ci
baptistecolle b4917f6
wip: able to launch gaudi tests
baptistecolle 7779d0c
feat(ci): llama3 test working
baptistecolle 781dd20
feat(ci): llama3 test working
baptistecolle 8568f91
fix llama failing test
baptistecolle 76d155e
wip(ci): rerun ci to debug
baptistecolle 1bd2ad9
Update tests.yaml
paulinebm 2c2cfc0
Update tests.yaml
paulinebm 4b5e812
wip(ci): debug the ci
baptistecolle a2a5772
wip(ci): debug the ci
baptistecolle 9c67763
change defualt behaviour to only run a subset of all the models
baptistecolle 59dc8c2
change defualt behaviour to only run a subset of all the models
baptistecolle fcf6870
testing
baptistecolle 9c235f4
feat(gaudi/ci): added ci for gaudi device
baptistecolle 8768085
add new gaudi3 runners
baptistecolle 1f03afe
enable multi-card test
baptistecolle 0295bf2
fix broken test
baptistecolle a32025f
fix style
baptistecolle ae7f3ae
update conftest
baptistecolle b159d02
fix(ci): use smaller runner
baptistecolle 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 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
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.
This will run the models with
"run_by_default": True
in PRs right?If yes, I think we should change the runner above from
itac-bm-emr-gaudi3-dell-8gaudi
toitac-bm-emr-gaudi3-dell-2gaudi
so that we test Llama 8b on a single device and on 2 devices.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.
Yes this is correct
"run_by_default": True
make the test run on the CI.The CI follow this commands
make -C backends/gaudi run-integration-tests
which run all the"run_by_default": True
testsThere is also this command
make -C backends/gaudi run-integration-tests-with-all-models
that runs all the model config definied in the test cases. This is useful when doing a big refactoring and checking everything is still working as expected