forked from mesolitica/vllm-whisper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Core] enable out-of-tree model register (vllm-project#3871)
- Loading branch information
1 parent
9e462d8
commit 1a3a0b9
Showing
6 changed files
with
148 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import multiprocessing | ||
import sys | ||
import time | ||
|
||
import torch | ||
from openai import OpenAI, OpenAIError | ||
|
||
from vllm import ModelRegistry | ||
from vllm.model_executor.models.opt import OPTForCausalLM | ||
from vllm.model_executor.sampling_metadata import SamplingMetadata | ||
from vllm.utils import get_open_port | ||
|
||
|
||
class MyOPTForCausalLM(OPTForCausalLM): | ||
|
||
def compute_logits(self, hidden_states: torch.Tensor, | ||
sampling_metadata: SamplingMetadata) -> torch.Tensor: | ||
# this dummy model always predicts the first token | ||
logits = super().compute_logits(hidden_states, sampling_metadata) | ||
logits.zero_() | ||
logits[:, 0] += 1.0 | ||
return logits | ||
|
||
|
||
def server_function(port): | ||
# register our dummy model | ||
ModelRegistry.register_model("OPTForCausalLM", MyOPTForCausalLM) | ||
sys.argv = ["placeholder.py"] + \ | ||
("--model facebook/opt-125m --dtype" | ||
f" float32 --api-key token-abc123 --port {port}").split() | ||
import runpy | ||
runpy.run_module('vllm.entrypoints.openai.api_server', run_name='__main__') | ||
|
||
|
||
def test_oot_registration_for_api_server(): | ||
port = get_open_port() | ||
server = multiprocessing.Process(target=server_function, args=(port, )) | ||
server.start() | ||
client = OpenAI( | ||
base_url=f"http://localhost:{port}/v1", | ||
api_key="token-abc123", | ||
) | ||
while True: | ||
try: | ||
completion = client.chat.completions.create( | ||
model="facebook/opt-125m", | ||
messages=[{ | ||
"role": "system", | ||
"content": "You are a helpful assistant." | ||
}, { | ||
"role": "user", | ||
"content": "Hello!" | ||
}], | ||
temperature=0, | ||
) | ||
break | ||
except OpenAIError as e: | ||
if "Connection error" in str(e): | ||
time.sleep(3) | ||
else: | ||
raise e | ||
server.kill() | ||
generated_text = completion.choices[0].message.content | ||
# make sure only the first token is generated | ||
rest = generated_text.replace("<s>", "") | ||
assert rest == "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import torch | ||
|
||
from vllm import LLM, ModelRegistry, SamplingParams | ||
from vllm.model_executor.models.opt import OPTForCausalLM | ||
from vllm.model_executor.sampling_metadata import SamplingMetadata | ||
|
||
|
||
class MyOPTForCausalLM(OPTForCausalLM): | ||
|
||
def compute_logits(self, hidden_states: torch.Tensor, | ||
sampling_metadata: SamplingMetadata) -> torch.Tensor: | ||
# this dummy model always predicts the first token | ||
logits = super().compute_logits(hidden_states, sampling_metadata) | ||
logits.zero_() | ||
logits[:, 0] += 1.0 | ||
return logits | ||
|
||
|
||
def test_oot_registration(): | ||
# register our dummy model | ||
ModelRegistry.register_model("OPTForCausalLM", MyOPTForCausalLM) | ||
prompts = ["Hello, my name is", "The text does not matter"] | ||
sampling_params = SamplingParams(temperature=0) | ||
llm = LLM(model="facebook/opt-125m") | ||
first_token = llm.get_tokenizer().decode(0) | ||
outputs = llm.generate(prompts, sampling_params) | ||
|
||
for output in outputs: | ||
generated_text = output.outputs[0].text | ||
# make sure only the first token is generated | ||
rest = generated_text.replace(first_token, "") | ||
assert rest == "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters