[platforms] restore xpu check for parallel config (#10479)
Signed-off-by: youkaichao <youkaichao@gmail.com>
This commit is contained in:
parent
63f1fde277
commit
772a66732d
@ -55,3 +55,13 @@ class XPUPlatform(Platform):
|
|||||||
"CUDA graph is not supported on XPU, fallback to the eager "
|
"CUDA graph is not supported on XPU, fallback to the eager "
|
||||||
"mode.")
|
"mode.")
|
||||||
model_config.enforce_eager = True
|
model_config.enforce_eager = True
|
||||||
|
|
||||||
|
# check and update parallel config
|
||||||
|
parallel_config = vllm_config.parallel_config
|
||||||
|
if (parallel_config.distributed_executor_backend is not None
|
||||||
|
and parallel_config.distributed_executor_backend != "ray"):
|
||||||
|
logger.warning(
|
||||||
|
"%s is not supported on XPU, fallback to ray distributed"
|
||||||
|
" executor backend.",
|
||||||
|
parallel_config.distributed_executor_backend)
|
||||||
|
parallel_config.distributed_executor_backend = "ray"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user