Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
1a36287b
Unverified
Commit
1a36287b
authored
Aug 19, 2024
by
Kunshang Ji
Committed by
GitHub
Aug 18, 2024
Browse files
[Bugfix] Fix xpu build (#7644)
parent
f710fb52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
setup.py
setup.py
+1
-1
No files found.
setup.py
View file @
1a36287b
...
...
@@ -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
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment