Unverified Commit 0cbc1d2b authored by Woosuk Kwon's avatar Woosuk Kwon Committed by GitHub
Browse files

[Bugfix] Fix pin_lora error in TPU executor (#5760)

parent ff9ddbce
...@@ -82,6 +82,9 @@ class TPUExecutor(ExecutorBase): ...@@ -82,6 +82,9 @@ class TPUExecutor(ExecutorBase):
def remove_lora(self, lora_id: int) -> bool: def remove_lora(self, lora_id: int) -> bool:
raise NotImplementedError("LoRA is not implemented for TPU backend.") raise NotImplementedError("LoRA is not implemented for TPU backend.")
def pin_lora(self, lora_id: int) -> bool:
raise NotImplementedError("LoRA is not implemented for TPU backend.")
def list_loras(self) -> Set[int]: def list_loras(self) -> Set[int]:
raise NotImplementedError("LoRA is not implemented for TPU backend.") raise NotImplementedError("LoRA is not implemented for TPU backend.")
......
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