Compare commits

...
Author SHA1 Message Date
Nick HillandGitHub 95ef052724 Merge branch 'main' into mrv2-ci-test 2026-03-14 10:29:16 -07:00
Nick Hill 47bbcbd7ef [WIP] CI test run with Model Runner V2
Expected to fail many tests

Signed-off-by: Nick Hill <nickhill123@gmail.com>
2026-02-27 14:48:27 -08:00
+2 -2
View File
@@ -232,7 +232,7 @@ if TYPE_CHECKING:
VLLM_DISABLE_SHARED_EXPERTS_STREAM: bool = False
VLLM_SHARED_EXPERTS_STREAM_TOKEN_THRESHOLD: int = 256
VLLM_COMPILE_CACHE_SAVE_FORMAT: Literal["binary", "unpacked"] = "binary"
VLLM_USE_V2_MODEL_RUNNER: bool = False
VLLM_USE_V2_MODEL_RUNNER: bool = True
VLLM_LOG_MODEL_INSPECTION: bool = False
VLLM_DEBUG_MFU_METRICS: bool = False
VLLM_WEIGHT_OFFLOADING_DISABLE_PIN_MEMORY: bool = False
@@ -1578,7 +1578,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
),
# Flag to enable v2 model runner.
"VLLM_USE_V2_MODEL_RUNNER": lambda: bool(
int(os.getenv("VLLM_USE_V2_MODEL_RUNNER", "0"))
int(os.getenv("VLLM_USE_V2_MODEL_RUNNER", "1"))
),
# Log model inspection after loading.
# If enabled, logs a transformers-style hierarchical view of the model