fix(cuda.core): xfail cuda-gdb test when GPU debugging is unavailable - #2707
Open
lijinf2 wants to merge 1 commit into
Open
fix(cuda.core): xfail cuda-gdb test when GPU debugging is unavailable#2707lijinf2 wants to merge 1 commit into
lijinf2 wants to merge 1 commit into
Conversation
A nightly test machine has cuda-gdb but no libcudadebugger.so.1, so break_on_launch never fires and `list` has no device frame showing the NVRTC temp .cu. Closes NVIDIA#2693
Contributor
Contributor
Author
|
/ok to test a66e275 |
|
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.
A nightly test machine has cuda-gdb but no libcudadebugger.so.1, so break_on_launch never fires and
listhas no device frame showing the NVRTC temp .cu.Description
closes #2693
test_cuda_gdb_shows_nvrtc_debug_source_lines, added in #2679, fails on the a nightly machine.cuda-gdbis onPATHso the existing guard passes, but the debugger back-end is missing:This widens the guard to recognize
Debugging is not possibleand reportsxfailinstead ofskip.Not a regression in #2679: the three
test_nvrtc_debug_*tests pass in the same run, so source materialization works on that board.Checklist