Skip to content

Commit 56acf84

Browse files
committed
add debug statements for pipeline debugging
1 parent 4595902 commit 56acf84

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

scripts/task_test_blackwell_kernels.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,20 @@ if [ "$DRY_RUN" != "true" ]; then
5656
DIST_CUBIN_DIR="../dist/${CUDA_STREAM}/${JIT_ARCH_EFFECTIVE}/cubin"
5757
DIST_JIT_CACHE_DIR="../dist/${CUDA_STREAM}/${JIT_ARCH_EFFECTIVE}/jit-cache"
5858

59+
echo "==== Debug: listing artifact directories ===="
60+
echo "Tree under ../dist:"
61+
(cd .. && ls -al dist) || true
62+
echo ""
63+
echo "Tree under ../dist/${CUDA_STREAM}:"
64+
(cd .. && ls -al "dist/${CUDA_STREAM}") || true
65+
echo ""
66+
echo "Contents of ${DIST_CUBIN_DIR}:"
67+
ls -al "${DIST_CUBIN_DIR}" || true
68+
echo ""
69+
echo "Contents of ${DIST_JIT_CACHE_DIR}:"
70+
ls -al "${DIST_JIT_CACHE_DIR}" || true
71+
echo "============================================="
72+
5973
if [ -d "${DIST_CUBIN_DIR}" ] && ls "${DIST_CUBIN_DIR}"/*.whl >/dev/null 2>&1; then
6074
echo "Installing flashinfer-cubin from ${DIST_CUBIN_DIR} ..."
6175
pip install -q "${DIST_CUBIN_DIR}"/*.whl

0 commit comments

Comments
 (0)