sglangv0.5.2 & support Qwen3-Next-80B-A3B-Instruct
This commit is contained in:
1
benchmark/tip_suggestion/.gitignore
vendored
Normal file
1
benchmark/tip_suggestion/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
!topic.jsonl
|
||||
33
benchmark/tip_suggestion/README.md
Normal file
33
benchmark/tip_suggestion/README.md
Normal file
@@ -0,0 +1,33 @@
|
||||
## Run benchmark
|
||||
|
||||
### Benchmark sglang
|
||||
```
|
||||
python -m sglang.launch_server --model-path meta-llama/Llama-2-7b-chat-hf --port 30000
|
||||
```
|
||||
|
||||
```
|
||||
python3 bench_sglang.py --num-questions 64
|
||||
python3 bench_sglang.py --num-questions 32 --parallel 1
|
||||
```
|
||||
|
||||
|
||||
### Benchmark vllm
|
||||
```
|
||||
python3 -m vllm.entrypoints.api_server --tokenizer-mode auto --model meta-llama/Llama-2-7b-chat-hf --disable-log-requests --port 21000
|
||||
```
|
||||
|
||||
```
|
||||
python3 bench_other.py --backend vllm --num-questions 64
|
||||
```
|
||||
|
||||
|
||||
### Benchmark guidance
|
||||
```
|
||||
python3 bench_other.py --backend guidance --num-questions 32 --parallel 1 --n-ctx 4096 --model-path path/to/gguf
|
||||
```
|
||||
|
||||
### Benchmark lmql
|
||||
|
||||
```
|
||||
python3 bench_other.py --backend lmql --num-questions 32 --parallel 1
|
||||
```
|
||||
133
benchmark/tip_suggestion/bench_other.py
Normal file
133
benchmark/tip_suggestion/bench_other.py
Normal file
@@ -0,0 +1,133 @@
|
||||
import argparse
|
||||
import json
|
||||
import time
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
from functools import partial
|
||||
|
||||
from tqdm import tqdm
|
||||
|
||||
from sglang.test.test_utils import add_common_other_args_and_parse, get_call_generate
|
||||
from sglang.utils import dump_state_text, read_jsonl
|
||||
|
||||
number = 5
|
||||
|
||||
|
||||
def expand_tip(topic, tip, generate):
|
||||
s = (
|
||||
"""Please expand a tip for a topic into a detailed paragraph.
|
||||
|
||||
Topic: staying healthy
|
||||
Tip: Regular Exercise
|
||||
Paragraph: Incorporate physical activity into your daily routine. This doesn't necessarily mean intense gym workouts; it can be as simple as walking, cycling, or yoga. Regular exercise helps in maintaining a healthy weight, improves cardiovascular health, boosts mental health, and can enhance cognitive function, which is crucial for fields that require intense intellectual engagement.
|
||||
|
||||
Topic: building a campfire
|
||||
Tip: Choose the Right Location
|
||||
Paragraph: Always build your campfire in a safe spot. This means selecting a location that's away from trees, bushes, and other flammable materials. Ideally, use a fire ring if available. If you're building a fire pit, it should be on bare soil or on a bed of stones, not on grass or near roots which can catch fire underground. Make sure the area above is clear of low-hanging branches.
|
||||
|
||||
Topic: writing a blog post
|
||||
Tip: structure your content effectively
|
||||
Paragraph: A well-structured post is easier to read and more enjoyable. Start with an engaging introduction that hooks the reader and clearly states the purpose of your post. Use headings and subheadings to break up the text and guide readers through your content. Bullet points and numbered lists can make information more digestible. Ensure each paragraph flows logically into the next, and conclude with a summary or call-to-action that encourages reader engagement.
|
||||
|
||||
Topic: """
|
||||
+ topic
|
||||
+ "\nTip: "
|
||||
+ tip
|
||||
+ "\nParagraph:"
|
||||
)
|
||||
return generate(s, max_tokens=128, stop=["\n\n"])
|
||||
|
||||
|
||||
def suggest_tips(topic, generate):
|
||||
s = "Please act as a helpful assistant. Your job is to provide users with useful tips on a specific topic.\n"
|
||||
s += "USER: Give some tips for " + topic + ".\n"
|
||||
s += (
|
||||
"ASSISTANT: Okay. Here are "
|
||||
+ str(number)
|
||||
+ " concise tips, each under 8 words:\n"
|
||||
)
|
||||
|
||||
tips = []
|
||||
for i in range(1, 1 + number):
|
||||
s += f"{i}."
|
||||
tip = generate(s, max_tokens=24, stop=[".", "\n"])
|
||||
s += tip + ".\n"
|
||||
tips.append(tip)
|
||||
|
||||
paragraphs = [expand_tip(topic, tip, generate=generate) for tip in tips]
|
||||
|
||||
for i in range(1, 1 + number):
|
||||
s += f"Tip {i}:" + paragraphs[i - 1] + "\n"
|
||||
return s
|
||||
|
||||
|
||||
def main(args):
|
||||
lines = read_jsonl(args.data_path)[: args.num_questions]
|
||||
states = [None] * len(lines)
|
||||
|
||||
# Select backend
|
||||
call_generate = partial(get_call_generate(args), temperature=0)
|
||||
|
||||
# Run requests
|
||||
tic = time.perf_counter()
|
||||
if args.backend != "lmql":
|
||||
|
||||
def get_one_answer(i):
|
||||
states[i] = suggest_tips(lines[i]["topic"], call_generate)
|
||||
|
||||
if args.parallel == 1:
|
||||
for i in tqdm(range(len(lines))):
|
||||
get_one_answer(i)
|
||||
else:
|
||||
with ThreadPoolExecutor(args.parallel) as executor:
|
||||
list(
|
||||
tqdm(
|
||||
executor.map(get_one_answer, list(range(len(lines)))),
|
||||
total=len(lines),
|
||||
)
|
||||
)
|
||||
|
||||
else:
|
||||
import asyncio
|
||||
|
||||
from lmql_funcs import suggest_tips_async
|
||||
|
||||
async def get_one_answer_async(i):
|
||||
states[i] = await suggest_tips_async(lines[i]["topic"], call_generate)
|
||||
|
||||
batches = []
|
||||
for i in range(0, len(lines), args.parallel):
|
||||
batches.append(list(range(i, min(i + args.parallel, len(lines)))))
|
||||
loop = asyncio.get_event_loop()
|
||||
for batch in tqdm(batches):
|
||||
loop.run_until_complete(
|
||||
asyncio.gather(*[get_one_answer_async(i) for i in batch])
|
||||
)
|
||||
latency = time.perf_counter() - tic
|
||||
|
||||
# Compute accuracy
|
||||
print(f"Latency: {latency:.3f}")
|
||||
|
||||
# Write results
|
||||
dump_state_text(f"tmp_output_{args.backend}.txt", states)
|
||||
|
||||
with open(args.result_file, "a") as fout:
|
||||
value = {
|
||||
"task": "tip_suggestion",
|
||||
"backend": args.backend,
|
||||
"num_gpus": 1,
|
||||
"latency": round(latency, 3),
|
||||
"num_requests": args.num_questions,
|
||||
"other": {
|
||||
"num_questions": args.num_questions,
|
||||
"parallel": args.parallel,
|
||||
},
|
||||
}
|
||||
fout.write(json.dumps(value) + "\n")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--data-path", type=str, default="topic.jsonl")
|
||||
parser.add_argument("--num-questions", type=int, default=100)
|
||||
args = add_common_other_args_and_parse(parser)
|
||||
main(args)
|
||||
100
benchmark/tip_suggestion/bench_sglang.py
Normal file
100
benchmark/tip_suggestion/bench_sglang.py
Normal file
@@ -0,0 +1,100 @@
|
||||
import argparse
|
||||
import json
|
||||
import time
|
||||
|
||||
import sglang as sgl
|
||||
from sglang.test.test_utils import (
|
||||
add_common_sglang_args_and_parse,
|
||||
select_sglang_backend,
|
||||
)
|
||||
from sglang.utils import dump_state_text, read_jsonl
|
||||
|
||||
number = 5
|
||||
|
||||
|
||||
@sgl.function
|
||||
def expand_tip(s, topic, tip):
|
||||
s += (
|
||||
"""Please expand a tip for a topic into a detailed paragraph.
|
||||
|
||||
Topic: staying healthy
|
||||
Tip: Regular Exercise
|
||||
Paragraph: Incorporate physical activity into your daily routine. This doesn't necessarily mean intense gym workouts; it can be as simple as walking, cycling, or yoga. Regular exercise helps in maintaining a healthy weight, improves cardiovascular health, boosts mental health, and can enhance cognitive function, which is crucial for fields that require intense intellectual engagement.
|
||||
|
||||
Topic: building a campfire
|
||||
Tip: Choose the Right Location
|
||||
Paragraph: Always build your campfire in a safe spot. This means selecting a location that's away from trees, bushes, and other flammable materials. Ideally, use a fire ring if available. If you're building a fire pit, it should be on bare soil or on a bed of stones, not on grass or near roots which can catch fire underground. Make sure the area above is clear of low-hanging branches.
|
||||
|
||||
Topic: writing a blog post
|
||||
Tip: structure your content effectively
|
||||
Paragraph: A well-structured post is easier to read and more enjoyable. Start with an engaging introduction that hooks the reader and clearly states the purpose of your post. Use headings and subheadings to break up the text and guide readers through your content. Bullet points and numbered lists can make information more digestible. Ensure each paragraph flows logically into the next, and conclude with a summary or call-to-action that encourages reader engagement.
|
||||
|
||||
Topic: """
|
||||
+ topic
|
||||
+ "\nTip: "
|
||||
+ tip
|
||||
+ "\nParagraph:"
|
||||
)
|
||||
s += sgl.gen("paragraph", max_tokens=128, stop=["\n\n"], temperature=0)
|
||||
|
||||
|
||||
@sgl.function
|
||||
def suggest_tips(s, topic):
|
||||
s += "Please act as a helpful assistant. Your job is to provide users with useful tips on a specific topic.\n"
|
||||
s += "USER: Give some tips for " + topic + ".\n"
|
||||
s += (
|
||||
"ASSISTANT: Okay. Here are "
|
||||
+ str(number)
|
||||
+ " concise tips, each under 8 words:\n"
|
||||
)
|
||||
|
||||
paragraphs = []
|
||||
for i in range(1, 1 + number):
|
||||
s += f"{i}." + sgl.gen(f"tip_{i}", max_tokens=24, stop=[".", "\n"]) + ".\n"
|
||||
paragraphs.append(expand_tip(topic=topic, tip=s[f"tip_{i}"]))
|
||||
|
||||
for i in range(1, 1 + number):
|
||||
s += f"Tip {i}:" + paragraphs[i - 1]["paragraph"] + "\n"
|
||||
|
||||
|
||||
def main(args):
|
||||
lines = read_jsonl(args.data_path)[: args.num_questions]
|
||||
arguments = [{"topic": l["topic"]} for l in lines]
|
||||
|
||||
# Select backend
|
||||
sgl.set_default_backend(select_sglang_backend(args))
|
||||
|
||||
# Run requests
|
||||
tic = time.perf_counter()
|
||||
states = suggest_tips.run_batch(
|
||||
arguments, temperature=0, num_threads=args.parallel, progress_bar=True
|
||||
)
|
||||
latency = time.perf_counter() - tic
|
||||
|
||||
# Compute accuracy
|
||||
print(f"Latency: {latency:.3f}")
|
||||
|
||||
# Write results
|
||||
dump_state_text(f"tmp_output_{args.backend}.txt", states)
|
||||
|
||||
with open(args.result_file, "a") as fout:
|
||||
value = {
|
||||
"task": "tip_suggestion",
|
||||
"backend": args.backend,
|
||||
"num_gpus": 1,
|
||||
"latency": round(latency, 3),
|
||||
"num_requests": args.num_questions,
|
||||
"other": {
|
||||
"num_questions": args.num_questions,
|
||||
"parallel": args.parallel,
|
||||
},
|
||||
}
|
||||
fout.write(json.dumps(value) + "\n")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--data-path", type=str, default="topic.jsonl")
|
||||
parser.add_argument("--num-questions", type=int, default=100)
|
||||
args = add_common_sglang_args_and_parse(parser)
|
||||
main(args)
|
||||
50
benchmark/tip_suggestion/lmql_funcs.py
Normal file
50
benchmark/tip_suggestion/lmql_funcs.py
Normal file
@@ -0,0 +1,50 @@
|
||||
number = 5
|
||||
|
||||
|
||||
async def expand_tip_async(topic, tip, generate):
|
||||
s = (
|
||||
"""Please expand a tip for a topic into a detailed paragraph.
|
||||
|
||||
Topic: staying healthy
|
||||
Tip: Regular Exercise
|
||||
Paragraph: Incorporate physical activity into your daily routine. This doesn't necessarily mean intense gym workouts; it can be as simple as walking, cycling, or yoga. Regular exercise helps in maintaining a healthy weight, improves cardiovascular health, boosts mental health, and can enhance cognitive function, which is crucial for fields that require intense intellectual engagement.
|
||||
|
||||
Topic: building a campfire
|
||||
Tip: Choose the Right Location
|
||||
Paragraph: Always build your campfire in a safe spot. This means selecting a location that's away from trees, bushes, and other flammable materials. Ideally, use a fire ring if available. If you're building a fire pit, it should be on bare soil or on a bed of stones, not on grass or near roots which can catch fire underground. Make sure the area above is clear of low-hanging branches.
|
||||
|
||||
Topic: writing a blog post
|
||||
Tip: structure your content effectively
|
||||
Paragraph: A well-structured post is easier to read and more enjoyable. Start with an engaging introduction that hooks the reader and clearly states the purpose of your post. Use headings and subheadings to break up the text and guide readers through your content. Bullet points and numbered lists can make information more digestible. Ensure each paragraph flows logically into the next, and conclude with a summary or call-to-action that encourages reader engagement.
|
||||
|
||||
Topic: """
|
||||
+ topic
|
||||
+ "\nTip: "
|
||||
+ tip
|
||||
+ "\nParagraph:"
|
||||
)
|
||||
return await generate(s, max_tokens=128, stop="\n\n")
|
||||
|
||||
|
||||
async def suggest_tips_async(topic, generate):
|
||||
s = "Please act as a helpful assistant. Your job is to provide users with useful tips on a specific topic.\n"
|
||||
s += "USER: Give some tips for " + topic + ".\n"
|
||||
s += (
|
||||
"ASSISTANT: Okay. Here are "
|
||||
+ str(number)
|
||||
+ " concise tips, each under 8 words:\n"
|
||||
)
|
||||
|
||||
tips = []
|
||||
for i in range(1, 1 + number):
|
||||
s += f"{i}."
|
||||
# NOTE: stop is different due to lmql does not support a list of stop tokens
|
||||
tip = await generate(s, max_tokens=24, stop=".\n")
|
||||
s += tip + ".\n"
|
||||
tips.append(tip)
|
||||
|
||||
paragraphs = [await expand_tip_async(topic, tip, generate=generate) for tip in tips]
|
||||
|
||||
for i in range(1, 1 + number):
|
||||
s += f"Tip {i}:" + paragraphs[i - 1] + "\n"
|
||||
return s
|
||||
50
benchmark/tip_suggestion/topic.jsonl
Normal file
50
benchmark/tip_suggestion/topic.jsonl
Normal file
@@ -0,0 +1,50 @@
|
||||
{"topic": "organizing a successful charity event", "number": 6}
|
||||
{"topic": "improving personal credit scores", "number": 7}
|
||||
{"topic": "staying motivated during job searches", "number": 5}
|
||||
{"topic": "maintaining a work-life balance", "number": 9}
|
||||
{"topic": "reducing carbon footprint at home", "number": 8}
|
||||
{"topic": "starting a book club", "number": 5}
|
||||
{"topic": "learning to play a musical instrument", "number": 7}
|
||||
{"topic": "getting into freelance writing", "number": 6}
|
||||
{"topic": "beginner yoga poses", "number": 8}
|
||||
{"topic": "preparing for graduate school exams", "number": 5}
|
||||
{"topic": "exploring minimalist living", "number": 9}
|
||||
{"topic": "effective grocery shopping", "number": 7}
|
||||
{"topic": "winter camping", "number": 5}
|
||||
{"topic": "starting a podcast on a budget", "number": 8}
|
||||
{"topic": "creating a capsule wardrobe", "number": 6}
|
||||
{"topic": "improving your writing skills", "number": 7}
|
||||
{"topic": "learning a new software quickly", "number": 9}
|
||||
{"topic": "reducing anxiety before public speaking", "number": 5}
|
||||
{"topic": "planning a solo travel adventure", "number": 8}
|
||||
{"topic": "beginner skateboarders", "number": 6}
|
||||
{"topic": "studying abroad", "number": 7}
|
||||
{"topic": "planting a vegetable garden", "number": 5}
|
||||
{"topic": "adopting a shelter pet", "number": 9}
|
||||
{"topic": "learning to cook ethnic cuisines", "number": 8}
|
||||
{"topic": "effective conflict resolution", "number": 5}
|
||||
{"topic": "starting a vlog", "number": 7}
|
||||
{"topic": "keeping a daily journal", "number": 6}
|
||||
{"topic": "improving sleep hygiene", "number": 8}
|
||||
{"topic": "beginner mountain climbers", "number": 5}
|
||||
{"topic": "creating a mobile app", "number": 9}
|
||||
{"topic": "maintaining a saltwater aquarium", "number": 7}
|
||||
{"topic": "preparing for a baby's arrival", "number": 6}
|
||||
{"topic": "writing a fantasy novel", "number": 5}
|
||||
{"topic": "effective team leadership", "number": 8}
|
||||
{"topic": "making a documentary film", "number": 9}
|
||||
{"topic": "learning about historical events", "number": 7}
|
||||
{"topic": "baking gluten-free treats", "number": 6}
|
||||
{"topic": "improving mental arithmetic skills", "number": 5}
|
||||
{"topic": "building a treehouse", "number": 8}
|
||||
{"topic": "getting started with watercolor painting", "number": 9}
|
||||
{"topic": "creating a YouTube tutorial series", "number": 7}
|
||||
{"topic": "landscape photography", "number": 5}
|
||||
{"topic": "navigating cultural differences", "number": 6}
|
||||
{"topic": "preparing for a marathon", "number": 8}
|
||||
{"topic": "building an online business", "number": 9}
|
||||
{"topic": "learning to dance at home", "number": 5}
|
||||
{"topic": "self-publishing a book", "number": 7}
|
||||
{"topic": "starting an urban farm", "number": 6}
|
||||
{"topic": "improving your memory", "number": 8}
|
||||
{"topic": "creating a personal brand online", "number": 9}
|
||||
Reference in New Issue
Block a user