You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/task_test_blackwell_kernels.sh
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -36,16 +36,14 @@ if [ "$DRY_RUN" != "true" ]; then
36
36
echo"Installing flashinfer-cubin from ${DIST_CUBIN_DIR} ..."
37
37
pip install -q "${DIST_CUBIN_DIR}"/*.whl
38
38
else
39
-
echo"ERROR: flashinfer-cubin wheel not found in ${DIST_CUBIN_DIR}. Ensure the CI build stage produced the artifact.">&2
40
-
exit 1
39
+
echo"WARNING: flashinfer-cubin wheel not found in ${DIST_CUBIN_DIR}. Continuing without precompiled cubins; kernels may JIT-compile during tests.">&2
41
40
fi
42
41
43
42
if [ -d"${DIST_JIT_CACHE_DIR}" ] && ls "${DIST_JIT_CACHE_DIR}"/*.whl >/dev/null 2>&1;then
44
43
echo"Installing flashinfer-jit-cache from ${DIST_JIT_CACHE_DIR} ..."
45
44
pip install -q "${DIST_JIT_CACHE_DIR}"/*.whl
46
45
else
47
-
echo"ERROR: flashinfer-jit-cache wheel not found in ${DIST_JIT_CACHE_DIR} for ${CUDA_VERSION}. Ensure the CI build stage produced the artifact.">&2
48
-
exit 1
46
+
echo"WARNING: flashinfer-jit-cache wheel not found in ${DIST_JIT_CACHE_DIR} for ${CUDA_VERSION}. Continuing without precompiled cache; kernels may JIT-compile during tests.">&2
0 commit comments