94057c3d3e
PR Test (NPU) / check-changes (push) Has been cancelled
PR Test (NPU) / pr-gate (push) Has been cancelled
PR Test (NPU) / set-image-config (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-4-npu-a3 (push) Has been cancelled
PR Test (NPU) / stage-b-test-16-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-1-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-2-npu-a3 (push) Has been cancelled
PR Test (Arm64) / pr-gate (push) Has been cancelled
PR Test (Arm64) / check-changes (push) Has been cancelled
PR Test (Arm64) / build-test (push) Has been cancelled
PR Test (sgl-router) / gate (push) Has been cancelled
PR Test (sgl-router) / tier-1 — lint (push) Has been cancelled
PR Test (sgl-router) / tier-2 — build + test (push) Has been cancelled
PR Test (sgl-router) / tier-3 — docker (placeholder) (push) Has been cancelled
PR Test (sgl-router) / tier-3 — k8s integration (push) Has been cancelled
PR Test (sgl-router) / tier-3 — e2e (push) Has been cancelled
PR Test (sgl-router) / finish (push) Has been cancelled
PR Test (NPU) / single-node-poc (map[name:qwen3_6_27b_w8a8_1p_in64k_out1k_50ms runner:linux-aarch64-a3-2 test_case:test/registered/ascend/performance/qwen3_6_27b/test_npu_qwen3_6_27b_w8a8_1p_in64k_out1k_50ms.py test_type:perf]) (push) Has been cancelled
PR Test (NPU) / pr-test-npu-finish (push) Has been cancelled
PR Test (Xeon) / pr-gate (push) Has been cancelled
PR Test (Xeon) / check-changes (push) Has been cancelled
PR Test (Xeon) / build-test (, xeon-gnr, base-b-test-cpu) (push) Has been cancelled
PR Test (XPU) / check-changes (push) Has been cancelled
PR Test (XPU) / pr-gate (push) Has been cancelled
PR Test (XPU) / stage-a-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / wait-for-stage-a (push) Has been cancelled
PR Test (XPU) / stage-b-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / finish (push) Has been cancelled
CI Model Inventory / build-inventory (push) Has been cancelled
Lint / lint (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Compilation Check (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Manual Policy (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Request Processing (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Summary (push) Has been cancelled
PR Test (SMG) / build-wheel (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on windows (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (x86_64 - auto) (push) Has been cancelled
PR Test (SMG) / python-unit-tests (push) Has been cancelled
PR Test (SMG) / unit-tests (push) Has been cancelled
PR Test (SMG) / benchmarks (push) Has been cancelled
PR Test (SMG) / chat-completions (push) Has been cancelled
PR Test (SMG) / chat-completions-4gpu (push) Has been cancelled
PR Test (SMG) / e2e (push) Has been cancelled
PR Test (SMG) / docker-build-test (push) Has been cancelled
PR Test (SMG) / k8s-integration (push) Has been cancelled
PR Test (SMG) / finish (push) Has been cancelled
PR Test (SMG) / summarize-benchmarks (push) Has been cancelled
Release SGLang Model Gateway Docker Image / publish (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Build SDist (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Upload to PyPI (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (aarch64, 12.9, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (x86_64, 12.9, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu129 (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (aarch64, 13.0, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (x86_64, 13.0, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu130 (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 700) (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 720) (push) Has been cancelled
Release SGLang Kernels / release-rocm700 (push) Has been cancelled
Release SGLang Kernels / release-rocm720 (push) Has been cancelled
Release SGLang Kernels / build-musa43 (43, 3.10) (push) Has been cancelled
Release SGLang Kernels / release-musa43 (push) Has been cancelled
255 lines
8.1 KiB
Python
255 lines
8.1 KiB
Python
"""
|
|
Test deterministic custom all-reduce kernel behavior with batch size invariance.
|
|
|
|
This test uses the 1-stage all-reduce kernel which is inherently deterministic
|
|
due to fixed accumulation ordering (each GPU reads all data from all GPUs and
|
|
reduces locally in a fixed order - no atomics, no race conditions).
|
|
|
|
Note: This is NOT a reduce-scatter + all-gather (RS+AG) approach.
|
|
|
|
This test compares:
|
|
1. Deterministic kernel (same batch size)
|
|
2. Deterministic kernel (different batch size)
|
|
|
|
Usage:
|
|
pytest test_amd_deterministic_custom_allreduce.py
|
|
"""
|
|
|
|
import multiprocessing as mp
|
|
import socket
|
|
|
|
import pytest
|
|
import torch
|
|
import torch.distributed as dist
|
|
|
|
from sglang.srt.environ import envs
|
|
from sglang.test.ci.ci_register import register_amd_ci
|
|
|
|
register_amd_ci(est_time=120, stage="sgl-kernel-unit", runner_config="2-gpu-amd")
|
|
|
|
|
|
def get_open_port():
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|
s.bind(("127.0.0.1", 0))
|
|
return s.getsockname()[1]
|
|
|
|
|
|
def worker(world_size, rank, port):
|
|
envs.SGLANG_USE_1STAGE_ALLREDUCE.set("1")
|
|
device = torch.device(f"cuda:{rank}")
|
|
torch.cuda.set_device(device)
|
|
|
|
dist.init_process_group(
|
|
backend="nccl",
|
|
init_method=f"tcp://localhost:{port}",
|
|
rank=rank,
|
|
world_size=world_size,
|
|
)
|
|
|
|
# Try to import and use deterministic kernel
|
|
try:
|
|
from torch.distributed import new_group
|
|
|
|
from sglang.srt.distributed.device_communicators.custom_all_reduce import (
|
|
CustomAllreduce,
|
|
)
|
|
|
|
# Create gloo group for custom AR
|
|
dist.barrier()
|
|
ar_group = new_group(backend="gloo")
|
|
dist.barrier()
|
|
|
|
custom_ar = CustomAllreduce(group=ar_group, device=device)
|
|
|
|
if custom_ar is None or custom_ar.disabled:
|
|
if rank == 0:
|
|
print("✗ Custom AR not available or disabled")
|
|
dist.destroy_process_group()
|
|
return
|
|
except Exception as e:
|
|
if rank == 0:
|
|
print(f"✗ Failed to initialize deterministic kernel: {e}")
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
|
dist.destroy_process_group()
|
|
return
|
|
|
|
num_trials = 10
|
|
|
|
# Matrix sizes similar to real model layers
|
|
# Format: (batch_size, hidden_dim) - typical tensor shape for all-reduce
|
|
BS = 50 # max batch_size (1..BS)
|
|
hidden_dim = 16384 # hidden dimension / intermediate dimension
|
|
|
|
# Different seed per rank - each GPU has DIFFERENT input
|
|
torch.manual_seed(42 + rank)
|
|
|
|
# Create fixed inputs for all trials
|
|
# Single request: (hidden_dim,)
|
|
base_input = torch.randn(hidden_dim, dtype=torch.bfloat16, device=device)
|
|
base_input_rand = torch.randn(hidden_dim, dtype=torch.bfloat16, device=device)
|
|
|
|
# Check if inputs fit in buffer
|
|
# Buffer size is max_size bytes, input size is numel * element_size bytes
|
|
input_size_bytes = base_input.numel() * base_input.element_size()
|
|
if input_size_bytes > custom_ar.max_size and rank == 0:
|
|
print(
|
|
f"Warning: Input size ({input_size_bytes/(1024*1024):.1f} MB) exceeds buffer size ({custom_ar.max_size/(1024*1024):.1f} MB)"
|
|
)
|
|
print(" Using unregistered mode (will copy to buffer)")
|
|
|
|
dist.barrier()
|
|
|
|
# =========================================================================
|
|
# TEST 1: Deterministic kernel (same batch size) - should be DETERMINISTIC
|
|
# =========================================================================
|
|
if rank == 0:
|
|
print(f"\n{'='*70}")
|
|
print("TEST 1: Deterministic kernel (same batch size)")
|
|
print(f"{'='*70}")
|
|
dist.barrier()
|
|
|
|
results_allreduce_only = []
|
|
for trial in range(num_trials):
|
|
# Clone the same input
|
|
inp = base_input.clone()
|
|
|
|
result = custom_ar.custom_all_reduce(inp)
|
|
torch.cuda.synchronize()
|
|
|
|
# Store checksum
|
|
checksum = result.view(-1).sum().item()
|
|
first_vals = result.view(-1)[:5].clone()
|
|
results_allreduce_only.append((checksum, first_vals))
|
|
|
|
if rank == 0:
|
|
print(
|
|
f" Trial {trial+1:2d}: sum={checksum:.6f}, first5={first_vals.tolist()}"
|
|
)
|
|
|
|
# Check determinism
|
|
if rank == 0:
|
|
ref_sum, ref_vals = results_allreduce_only[0]
|
|
all_match = True
|
|
for i, (s, vals) in enumerate(results_allreduce_only[1:], 1):
|
|
if abs(ref_sum - s) > 1e-3 or not torch.allclose(ref_vals, vals, rtol=1e-3):
|
|
all_match = False
|
|
print(f" Trial {i+1} DIFFERS! ref_sum={ref_sum:.6f}, got={s:.6f}")
|
|
|
|
if all_match:
|
|
print(" ✓ DETERMINISTIC KERNEL (fixed BS): DETERMINISTIC (as expected)")
|
|
else:
|
|
print(
|
|
" ✗ DETERMINISTIC KERNEL (fixed BS): NON-DETERMINISTIC (unexpected!)"
|
|
)
|
|
|
|
dist.barrier()
|
|
|
|
# =========================================================================
|
|
# TEST 2: Deterministic kernel (different batch size) - should be DETERMINISTIC
|
|
# [a], [a, x], [a, x, x], ...
|
|
# =========================================================================
|
|
if rank == 0:
|
|
print(f"\n{'='*70}")
|
|
print("TEST 2: Deterministic kernel (different batch size)")
|
|
print("Batches: [a], [a,x], [a,x,x], ...")
|
|
print(f"{'='*70}")
|
|
dist.barrier()
|
|
|
|
results_allreduce_only = {trial: [] for trial in range(num_trials)}
|
|
for trial in range(num_trials):
|
|
for bs in range(1, BS + 1):
|
|
# Construct batch: (batch_size, hidden_dim)
|
|
# First element is base_input, rest are base_input_rand
|
|
batch = torch.stack([base_input] + [base_input_rand] * (bs - 1), dim=0)
|
|
# Shape: (bs, hidden_dim)
|
|
|
|
# Flatten for all-reduce: (bs * hidden_dim,)
|
|
batch_flat = batch.view(-1)
|
|
|
|
result_flat = custom_ar.custom_all_reduce(batch_flat)
|
|
torch.cuda.synchronize()
|
|
|
|
# Reshape back to (bs, hidden_dim)
|
|
batch_out = result_flat.view(bs, hidden_dim)
|
|
|
|
# Only compare output corresponding to first request
|
|
out_first_req = batch_out[0].clone()
|
|
checksum = out_first_req.sum().item()
|
|
first_vals = out_first_req[:5].clone()
|
|
results_allreduce_only[trial].append((bs, checksum, first_vals))
|
|
|
|
if rank == 0:
|
|
print(
|
|
f" Batch size {bs:2d}: sum={checksum:.6f}, first5={first_vals.tolist()}"
|
|
)
|
|
|
|
# Check determinism
|
|
if rank == 0:
|
|
for trial in range(num_trials):
|
|
results = results_allreduce_only[trial]
|
|
|
|
_, ref_sum, ref_vals = results[0]
|
|
all_match = True
|
|
for _, s, vals in results[1:]:
|
|
if abs(ref_sum - s) > 1e-3 or not torch.allclose(
|
|
ref_vals, vals, rtol=1e-3
|
|
):
|
|
all_match = False
|
|
|
|
if all_match:
|
|
print(" ✓ DETERMINISTIC KERNEL (variant BS): DETERMINISTIC")
|
|
else:
|
|
print(" ✗ DETERMINISTIC KERNEL (variant BS): NON-DETERMINISTIC")
|
|
|
|
dist.barrier()
|
|
|
|
dist.destroy_process_group()
|
|
|
|
|
|
def main():
|
|
world_size = 8
|
|
available_gpus = torch.cuda.device_count()
|
|
|
|
print("=" * 70)
|
|
print("Deterministic Kernel All-Reduce Determinism Test")
|
|
print("=" * 70)
|
|
print(f"Available GPUs: {available_gpus}")
|
|
print(f"Using world_size: {world_size}")
|
|
|
|
if available_gpus < world_size:
|
|
print(
|
|
f"WARNING: Only {available_gpus} GPUs available, using {available_gpus} instead"
|
|
)
|
|
world_size = available_gpus
|
|
|
|
if world_size < 2:
|
|
print("ERROR: Need at least 2 GPUs for this test")
|
|
return
|
|
|
|
mp.set_start_method("spawn", force=True)
|
|
port = get_open_port()
|
|
|
|
procs = []
|
|
for rank in range(world_size):
|
|
p = mp.Process(target=worker, args=(world_size, rank, port))
|
|
p.start()
|
|
procs.append(p)
|
|
|
|
for p in procs:
|
|
p.join()
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
not torch.cuda.is_available() or torch.cuda.device_count() < 2,
|
|
reason="Requires at least 2 CUDA GPUs",
|
|
)
|
|
def test_deterministic_custom_allreduce():
|
|
"""Test that deterministic custom all-reduce produces consistent results."""
|
|
main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|