Skip to content

Commit

Permalink
[Bugfix] Fix xpu build (vllm-project#7644)
Browse files Browse the repository at this point in the history
  • Loading branch information
jikunshang authored Aug 19, 2024
1 parent f710fb5 commit 1a36287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def _build_custom_ops() -> 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():
Expand Down

0 comments on commit 1a36287

Please sign in to comment.