Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_yaml_compile_backend_disables_default_piecewise(tmp_path):
assert args.transforms["compile_model"]["piecewise_enabled"] is False


def test_speculative_flashinfer_fallback_disables_piecewise():
def test_speculative_flashinfer_torch_simple_disables_piecewise():
from tensorrt_llm.llmapi import EagleDecodingConfig

spec_config = EagleDecodingConfig(
Expand All @@ -108,6 +108,7 @@ def test_speculative_flashinfer_fallback_disables_piecewise():
model="test-model",
attn_backend="flashinfer",
speculative_config=spec_config,
compile_backend="torch-simple",
)

assert args.compile_backend == "torch-simple"
Expand Down
Loading