File size: 7,001 Bytes
2d8a802 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
#!/usr/bin/env bash
# Debug script 4: MegaBlocks-specific build debugging
set -euo pipefail
echo "=== MegaBlocks Build Debug Script 4 ==="
echo "Testing MegaBlocks-specific compilation components"
echo
# Set ROCm environment variables
export ROCM_PATH="${ROCM_PATH:-/opt/rocm-7.0.1}"
export ROCM_HOME="${ROCM_HOME:-$ROCM_PATH}"
export HIP_PATH="${HIP_PATH:-$ROCM_PATH}"
export HIP_HOME="${HIP_HOME:-$ROCM_PATH}"
export PATH="$ROCM_HOME/bin:$PATH"
export TORCH_HIP_ARCH_LIST="${TORCH_HIP_ARCH_LIST:-gfx942}"
export HSA_OVERRIDE_GFX_VERSION="${HSA_OVERRIDE_GFX_VERSION:-gfx942}"
export TORCH_EXTENSIONS_DIR="${TORCH_EXTENSIONS_DIR:-$PWD/.torch_extensions_debug}"
echo "Working directory: $(pwd)"
echo
echo "=== Checking MegaBlocks Source Files ==="
echo "Verifying all source files exist:"
sources=(
"torch-ext/torch_binding.cpp"
"csrc/new_cumsum.cu"
"csrc/new_histogram.cu"
"csrc/new_indices.cu"
"csrc/new_replicate.cu"
"csrc/new_sort.cu"
"csrc/grouped_gemm/grouped_gemm.cu"
)
all_exist=true
for src in "${sources[@]}"; do
if [ -f "$src" ]; then
echo "β $src exists ($(wc -l < "$src") lines)"
else
echo "β $src missing"
all_exist=false
fi
done
if [ "$all_exist" = false ]; then
echo "Cannot proceed - missing source files"
exit 1
fi
echo
echo "=== Checking Include Directories ==="
if [ -d "csrc" ]; then
echo "β csrc include directory exists"
echo "Headers in csrc/:"
find csrc -name "*.h" -o -name "*.hpp" | head -10
else
echo "β csrc include directory missing"
fi
echo
echo "=== Testing Individual Source Compilation ==="
# Test compiling each .cu file individually
for src in csrc/*.cu; do
if [ -f "$src" ]; then
echo "Testing compilation of $(basename "$src")..."
if timeout 60 hipcc -c "$src" -o "/tmp/$(basename "$src" .cu).o" \
--amdgpu-target=gfx942 \
-I./csrc \
-I"$(python3 -c 'import torch; print(torch.utils.cpp_extension.include_paths()[0])')" \
-std=c++17 \
-O3 \
-fPIC; then
echo "β $(basename "$src") compiled successfully"
else
echo "β $(basename "$src") compilation failed"
fi
fi
done
echo
echo "=== Testing grouped_gemm.cu Specifically ==="
echo "This is often the most complex kernel..."
if timeout 120 hipcc -c csrc/grouped_gemm/grouped_gemm.cu -o /tmp/grouped_gemm.o \
--amdgpu-target=gfx942 \
-I./csrc \
-I"$(python3 -c 'import torch; print(torch.utils.cpp_extension.include_paths()[0])')" \
-std=c++17 \
-O3 \
-fPIC \
-lhipblaslt \
-v; then
echo "β grouped_gemm.cu compiled successfully"
else
echo "β grouped_gemm.cu compilation failed"
fi
echo
echo "=== Testing torch_binding.cpp ==="
if timeout 60 hipcc -c torch-ext/torch_binding.cpp -o /tmp/torch_binding.o \
-I./csrc \
-I"$(python3 -c 'import torch; print(torch.utils.cpp_extension.include_paths()[0])')" \
-std=c++17 \
-O3 \
-fPIC; then
echo "β torch_binding.cpp compiled successfully"
else
echo "β torch_binding.cpp compilation failed"
fi
echo
echo "=== Testing Incremental PyTorch Extension Build ==="
cat > debug_build.py << 'EOF'
import os
import pathlib
import sys
import signal
import time
from torch.utils.cpp_extension import load
def timeout_handler(signum, frame):
print("Build timed out - this indicates a hanging issue")
sys.exit(1)
# Set up timeout
signal.signal(signal.SIGALRM, timeout_handler)
signal.alarm(180) # 3 minute timeout
repo = pathlib.Path(".").resolve()
os.environ.setdefault("TORCH_EXTENSIONS_DIR", str(repo / ".torch_extensions_debug"))
print("=== Testing with Single Source File ===")
try:
print("Building with just new_cumsum.cu...")
mod = load(
name="_megablocks_debug_single",
sources=["csrc/new_cumsum.cu"],
extra_include_paths=["csrc"],
extra_cflags=["-O3", "-std=c++17"],
extra_cuda_cflags=["-O3"],
verbose=True,
is_python_module=False,
)
print("β Single source build successful")
except Exception as e:
print(f"β Single source build failed: {e}")
print("\n=== Testing with Two Source Files ===")
try:
print("Building with new_cumsum.cu and new_histogram.cu...")
mod = load(
name="_megablocks_debug_double",
sources=["csrc/new_cumsum.cu", "csrc/new_histogram.cu"],
extra_include_paths=["csrc"],
extra_cflags=["-O3", "-std=c++17"],
extra_cuda_cflags=["-O3"],
verbose=True,
is_python_module=False,
)
print("β Double source build successful")
except Exception as e:
print(f"β Double source build failed: {e}")
print("\n=== Testing with grouped_gemm.cu Only ===")
try:
print("Building with just grouped_gemm.cu (most complex)...")
mod = load(
name="_megablocks_debug_gemm",
sources=["csrc/grouped_gemm/grouped_gemm.cu"],
extra_include_paths=["csrc"],
extra_cflags=["-O3", "-std=c++17"],
extra_cuda_cflags=["-O3"],
extra_ldflags=["-lhipblaslt"],
verbose=True,
is_python_module=False,
)
print("β grouped_gemm build successful")
except Exception as e:
print(f"β grouped_gemm build failed: {e}")
signal.alarm(0) # Cancel timeout
EOF
echo "Running incremental build test..."
python3 debug_build.py
echo
echo "=== Testing Full Build with Timeout ==="
cat > debug_full_build.py << 'EOF'
import os
import pathlib
import sys
import signal
from torch.utils.cpp_extension import load
def timeout_handler(signum, frame):
print("Full build timed out - this confirms the hanging issue")
sys.exit(124) # timeout exit code
# Set up 5 minute timeout
signal.signal(signal.SIGALRM, timeout_handler)
signal.alarm(300)
repo = pathlib.Path(".").resolve()
os.environ.setdefault("TORCH_EXTENSIONS_DIR", str(repo / ".torch_extensions_debug"))
sources = [
"torch-ext/torch_binding.cpp",
"csrc/new_cumsum.cu",
"csrc/new_histogram.cu",
"csrc/new_indices.cu",
"csrc/new_replicate.cu",
"csrc/new_sort.cu",
"csrc/grouped_gemm/grouped_gemm.cu",
]
print("=== Attempting Full MegaBlocks Build ===")
print("This mimics the exact build.py process...")
print("Sources:", sources)
try:
mod = load(
name="_megablocks_debug_full",
sources=sources,
extra_include_paths=["csrc"],
extra_cflags=["-O3", "-std=c++17"],
extra_cuda_cflags=["-O3"],
extra_ldflags=["-lhipblaslt"],
verbose=True,
is_python_module=False,
)
print("β Full build successful!")
print("Built:", mod)
except Exception as e:
print(f"β Full build failed: {e}")
import traceback
traceback.print_exc()
signal.alarm(0)
EOF
echo "Running full build test (with timeout)..."
python3 debug_full_build.py
echo
echo "=== Cleanup ==="
rm -f /tmp/*.o
rm -f debug_build.py debug_full_build.py
echo
echo "=== Debug Script 4 Complete ===" |