Skip to content

Commit

Permalink
add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
kzawora-intel committed Sep 20, 2024
1 parent f4d2097 commit 9f8b8e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions vllm/engine/arg_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"openvino",
"tpu",
"xpu",
"hpu",
]


Expand Down
4 changes: 0 additions & 4 deletions vllm/platforms/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,10 @@ def is_rocm(self) -> bool:
def is_tpu(self) -> bool:
return self._enum == PlatformEnum.TPU

<<<<<<< HEAD
def is_hpu(self) -> bool:
return self._enum == PlatformEnum.HPU

@staticmethod
def get_device_capability(device_id: int = 0) -> Tuple[int, int]:
=======
def is_cpu(self) -> bool:
return self._enum == PlatformEnum.CPU

Expand Down Expand Up @@ -89,7 +86,6 @@ def has_device_capability(

@classmethod
def get_device_name(cls, device_id: int = 0) -> str:
>>>>>>> upstream/main
raise NotImplementedError

@classmethod
Expand Down

0 comments on commit 9f8b8e7

Please sign in to comment.