Install cuDNN frontend in GitHub builds#3196
Merged
ptrendx merged 1 commit intoJul 9, 2026
Merged
Conversation
TransformerEngine now resolves cuDNN frontend headers from the Python distribution, but GitHub Actions builds without isolation and did not install that build dependency. Install the same >=1.25.0 requirement declared in pyproject.toml for every build variant so metadata generation can proceed. Signed-off-by: Sudhakar Singh <sudhakars@nvidia.com>
Member
|
I think there is an issue here that we shouldn't just WAR - the cudnn frontend should be installed as a dependency of TE, the fact that it does not do that is a problem. |
timmoon10
reviewed
Jul 9, 2026
Member
|
It seems we are still experiencing build failures because NCCL EP added a NCCL dependency: #3127 |
Contributor
vcherepanov-nv
approved these changes
Jul 9, 2026
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.
Summary
nvidia-cudnn-frontend>=1.25.0build dependency in every GitHub Actions build environment.pyproject.toml.Root cause
TransformerEngine now resolves cuDNN frontend headers from the installed Python distribution. The GitHub Actions builds use
--no-build-isolation, so build-system requirements are not installed automatically and metadata generation fails withPackageNotFoundError.Validation
git diff --checkpassed