Add e2e test for CUDA Minor Version Compatibility#1791
Draft
cdesiniotis wants to merge 3 commits intoNVIDIA:mainfrom
Draft
Add e2e test for CUDA Minor Version Compatibility#1791cdesiniotis wants to merge 3 commits intoNVIDIA:mainfrom
cdesiniotis wants to merge 3 commits intoNVIDIA:mainfrom
Conversation
…ilable This commit reverts NVIDIA@08bf583 which made it so that the libcuda.so ELF header was only ever inspected on certain Tegra systems, like Orin. We now leverage the libcuda.so ELF header in all cases (if available) to determine if the CUDA compat libraries bundled in the container should be used in favor of the host driver libraries. This allows us to support CUDA minor version compatibility. Signed-off-by: Christopher Desiniotis <cdesiniotis@nvidia.com>
…n version strings
Any version string passed as an argument to semver.Compare() must be a valid semantic
version. It is common for NVIDIA driver versions to have leading zeros in the MINOR or
PATCH portion of a version string, e.g. 575.57.08. As a result, a call to
semver.Compare("575.57.08", "575.10.10") would incorrectly return -1 because the first
argument is not a valid semantic version.
And from https://pkg.go.dev/golang.org/x/mod/semver#Compare:
'''
An invalid semantic version string is considered less than a valid one.
All invalid semantic version strings compare equal to each other.
'''
Signed-off-by: Christopher Desiniotis <cdesiniotis@nvidia.com>
Signed-off-by: Christopher Desiniotis <cdesiniotis@nvidia.com>
Coverage Report for CI Build 24749042545Coverage increased (+0.2%) to 43.481%Details
Uncovered Changes
Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Depends on #1784
The holodeck failures should be fixed by NVIDIA/holodeck#782