-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy patharch.py
125 lines (122 loc) · 4.48 KB
/
arch.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# ===----------------------------------------------------------------------=== #
# Copyright (c) 2024, Modular Inc. All rights reserved.
#
# Licensed under the Apache License v2.0 with LLVM Exceptions:
# https://llvm.org/LICENSE.txt
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ===----------------------------------------------------------------------=== #
from max.pipelines import (
HuggingFaceFile,
SupportedArchitecture,
SupportedEncoding,
SupportedVersion,
TextTokenizer,
WeightsFormat,
)
from max.pipelines.kv_cache import KVCacheStrategy
from .model import Llama3Model
from .safetensor_converter import LlamaSafetensorWeights
llama_arch = SupportedArchitecture(
name="LlamaForCausalLM",
versions=[
SupportedVersion(
name="3",
encodings={
SupportedEncoding.float32: (
HuggingFaceFile("modularai/llama-3", "llama-3-8b-f32.gguf"),
[KVCacheStrategy.CONTINUOUS, KVCacheStrategy.NAIVE],
),
SupportedEncoding.bfloat16: (
HuggingFaceFile(
"modularai/llama-3",
"llama-3-8b-instruct-bf16.gguf",
),
[KVCacheStrategy.CONTINUOUS, KVCacheStrategy.NAIVE],
),
SupportedEncoding.q4_0: (
HuggingFaceFile(
"modularai/llama-3",
"llama-3-8b-instruct-q4_0.gguf",
),
[KVCacheStrategy.NAIVE],
),
SupportedEncoding.q4_k: (
HuggingFaceFile(
"modularai/llama-3",
"llama-3-8b-instruct-q4_k_m.gguf",
),
[KVCacheStrategy.NAIVE],
),
SupportedEncoding.q6_k: (
HuggingFaceFile(
"modularai/llama-3",
"llama-3-8b-instruct-q6_k.gguf",
),
[KVCacheStrategy.NAIVE],
),
},
default_encoding=SupportedEncoding.q4_k,
),
SupportedVersion(
name="3.1",
encodings={
SupportedEncoding.float32: (
[
HuggingFaceFile(
"modularai/llama-3.1",
"llama-3.1-8b-instruct-f32.gguf",
)
],
[KVCacheStrategy.CONTINUOUS, KVCacheStrategy.NAIVE],
),
SupportedEncoding.bfloat16: (
[
HuggingFaceFile(
"modularai/llama-3.1",
"llama-3.1-8b-instruct-bf16.gguf",
)
],
[KVCacheStrategy.CONTINUOUS, KVCacheStrategy.NAIVE],
),
SupportedEncoding.q4_0: (
[
HuggingFaceFile(
"modularai/llama-3.1",
"llama-3.1-8b-instruct-q4_0.gguf",
)
],
[KVCacheStrategy.NAIVE],
),
SupportedEncoding.q4_k: (
[
HuggingFaceFile(
"modularai/llama-3.1",
"llama-3.1-8b-instruct-q4_k_m.gguf",
)
],
[KVCacheStrategy.NAIVE],
),
SupportedEncoding.q6_k: (
[
HuggingFaceFile(
"modularai/llama-3.1",
"llama-3.1-8b-instruct-q6_k.gguf",
)
],
[KVCacheStrategy.NAIVE],
),
},
default_encoding=SupportedEncoding.q4_k,
),
],
default_version="3.1",
pipeline_model=Llama3Model,
tokenizer=TextTokenizer,
default_weights_format=WeightsFormat.gguf,
weight_converters={WeightsFormat.safetensors: LlamaSafetensorWeights},
)