Skip to content

Commit 4d36620

Browse files
committed
Fix Nsight Streamer restartability workaround.
1 parent 81848d8 commit 4d36620

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

brev/nsight-start.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ done
2020

2121
# Workaround: The Nsight Streamer container isn't restartable because it unconditionally creates
2222
# a symlink every time its start, which fails if the symlink already exists.
23-
if test -h "/usr/local/cuda-12.8/targets/x86_64-linux/lib/libnvrtc.so.12"; then
24-
rm /usr/local/cuda-12.8/targets/x86_64-linux/lib/libnvrtc.so.12
23+
if test -h /usr/lib/x86_64-linux-gnu/libnvrtc.so; then
24+
rm /usr/lib/x86_64-linux-gnu/libnvrtc.so
2525
fi
2626

2727
source /setup/entrypoint.sh "$@"

0 commit comments

Comments
 (0)