Skip to content
Merged
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
7 changes: 7 additions & 0 deletions examples/auto_deploy/llmc/create_standalone_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,13 @@
"test_triton_mla_op.py",
# Require TRT-LLM ops (noaux_tc_op) — split from test_export.py
"test_export_glm4_moe_lite.py",
# fuse_fp8_linear / fuse_nvfp4_linear / fuse_finegrained_fp8_linear transforms
# live in fuse_quant.py which imports tensorrt_llm.quantization.utils.fp8_utils;
# the module is silently skipped in standalone so the transforms aren't registered.
"test_quant_fusion.py",
# Imports utils.util.skip_pre_blackwell (not shipped in standalone) and exercises
# fuse_finegrained_fp8_swiglu which depends on TRT-LLM runtime.
"test_finegrained_fp8_swiglu.py",
}

# Import path rewrite: old -> new (applied to test files only).
Expand Down
1 change: 0 additions & 1 deletion tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,6 @@ unittest/_torch/thop/serial/test_moe.py::TestMoeFp4::test_no_autotune[use_score_
unittest/_torch/thop/serial/test_moe.py::TestMoeFp4::test_no_autotune[use_score_as_input-RoutingRenormalize_qwen_next-swiglu-1024-1024-150] SKIP (https://nvbugs/5908070)
unittest/_torch/thop/serial/test_moe.py::TestMoeFp4::test_no_autotune[use_score_as_input-RoutingRenormalize_topk_4-swiglu-1024-1024-150] SKIP (https://nvbugs/5908070)
unittest/auto_deploy/singlegpu/smoke/test_ad_build_small_single.py::test_build_ad[deepseek-ai/DeepSeek-V3-llm_extra_args10] SKIP (https://nvbugs/5888827)
unittest/auto_deploy/singlegpu/transformations SKIP (https://nvbugs/6160629)
unittest/auto_deploy/singlegpu/transformations/library/test_gemm_fusion_trtllm.py::test_fuse_qkv_passthrough_with_rope SKIP (https://nvbugs/6160248)
unittest/auto_deploy/singlegpu/transformations/library/test_mrope_delta_cache.py::test_qwen_registry_configs_explicitly_enable_mrope_delta_cache SKIP (https://nvbugs/6078421)
unittest/auto_deploy/standalone SKIP (https://nvbugs/6160629)
Expand Down
Loading