mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-06-03 20:49:08 +08:00
[Bugfix] Fix xpu build (#7644)
This commit is contained in:
parent
f710fb5265
commit
1a36287b89
2
setup.py
2
setup.py
@ -279,7 +279,7 @@ def _build_custom_ops() -> bool:
|
|||||||
|
|
||||||
|
|
||||||
def _build_core_ext() -> bool:
|
def _build_core_ext() -> bool:
|
||||||
return not _is_neuron() and not _is_tpu() and not _is_openvino()
|
return not (_is_neuron() or _is_tpu() or _is_openvino() or _is_xpu())
|
||||||
|
|
||||||
|
|
||||||
def get_hipcc_rocm_version():
|
def get_hipcc_rocm_version():
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user