forked from bytedance/lightseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathls_bart.py
102 lines (78 loc) · 3.26 KB
/
ls_bart.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import time
import argparse
import torch
import lightseq.inference as lsi
from transformers import BartTokenizer, BartForConditionalGeneration
def ls_bart(model, inputs):
torch.cuda.synchronize()
start_time = time.perf_counter()
generated_ids = model.infer(inputs)
torch.cuda.synchronize()
end_time = time.perf_counter()
return generated_ids, end_time - start_time
def hf_bart(model, inputs):
torch.cuda.synchronize()
start_time = time.perf_counter()
generated_ids = model.generate(inputs.to("cuda:0"), max_length=50)
torch.cuda.synchronize()
end_time = time.perf_counter()
return generated_ids, end_time - start_time
def ls_generate(model, tokenizer, inputs_id):
print("=========lightseq=========")
print("lightseq generating...")
ls_res_ids, ls_time = ls_bart(model, inputs_id)
ls_res_ids = [ids[0] for ids in ls_res_ids[0]]
ls_res = tokenizer.batch_decode(ls_res_ids, skip_special_tokens=True)
print(f"lightseq time: {ls_time}s")
print("lightseq results:")
for sent in ls_res:
print(sent)
def hf_generate(model, tokenizer, inputs_id):
print("=========huggingface=========")
print("huggingface generating...")
hf_res_ids, hf_time = hf_bart(model, inputs_id)
hf_res = tokenizer.batch_decode(hf_res_ids, skip_special_tokens=True)
print(f"huggingface time: {hf_time}s")
print("huggingface results:")
for sent in hf_res:
print(sent)
def warmup(tokenizer, ls_model, hf_model, sentences):
inputs = tokenizer(sentences, return_tensors="pt", padding=True)
inputs_id = inputs["input_ids"]
ls_generate(ls_model, tokenizer, inputs_id)
hf_generate(hf_model, tokenizer, inputs_id)
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--user_input", action="store_true")
args = parser.parse_args()
print("initializing bart tokenizer...")
# change to "facebook/bart-large" for large model
tokenizer = BartTokenizer.from_pretrained("facebook/bart-base")
print("creating lightseq model...")
# change to "lightseq_bart_large.hdf5" for large model
ls_model = lsi.Transformer("lightseq_bart_base.hdf5", 128)
print("creating huggingface model...")
# change to "facebook/bart-large" for large model
hf_model = BartForConditionalGeneration.from_pretrained("facebook/bart-base")
hf_model.to("cuda:0")
sentences = [
"I love that girl, but <mask> does not <mask> me.",
"She is so <mask> that I can not help glance at <mask>.",
"Nothing's gonna <mask> my love for you.",
"Drop everything now. Meet me in the pouring <mask>. Kiss me on the sidewalk.",
]
print("====================START warmup====================")
warmup(tokenizer, ls_model, hf_model, sentences)
print("====================END warmup====================")
while True:
if args.user_input:
sentences = [input("input the masked sentence:\n")]
print("tokenizing the sentences...")
inputs = tokenizer(sentences, return_tensors="pt", padding=True)
inputs_id = inputs["input_ids"]
ls_generate(ls_model, tokenizer, inputs_id)
hf_generate(hf_model, tokenizer, inputs_id)
if not args.user_input:
break
if __name__ == "__main__":
main()