Scheduled removal of CompilationConfig.use_inductor (#29323)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2025-11-25 12:55:42 +00:00
committed by GitHub
parent bf0c75cd4f
commit 51fc9e017a
4 changed files with 13 additions and 41 deletions

View File

@@ -166,7 +166,7 @@ def test_dict_args(parser):
"--hf-overrides.key2.key4",
"val3",
# Test compile config and compilation mode
"-O.use_inductor=true",
"-O.use_inductor_graph_partition=true",
"-O.backend",
"custom",
"-O1",
@@ -219,7 +219,7 @@ def test_dict_args(parser):
}
assert parsed_args.compilation_config == {
"mode": 1,
"use_inductor": True,
"use_inductor_graph_partition": True,
"backend": "custom",
"custom_ops": ["-quant_fp8", "+silu_mul", "-rms_norm"],
}