fix #66/docs: add Windows & Blackwell troubleshooting#67
Merged
bmhowe23 merged 2 commits intoApr 17, 2026
Conversation
…d error Address workarounds reported in NVIDIA#66 (RTX 5080 + Windows success report): - README: add Blackwell GPU note (cu128 nightly required for SM 12.0) - README: add Windows section (Triton unsupported, TORCH_COMPILE_DISABLE, PYTHONPATH) - README: add pre-trained model not found guidance with explicit path option - run.py: improve find_best_model FileNotFoundError with actionable hint Closes NVIDIA#66 Signed-off-by: kvmto <kmato@nvidia.com>
bmhowe23
approved these changes
Apr 17, 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
Addresses the workarounds reported in #66 (RTX 5080 + 9800X3D on Windows — distance 13 success):
cu124wheels lack SM 12.0 kernels; documents thecu128nightly install commandtorch.compilefails; documentsTORCH_COMPILE_DISABLE=1/PREDECODER_TORCH_COMPILE=0and thePYTHONPATH=coderequirement when running outside the launch scriptsfind_best_modelsearch order (best_model/→models/) and shows how to point to an explicit.ptpath so users don't have to manually rename weightsfind_best_modelnow prints which file patterns it expects and a hint to setmodel_checkpoint_file, instead of a bareFileNotFoundErrorTest plan
find_best_modelraises the improved error when no.ptfiles are presentCloses Issue #66