-
Notifications
You must be signed in to change notification settings - Fork 364
fix: release/2.1
CI Repair
#2528
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
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
d872c20
test: Regular CI
gs-olive eaa94fb
WORKSPACE
gs-olive 2c0248d
revert workspace changes
gs-olive 6544dd2
CUDA specification
gs-olive 00bfac7
CUDA specification 2
gs-olive 00eac02
CUDA specification 2
gs-olive 009164f
CUDA specification 3
gs-olive aeacbc5
add debug
gs-olive acf8c00
torch version fix
gs-olive f57e277
revert pre-build changes
gs-olive f0946ab
version constraint fixes
gs-olive d533852
version constraint fixes 2
gs-olive 7fe3e09
remove junit
gs-olive 25e8810
fix: Torch switch to test
gs-olive 38b6449
fix: isolate bug
gs-olive 4ab933a
fix: narrowing error 2
gs-olive f2d883a
fix: narrowing error 3
gs-olive f7481e0
fix: narrowing error 4
gs-olive 1e37315
test fix segfault
gs-olive ae9ec86
test imports
gs-olive dee5650
switch to release
gs-olive fa74dfb
release to main
gs-olive 8842a63
back to test
gs-olive ab5daed
testing install removal
gs-olive f400fac
CHANNELS
gs-olive 5b7d785
no channel
gs-olive 64134cd
Return all tests
gs-olive e2e4999
bump requirements versions
gs-olive 743a5c0
unnecessary modification
gs-olive 64574a7
remove channel from linux test
gs-olive ca18067
Fix expecttest version
gs-olive 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
numpy | ||
packaging | ||
pybind11==2.6.2 | ||
torch==2.1.1 | ||
torchvision==0.16.1 | ||
--extra-index-url https://pypi.ngc.nvidia.com | ||
torch==2.1.2 | ||
torchvision==0.16.2 | ||
--extra-index-url https://pypi.nvidia.com | ||
tensorrt==8.6.1 | ||
pyyaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ pytest | |
transformers | ||
timm | ||
parameterized | ||
expecttest | ||
expecttest==0.1.6 |
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
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.
does this do anything? since theres already ${PIP_INSTALL_TORCH}?
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 is necessary, since in
build-test.yml
, when building Torch-TRT, we have:In
linux-test.yml
, when testing Torch-TRT using the artifact from build, we have:The second one installs the
2.2.0.dev
test build, which is the most up-to-date test build, but is incompatible with the version on which it was built. Specifying the version explicitly resolves this problem.