-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbench.py
More file actions
130 lines (110 loc) · 4.08 KB
/
bench.py
File metadata and controls
130 lines (110 loc) · 4.08 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import os
import sys
import torch
from ctransformers import AutoModelForCausalLM
from transformers import AutoTokenizer
sys.path.append(os.getcwd())
from common.base import BaseBenchmarkClass # noqa
from common.utils import launch_cli, make_report # noqa
class CTransformersBenchmark(BaseBenchmarkClass):
def __init__(
self,
model_path: str,
model_name: str,
benchmark_name: str,
precision: str,
device: str,
experiment_name: str,
) -> None:
super().__init__(
model_path=model_path,
model_name=model_name,
benchmark_name=benchmark_name,
precision=precision,
device=device,
experiment_name=experiment_name,
)
if model_name == "llama":
self.tokenizer_folder = os.path.join(
os.getcwd(), "models", "llama-2-7b-chat-hf"
)
else:
self.tokenizer_folder = os.path.join(
os.getcwd(), "models", "mistral-7b-v0.1-instruct-hf"
)
def load_model_and_tokenizer(self):
self.tokenizer = AutoTokenizer.from_pretrained(self.tokenizer_folder)
model_file_mapping = {
"llama": {
"int4": "llama-2-7b-chat.Q4_K_M.gguf",
"int8": "llama-2-7b-chat.Q8_0.gguf",
},
"mistral": {
"int4": "mistral-7b-instruct-v0.1.Q4_K_M.gguf",
"int8": "mistral-7b-instruct-v0.1.Q8_0.gguf",
},
}
self.model = AutoModelForCausalLM.from_pretrained(
self.model_path,
model_file=model_file_mapping[self.model_name][self.precision],
model_type=self.model_name,
gpu_layers=50 if self.device in ["cuda", "metal"] else 0,
# context_length=1024 (This exceeds the memory without changing the quality)
)
return self
def preprocess(self, prompt: str, chat_mode: bool = True, for_benchmarks=True):
if chat_mode:
template = self.get_chat_template_with_instruction(
prompt=prompt, for_benchmarks=for_benchmarks
)
prompt = self.tokenizer.apply_chat_template(template, tokenize=False)
tokenized_input = self.tokenizer.encode(text=prompt)
return {
"prompt": prompt,
"input_tokens": tokenized_input,
"tensor": None,
"num_input_tokens": len(tokenized_input),
}
def run_model(self, inputs: dict, max_tokens: int, temperature: float) -> dict:
prompt = inputs["prompt"]
output = self.model(
prompt, stream=False, max_new_tokens=max_tokens, temperature=temperature
)
generated_tokens = self.tokenizer.encode(output)
# Note: CTransformers produces tokens after the input tokens
return {
"output_prompt": output,
"output_tokens": generated_tokens,
"num_output_tokens": len(generated_tokens),
}
def postprocess(self, output: dict) -> str:
output_tokens = output["output_tokens"]
return self.tokenizer.decode(output_tokens, skip_special_tokens=True)
def on_exit(self):
if self.device in ["cuda:0", "cuda"]:
del self.model
torch.cuda.synchronize()
else:
del self.model
if __name__ == "__main__":
parser = launch_cli(description="CTransformers Benchmark.")
args = parser.parse_args()
model_folder = os.path.join(os.getcwd(), "models")
model_name = (
f"{args.model_name}-2-7b-chat-gguf"
if args.model_name == "llama"
else f"{args.model_name}-7b-v0.1-instruct-gguf"
)
runner_dict = {
"cuda": [
{"precision": "int4", "model_path": os.path.join(model_folder, model_name)},
{"precision": "int8", "model_path": os.path.join(model_folder, model_name)},
]
}
make_report(
args=args,
benchmark_class=CTransformersBenchmark,
runner_dict=runner_dict,
benchmark_name="CTransformers",
is_bench_pytorch=False,
)