We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27e1f4 commit 68c0961Copy full SHA for 68c0961
.github/workflows/test-wheel-linux.yml
@@ -75,7 +75,8 @@ jobs:
75
fi
76
77
if [[ "${{ inputs.python-version }}" == "3.12" && "${{ inputs.local-ctk }}" == 1 ]]; then
78
- COMPUTE_SANITIZER=${CUDA_HOME}/bin/compute-sanitizer
+ # Use single quotes to delay expansion of $CUDA_HOME until after mini-CTK step is complete
79
+ COMPUTE_SANITIZER='${CUDA_HOME}/bin/compute-sanitizer'
80
COMPUTE_SANITIZER_VERSION=$(${COMPUTE_SANITIZER} --version | grep -Eo "[0-9]{4}\.[0-9]\.[0-9]" | sed -e 's/\.//g')
81
SANITIZER_CMD="${COMPUTE_SANITIZER} --target-processes=all --launch-timeout=0 --tool=memcheck --error-exitcode=1"
82
if [[ "$COMPUTE_SANITIZER_VERSION" -ge 202111 ]]; then
0 commit comments