Unverified Commit 1a36287b authored by Kunshang Ji's avatar Kunshang Ji Committed by GitHub
Browse files

[Bugfix] Fix xpu build (#7644)

parent f710fb52
...@@ -279,7 +279,7 @@ def _build_custom_ops() -> bool: ...@@ -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():
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment