Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ test_e2e.py::test_multi_nodes_eval[Kimi-K2-Thinking-NVFP4-tp16-mmlu] SKIP (https
test_e2e.py::test_multi_nodes_eval[MiniMax-M3-tp16-mmlu] SKIP (https://nvbugs/6373561)
test_e2e.py::test_ptp_quickstart_advanced_deepseek_r1_w4afp8_8gpus[DeepSeek-R1-W4AFP8-DeepSeek-R1/DeepSeek-R1-W4AFP8] SKIP (https://nvbugs/5836830)
unittest/_torch/attention/test_attention_backends.py::test_attention_backend[deepseekv3_mla-gen-bf16-HND-p32-v1] SKIP (https://nvbugs/6507109)
unittest/_torch/misc/test_autotuner.py::test_cutedsl_nvfp4_heuristic_matches_full_sweep SKIP (https://nvbugs/6490028)
unittest/_torch/misc/test_share_tensor.py::TestShareTensor::test_share_tensor_different_dtypes SKIP (https://nvbugs/6418021)
unittest/_torch/modeling -k "modeling_qwen" SKIP (https://nvbugs/6433376)
unittest/_torch/modeling/test_modeling_qwen3_5_vl.py::test_qwen35_dense_vl_resolves_mamba_ssm_cache_dtype SKIP (https://nvbugs/6433376)
Expand Down
6 changes: 5 additions & 1 deletion tests/unittest/_torch/misc/test_autotuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,11 @@ def _cublas_call():
f"({sweep_us:.2f} us) for M={m}, N={n}, K={k}")

# The heuristic CuteDSL kernel should beat cuBLAS or be within tolerance.
cublas_tolerance = 1.05
# This is a cross-library comparison (CuteDSL vs cuBLASLt) at ~28us per call
# profiled over only 20 iterations; run-to-run jitter easily reaches a few
# percent from DVFS, L2 residency, and interleaving with cuBLAS autotune
# warmup, so keep this bound looser than the intra-CuteDSL one above.
cublas_tolerance = 1.10
Comment thread
peaceh-nv marked this conversation as resolved.
assert heuristic_us <= cublas_us * cublas_tolerance, (
f"CuteDSL heuristic kernel ({heuristic_us:.2f} us) is "
f">{cublas_tolerance:.2f}x slower than cuBLAS NVFP4 "
Expand Down
Loading