bullerwins commited on
Commit
331f482
·
verified ·
1 Parent(s): 59cb704

Add files using upload-large-folder tool

Browse files
Files changed (49) hide show
  1. AUTOROUND_QUANTIZATION.md +22 -0
  2. LICENSE +21 -0
  3. README.md +134 -0
  4. config.json +1092 -0
  5. encoding/README.md +174 -0
  6. encoding/encoding_dsv4.py +760 -0
  7. encoding/test_encoding_dsv4.py +89 -0
  8. encoding/tests/test_input_1.json +81 -0
  9. encoding/tests/test_input_2.json +24 -0
  10. encoding/tests/test_input_3.json +159 -0
  11. encoding/tests/test_input_4.json +28 -0
  12. encoding/tests/test_output_1.txt +36 -0
  13. encoding/tests/test_output_2.txt +1 -0
  14. encoding/tests/test_output_3.txt +38 -0
  15. encoding/tests/test_output_4.txt +29 -0
  16. generation_config.json +9 -0
  17. inference/README.md +26 -0
  18. inference/config.json +40 -0
  19. inference/convert.py +154 -0
  20. inference/generate.py +144 -0
  21. inference/kernel.py +536 -0
  22. inference/model.py +961 -0
  23. inference/requirements.txt +5 -0
  24. model-00002-of-00048.safetensors +3 -0
  25. model-00003-of-00048.safetensors +3 -0
  26. model-00005-of-00048.safetensors +3 -0
  27. model-00008-of-00048.safetensors +3 -0
  28. model-00009-of-00048.safetensors +3 -0
  29. model-00012-of-00048.safetensors +3 -0
  30. model-00013-of-00048.safetensors +3 -0
  31. model-00014-of-00048.safetensors +3 -0
  32. model-00018-of-00048.safetensors +3 -0
  33. model-00019-of-00048.safetensors +3 -0
  34. model-00020-of-00048.safetensors +3 -0
  35. model-00021-of-00048.safetensors +3 -0
  36. model-00026-of-00048.safetensors +3 -0
  37. model-00027-of-00048.safetensors +3 -0
  38. model-00030-of-00048.safetensors +3 -0
  39. model-00031-of-00048.safetensors +3 -0
  40. model-00036-of-00048.safetensors +3 -0
  41. model-00037-of-00048.safetensors +3 -0
  42. model-00040-of-00048.safetensors +3 -0
  43. model-00041-of-00048.safetensors +3 -0
  44. model-00046-of-00048.safetensors +3 -0
  45. model-00047-of-00048.safetensors +3 -0
  46. model.safetensors.index.json +0 -0
  47. quantization_config.json +980 -0
  48. tokenizer.json +0 -0
  49. tokenizer_config.json +34 -0
AUTOROUND_QUANTIZATION.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DeepSeek-V4-Flash-0731 AutoRound W4A16
2
+
3
+ Source: `/mnt/llms/models/deepseek-ai/DeepSeek-V4-Flash-0731`
4
+
5
+ Generated with AutoRound 0.15.0 (`/home/ubuntuai/auto-round`, commit `60b813cb`) using model-free RTN:
6
+
7
+ ```bash
8
+ auto-round /mnt/llms/models/deepseek-ai/DeepSeek-V4-Flash-0731 \
9
+ --model_free \
10
+ --scheme W4A16 \
11
+ --ignore_layers compressor,indexer.weights_proj \
12
+ --layer_config "{'wo_a':{bits:16}}" \
13
+ --output_dir /mnt/llms/models/bullerwins/DeepSeek-V4-Flash-0731-AutoRound
14
+ ```
15
+
16
+ The checkpoint uses symmetric INT4 weights with group size 128 and BF16 activations. Quality-sensitive token embeddings, LM head, MoE routers, attention compressors/indexer projections, and `wo_a` remain BF16. AutoRound quantized 35,672 eligible layers and preserved 242 layers.
17
+
18
+ `block_name_to_quantize` was removed from both quantization configurations after export. AutoRound emitted the source-level prefix `layers`, while vLLM instantiates these modules under `model.layers`; leaving the field caused vLLM to treat the MoE as unquantized. Explicit BF16 exclusions in `extra_config` remain intact.
19
+
20
+ The checkpoint was validated with vLLM using PP=3 on CUDA devices `0,2,6`, `VLLM_PP_LAYER_PARTITION=8,27,8`, and 8 GiB CPU offload per rank. A non-thinking chat probe returned `323` for `17*19`.
21
+
22
+ This is an RTN conversion rather than calibration-based AutoRound tuning. It follows Intel's published generation recipe for `Intel/DeepSeek-V4-Flash-W4A16-AutoRound`, updated with AutoRound 0.15's DeepSeek-V4 handling.
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2023 DeepSeek
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ ---
5
+ # DeepSeek-V4-Flash-0731
6
+
7
+ <!-- markdownlint-disable first-line-h1 -->
8
+ <!-- markdownlint-disable html -->
9
+ <!-- markdownlint-disable no-duplicate-header -->
10
+
11
+ <div align="center">
12
+ <img src="https://github.com/deepseek-ai/DeepSeek-V2/blob/main/figures/logo.svg?raw=true" width="60%" alt="DeepSeek-V4" />
13
+ </div>
14
+ <hr>
15
+ <div align="center" style="line-height: 1;">
16
+ <a href="https://www.deepseek.com/" target="_blank" style="margin: 2px;">
17
+ <img alt="Homepage" src="https://github.com/deepseek-ai/DeepSeek-V2/blob/main/figures/badge.svg?raw=true" style="display: inline-block; vertical-align: middle;"/>
18
+ </a>
19
+ <a href="https://chat.deepseek.com/" target="_blank" style="margin: 2px;">
20
+ <img alt="Chat" src="https://img.shields.io/badge/🤖%20Chat-DeepSeek%20V4-536af5?color=536af5&logoColor=white" style="display: inline-block; vertical-align: middle;"/>
21
+ </a>
22
+ </div>
23
+ <div align="center" style="line-height: 1;">
24
+ <a href="https://huggingface.co/deepseek-ai" target="_blank" style="margin: 2px;">
25
+ <img alt="Hugging Face" src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-DeepSeek%20AI-ffc107?color=ffc107&logoColor=white" style="display: inline-block; vertical-align: middle;"/>
26
+ </a>
27
+ <a href="https://twitter.com/deepseek_ai" target="_blank" style="margin: 2px;">
28
+ <img alt="Twitter Follow" src="https://img.shields.io/badge/Twitter-deepseek_ai-white?logo=x&logoColor=white" style="display: inline-block; vertical-align: middle;"/>
29
+ </a>
30
+ </div>
31
+ <div align="center" style="line-height: 1;">
32
+ <a href="LICENSE" style="margin: 2px;">
33
+ <img alt="License" src="https://img.shields.io/badge/License-MIT-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
34
+ </a>
35
+ </div>
36
+
37
+ <p align="center">
38
+ <a href="https://arxiv.org/abs/2606.19348"><b>Technical Report</b>👁️</a>
39
+ </p>
40
+
41
+ ## Introduction
42
+
43
+ **DeepSeek-V4-Flash-0731** is the official release of **DeepSeek-V4-Flash**, superseding the preview version, with substantially enhanced agentic capabilities. It has the same model structure as [DeepSeek-V4-Flash-DSpark](https://huggingface.co/deepseek-ai/DeepSeek-V4-Flash-DSpark), i.e. it comes with a speculative decoding module attached.
44
+
45
+ DeepSeek-V4-Flash-0731 outperforms DeepSeek-V4-Pro (Preview) on benchmarks listed below despite its far smaller activated parameter count, and is broadly competitive with the strongest proprietary models available.
46
+
47
+ <div align="center">
48
+
49
+ | Benchmark | DeepSeek-V4-Flash-0731 | DeepSeek-V4-Flash (Preview) | DeepSeek-V4-Pro (Preview) | GLM-5.2 | Opus-4.8 |
50
+ | :--- | :---: | :---: | :---: | :---: | :---: |
51
+ | Terminal Bench 2.1 | 82.7 | 61.8 | 72.1 | 81.0 | 85.0 |
52
+ | NL2Repo | 54.2 | 39.4 | 38.5 | 48.9 | 69.7 |
53
+ | Cybergym | 76.7 | 38.7 | 52.7 | - | 83.1 |
54
+ | DeepSWE | 54.4 | 7.3 | 12.8 | 46.2 | 58.0 |
55
+ | Toolathlon-Verified | 70.3 | 49.7 | 55.9 | 59.9 | 76.2 |
56
+ | Agents' Last Exam | 25.2 | 15.8 | 16.5 | 23.8 | 25.7 |
57
+ | AutomationBench Public | 25.1 | 10.8 | 12.8 | 12.9 | 27.2 |
58
+ | DSBench-FullStack † | 68.7 | 37.0 | 41.8 | 61.8 | 71.6 |
59
+ | DSBench-Hard † | 59.6 | 25.8 | 31.1 | 54.5 | 71.7 |
60
+
61
+ </div>
62
+
63
+ Notes:
64
+
65
+ 1. For the Code Agent tasks among the public benchmarks above, DeepSeek-V4-Flash-0731 is evaluated with the minimal mode of DeepSeek Harness (to be released) as the agent framework, using the `max` reasoning effort level with `temperature = 1.0, top_p = 0.95`.
66
+ 2. † DSBench-FullStack is an internal full-stack development test set; DSBench-Hard is an internal test set of difficult coding-agent problems.
67
+
68
+ ## Chat Template
69
+
70
+ This release does not include a Jinja-format chat template. Instead, we provide a dedicated `encoding` folder with Python scripts and test cases demonstrating how to encode messages in OpenAI-compatible format into input strings for the model, and how to parse the model's text output. Please refer to the [`encoding`](encoding/README.md) folder for full documentation.
71
+
72
+ The `reasoning_effort` parameter now supports three levels — `low`, `high`, and `max` — which control how much deliberation the model spends before answering.
73
+
74
+ A brief example:
75
+
76
+ ```python
77
+ from encoding_dsv4 import encode_messages, parse_message_from_completion_text
78
+
79
+ messages = [
80
+ {"role": "user", "content": "hello"},
81
+ {"role": "assistant", "content": "Hello! I am DeepSeek.", "reasoning_content": "thinking..."},
82
+ {"role": "user", "content": "1+1=?"}
83
+ ]
84
+
85
+ # messages -> string
86
+ prompt = encode_messages(messages, thinking_mode="thinking", reasoning_effort="max")
87
+
88
+ # string -> tokens
89
+ import transformers
90
+ tokenizer = transformers.AutoTokenizer.from_pretrained("deepseek-ai/DeepSeek-V4-Flash-0731")
91
+ tokens = tokenizer.encode(prompt)
92
+ ```
93
+
94
+ ## How to Run with vLLM
95
+
96
+ DSpark speculative decoding is enabled with a single flag — add --speculative-config with method: dspark to your vLLM launch command:
97
+
98
+ `--speculative-config '{"method":"dspark","num_speculative_tokens":7,"draft_sample_method":"greedy"}'`
99
+
100
+ For example, the command below serves the model with vLLM on a single 4×GB300 node.
101
+ See the [vLLM recipe](https://recipes.vllm.ai/deepseek-ai/DeepSeek-V4-Flash?hardware=b300&features=tool_calling,reasoning) for detailed instructions and other hardware configurations.
102
+
103
+ ```bash
104
+ vllm serve deepseek-ai/DeepSeek-V4-Flash-0731 \
105
+ --trust-remote-code --kv-cache-dtype fp8 --block-size 256 \
106
+ --data-parallel-size 4 --enable-expert-parallel \
107
+ --moe-backend deep_gemm_mega_moe \
108
+ --attention-config '{"use_fp4_indexer_cache": true}' \
109
+ --speculative-config '{"method":"dspark","num_speculative_tokens":7,"draft_sample_method":"greedy"}'
110
+ ```
111
+
112
+ ## How to Run Locally
113
+
114
+ Please refer to the [inference](inference/README.md) folder for detailed instructions on running DeepSeek-V4 locally, including model weight conversion and interactive chat demos.
115
+
116
+ For local deployment, we recommend setting the sampling parameters to `temperature = 1.0`, with `top_p = 0.95` for agentic scenarios and `top_p = 1.0` otherwise. For the `high` and `max` reasoning effort levels, we recommend a maximum output length of **384K** tokens.
117
+
118
+ ## License
119
+
120
+ This repository and the model weights are licensed under the [MIT License](LICENSE).
121
+
122
+ ## Citation
123
+
124
+ ```
125
+ @misc{deepseekai2026deepseekv4,
126
+ title={DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence},
127
+ author={DeepSeek-AI},
128
+ year={2026},
129
+ }
130
+ ```
131
+
132
+ ## Contact
133
+
134
+ If you have any questions, please raise an issue or contact us at [service@deepseek.com](service@deepseek.com).
config.json ADDED
@@ -0,0 +1,1092 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DeepseekV4ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 0,
8
+ "eos_token_id": 1,
9
+ "expert_dtype": "fp4",
10
+ "hc_eps": 1e-06,
11
+ "hc_mult": 4,
12
+ "hc_sinkhorn_iters": 20,
13
+ "head_dim": 512,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 4096,
16
+ "index_head_dim": 128,
17
+ "index_n_heads": 64,
18
+ "index_topk": 512,
19
+ "initializer_range": 0.02,
20
+ "max_position_embeddings": 1048576,
21
+ "model_type": "deepseek_v4",
22
+ "moe_intermediate_size": 2048,
23
+ "n_routed_experts": 256,
24
+ "n_shared_experts": 1,
25
+ "norm_topk_prob": true,
26
+ "num_attention_heads": 64,
27
+ "num_experts_per_tok": 6,
28
+ "num_hidden_layers": 43,
29
+ "num_hash_layers": 3,
30
+ "num_key_value_heads": 1,
31
+ "num_nextn_predict_layers": 1,
32
+ "o_groups": 8,
33
+ "o_lora_rank": 1024,
34
+ "q_lora_rank": 1024,
35
+ "qk_rope_head_dim": 64,
36
+ "quantization_config": {
37
+ "quant_method": "auto-round",
38
+ "packing_format": "auto_round:auto_gptq",
39
+ "bits": 4,
40
+ "group_size": 128,
41
+ "sym": true,
42
+ "data_type": "int",
43
+ "iters": 0,
44
+ "model_free": true,
45
+ "autoround_version": "0.15.0",
46
+ "extra_config": {
47
+ "wo_a": {
48
+ "bits": 16
49
+ },
50
+ "layers.0.attn.wo_a": {
51
+ "bits": 16,
52
+ "data_type": "float"
53
+ },
54
+ "layers.0.ffn.gate": {
55
+ "bits": 16,
56
+ "data_type": "float"
57
+ },
58
+ "layers.6.attn.compressor.wgate": {
59
+ "bits": 16,
60
+ "data_type": "float"
61
+ },
62
+ "layers.6.attn.compressor.wkv": {
63
+ "bits": 16,
64
+ "data_type": "float"
65
+ },
66
+ "layers.6.attn.indexer.compressor.wgate": {
67
+ "bits": 16,
68
+ "data_type": "float"
69
+ },
70
+ "layers.6.attn.indexer.compressor.wkv": {
71
+ "bits": 16,
72
+ "data_type": "float"
73
+ },
74
+ "layers.6.attn.indexer.weights_proj": {
75
+ "bits": 16,
76
+ "data_type": "float"
77
+ },
78
+ "layers.6.attn.wo_a": {
79
+ "bits": 16,
80
+ "data_type": "float"
81
+ },
82
+ "layers.6.ffn.gate": {
83
+ "bits": 16,
84
+ "data_type": "float"
85
+ },
86
+ "layers.5.attn.compressor.wgate": {
87
+ "bits": 16,
88
+ "data_type": "float"
89
+ },
90
+ "layers.5.attn.compressor.wkv": {
91
+ "bits": 16,
92
+ "data_type": "float"
93
+ },
94
+ "layers.5.attn.wo_a": {
95
+ "bits": 16,
96
+ "data_type": "float"
97
+ },
98
+ "layers.5.ffn.gate": {
99
+ "bits": 16,
100
+ "data_type": "float"
101
+ },
102
+ "layers.1.attn.wo_a": {
103
+ "bits": 16,
104
+ "data_type": "float"
105
+ },
106
+ "layers.1.ffn.gate": {
107
+ "bits": 16,
108
+ "data_type": "float"
109
+ },
110
+ "layers.7.attn.compressor.wgate": {
111
+ "bits": 16,
112
+ "data_type": "float"
113
+ },
114
+ "layers.7.attn.compressor.wkv": {
115
+ "bits": 16,
116
+ "data_type": "float"
117
+ },
118
+ "layers.7.attn.wo_a": {
119
+ "bits": 16,
120
+ "data_type": "float"
121
+ },
122
+ "layers.7.ffn.gate": {
123
+ "bits": 16,
124
+ "data_type": "float"
125
+ },
126
+ "layers.4.attn.compressor.wgate": {
127
+ "bits": 16,
128
+ "data_type": "float"
129
+ },
130
+ "layers.4.attn.compressor.wkv": {
131
+ "bits": 16,
132
+ "data_type": "float"
133
+ },
134
+ "layers.4.attn.indexer.compressor.wgate": {
135
+ "bits": 16,
136
+ "data_type": "float"
137
+ },
138
+ "layers.4.attn.indexer.compressor.wkv": {
139
+ "bits": 16,
140
+ "data_type": "float"
141
+ },
142
+ "layers.4.attn.indexer.weights_proj": {
143
+ "bits": 16,
144
+ "data_type": "float"
145
+ },
146
+ "layers.4.attn.wo_a": {
147
+ "bits": 16,
148
+ "data_type": "float"
149
+ },
150
+ "layers.4.ffn.gate": {
151
+ "bits": 16,
152
+ "data_type": "float"
153
+ },
154
+ "layers.3.attn.compressor.wgate": {
155
+ "bits": 16,
156
+ "data_type": "float"
157
+ },
158
+ "layers.3.attn.compressor.wkv": {
159
+ "bits": 16,
160
+ "data_type": "float"
161
+ },
162
+ "layers.3.attn.wo_a": {
163
+ "bits": 16,
164
+ "data_type": "float"
165
+ },
166
+ "layers.3.ffn.gate": {
167
+ "bits": 16,
168
+ "data_type": "float"
169
+ },
170
+ "layers.2.attn.compressor.wgate": {
171
+ "bits": 16,
172
+ "data_type": "float"
173
+ },
174
+ "layers.2.attn.compressor.wkv": {
175
+ "bits": 16,
176
+ "data_type": "float"
177
+ },
178
+ "layers.2.attn.indexer.compressor.wgate": {
179
+ "bits": 16,
180
+ "data_type": "float"
181
+ },
182
+ "layers.2.attn.indexer.compressor.wkv": {
183
+ "bits": 16,
184
+ "data_type": "float"
185
+ },
186
+ "layers.2.attn.indexer.weights_proj": {
187
+ "bits": 16,
188
+ "data_type": "float"
189
+ },
190
+ "layers.2.attn.wo_a": {
191
+ "bits": 16,
192
+ "data_type": "float"
193
+ },
194
+ "layers.2.ffn.gate": {
195
+ "bits": 16,
196
+ "data_type": "float"
197
+ },
198
+ "layers.8.attn.compressor.wgate": {
199
+ "bits": 16,
200
+ "data_type": "float"
201
+ },
202
+ "layers.8.attn.compressor.wkv": {
203
+ "bits": 16,
204
+ "data_type": "float"
205
+ },
206
+ "layers.8.attn.indexer.compressor.wgate": {
207
+ "bits": 16,
208
+ "data_type": "float"
209
+ },
210
+ "layers.8.attn.indexer.compressor.wkv": {
211
+ "bits": 16,
212
+ "data_type": "float"
213
+ },
214
+ "layers.8.attn.indexer.weights_proj": {
215
+ "bits": 16,
216
+ "data_type": "float"
217
+ },
218
+ "layers.8.attn.wo_a": {
219
+ "bits": 16,
220
+ "data_type": "float"
221
+ },
222
+ "layers.8.ffn.gate": {
223
+ "bits": 16,
224
+ "data_type": "float"
225
+ },
226
+ "layers.9.attn.compressor.wgate": {
227
+ "bits": 16,
228
+ "data_type": "float"
229
+ },
230
+ "layers.9.attn.compressor.wkv": {
231
+ "bits": 16,
232
+ "data_type": "float"
233
+ },
234
+ "layers.9.attn.wo_a": {
235
+ "bits": 16,
236
+ "data_type": "float"
237
+ },
238
+ "layers.9.ffn.gate": {
239
+ "bits": 16,
240
+ "data_type": "float"
241
+ },
242
+ "layers.10.attn.compressor.wgate": {
243
+ "bits": 16,
244
+ "data_type": "float"
245
+ },
246
+ "layers.10.attn.compressor.wkv": {
247
+ "bits": 16,
248
+ "data_type": "float"
249
+ },
250
+ "layers.10.attn.indexer.compressor.wgate": {
251
+ "bits": 16,
252
+ "data_type": "float"
253
+ },
254
+ "layers.10.attn.indexer.compressor.wkv": {
255
+ "bits": 16,
256
+ "data_type": "float"
257
+ },
258
+ "layers.10.attn.indexer.weights_proj": {
259
+ "bits": 16,
260
+ "data_type": "float"
261
+ },
262
+ "layers.10.attn.wo_a": {
263
+ "bits": 16,
264
+ "data_type": "float"
265
+ },
266
+ "layers.10.ffn.gate": {
267
+ "bits": 16,
268
+ "data_type": "float"
269
+ },
270
+ "layers.11.attn.compressor.wgate": {
271
+ "bits": 16,
272
+ "data_type": "float"
273
+ },
274
+ "layers.11.attn.compressor.wkv": {
275
+ "bits": 16,
276
+ "data_type": "float"
277
+ },
278
+ "layers.11.attn.wo_a": {
279
+ "bits": 16,
280
+ "data_type": "float"
281
+ },
282
+ "layers.11.ffn.gate": {
283
+ "bits": 16,
284
+ "data_type": "float"
285
+ },
286
+ "layers.12.attn.compressor.wgate": {
287
+ "bits": 16,
288
+ "data_type": "float"
289
+ },
290
+ "layers.12.attn.compressor.wkv": {
291
+ "bits": 16,
292
+ "data_type": "float"
293
+ },
294
+ "layers.12.attn.indexer.compressor.wgate": {
295
+ "bits": 16,
296
+ "data_type": "float"
297
+ },
298
+ "layers.12.attn.indexer.compressor.wkv": {
299
+ "bits": 16,
300
+ "data_type": "float"
301
+ },
302
+ "layers.12.attn.indexer.weights_proj": {
303
+ "bits": 16,
304
+ "data_type": "float"
305
+ },
306
+ "layers.12.attn.wo_a": {
307
+ "bits": 16,
308
+ "data_type": "float"
309
+ },
310
+ "layers.12.ffn.gate": {
311
+ "bits": 16,
312
+ "data_type": "float"
313
+ },
314
+ "layers.13.attn.compressor.wgate": {
315
+ "bits": 16,
316
+ "data_type": "float"
317
+ },
318
+ "layers.13.attn.compressor.wkv": {
319
+ "bits": 16,
320
+ "data_type": "float"
321
+ },
322
+ "layers.13.attn.wo_a": {
323
+ "bits": 16,
324
+ "data_type": "float"
325
+ },
326
+ "layers.13.ffn.gate": {
327
+ "bits": 16,
328
+ "data_type": "float"
329
+ },
330
+ "layers.15.attn.compressor.wgate": {
331
+ "bits": 16,
332
+ "data_type": "float"
333
+ },
334
+ "layers.15.attn.compressor.wkv": {
335
+ "bits": 16,
336
+ "data_type": "float"
337
+ },
338
+ "layers.15.attn.wo_a": {
339
+ "bits": 16,
340
+ "data_type": "float"
341
+ },
342
+ "layers.15.ffn.gate": {
343
+ "bits": 16,
344
+ "data_type": "float"
345
+ },
346
+ "layers.16.attn.compressor.wgate": {
347
+ "bits": 16,
348
+ "data_type": "float"
349
+ },
350
+ "layers.16.attn.compressor.wkv": {
351
+ "bits": 16,
352
+ "data_type": "float"
353
+ },
354
+ "layers.16.attn.indexer.compressor.wgate": {
355
+ "bits": 16,
356
+ "data_type": "float"
357
+ },
358
+ "layers.16.attn.indexer.compressor.wkv": {
359
+ "bits": 16,
360
+ "data_type": "float"
361
+ },
362
+ "layers.16.attn.indexer.weights_proj": {
363
+ "bits": 16,
364
+ "data_type": "float"
365
+ },
366
+ "layers.16.attn.wo_a": {
367
+ "bits": 16,
368
+ "data_type": "float"
369
+ },
370
+ "layers.16.ffn.gate": {
371
+ "bits": 16,
372
+ "data_type": "float"
373
+ },
374
+ "layers.14.attn.compressor.wgate": {
375
+ "bits": 16,
376
+ "data_type": "float"
377
+ },
378
+ "layers.14.attn.compressor.wkv": {
379
+ "bits": 16,
380
+ "data_type": "float"
381
+ },
382
+ "layers.14.attn.indexer.compressor.wgate": {
383
+ "bits": 16,
384
+ "data_type": "float"
385
+ },
386
+ "layers.14.attn.indexer.compressor.wkv": {
387
+ "bits": 16,
388
+ "data_type": "float"
389
+ },
390
+ "layers.14.attn.indexer.weights_proj": {
391
+ "bits": 16,
392
+ "data_type": "float"
393
+ },
394
+ "layers.14.attn.wo_a": {
395
+ "bits": 16,
396
+ "data_type": "float"
397
+ },
398
+ "layers.14.ffn.gate": {
399
+ "bits": 16,
400
+ "data_type": "float"
401
+ },
402
+ "layers.17.attn.compressor.wgate": {
403
+ "bits": 16,
404
+ "data_type": "float"
405
+ },
406
+ "layers.17.attn.compressor.wkv": {
407
+ "bits": 16,
408
+ "data_type": "float"
409
+ },
410
+ "layers.17.attn.wo_a": {
411
+ "bits": 16,
412
+ "data_type": "float"
413
+ },
414
+ "layers.17.ffn.gate": {
415
+ "bits": 16,
416
+ "data_type": "float"
417
+ },
418
+ "layers.18.attn.compressor.wgate": {
419
+ "bits": 16,
420
+ "data_type": "float"
421
+ },
422
+ "layers.18.attn.compressor.wkv": {
423
+ "bits": 16,
424
+ "data_type": "float"
425
+ },
426
+ "layers.18.attn.indexer.compressor.wgate": {
427
+ "bits": 16,
428
+ "data_type": "float"
429
+ },
430
+ "layers.18.attn.indexer.compressor.wkv": {
431
+ "bits": 16,
432
+ "data_type": "float"
433
+ },
434
+ "layers.18.attn.indexer.weights_proj": {
435
+ "bits": 16,
436
+ "data_type": "float"
437
+ },
438
+ "layers.18.attn.wo_a": {
439
+ "bits": 16,
440
+ "data_type": "float"
441
+ },
442
+ "layers.18.ffn.gate": {
443
+ "bits": 16,
444
+ "data_type": "float"
445
+ },
446
+ "layers.19.attn.compressor.wgate": {
447
+ "bits": 16,
448
+ "data_type": "float"
449
+ },
450
+ "layers.19.attn.compressor.wkv": {
451
+ "bits": 16,
452
+ "data_type": "float"
453
+ },
454
+ "layers.19.attn.wo_a": {
455
+ "bits": 16,
456
+ "data_type": "float"
457
+ },
458
+ "layers.19.ffn.gate": {
459
+ "bits": 16,
460
+ "data_type": "float"
461
+ },
462
+ "layers.24.attn.compressor.wgate": {
463
+ "bits": 16,
464
+ "data_type": "float"
465
+ },
466
+ "layers.24.attn.compressor.wkv": {
467
+ "bits": 16,
468
+ "data_type": "float"
469
+ },
470
+ "layers.24.attn.indexer.compressor.wgate": {
471
+ "bits": 16,
472
+ "data_type": "float"
473
+ },
474
+ "layers.24.attn.indexer.compressor.wkv": {
475
+ "bits": 16,
476
+ "data_type": "float"
477
+ },
478
+ "layers.24.attn.indexer.weights_proj": {
479
+ "bits": 16,
480
+ "data_type": "float"
481
+ },
482
+ "layers.24.attn.wo_a": {
483
+ "bits": 16,
484
+ "data_type": "float"
485
+ },
486
+ "layers.24.ffn.gate": {
487
+ "bits": 16,
488
+ "data_type": "float"
489
+ },
490
+ "layers.20.attn.compressor.wgate": {
491
+ "bits": 16,
492
+ "data_type": "float"
493
+ },
494
+ "layers.20.attn.compressor.wkv": {
495
+ "bits": 16,
496
+ "data_type": "float"
497
+ },
498
+ "layers.20.attn.indexer.compressor.wgate": {
499
+ "bits": 16,
500
+ "data_type": "float"
501
+ },
502
+ "layers.20.attn.indexer.compressor.wkv": {
503
+ "bits": 16,
504
+ "data_type": "float"
505
+ },
506
+ "layers.20.attn.indexer.weights_proj": {
507
+ "bits": 16,
508
+ "data_type": "float"
509
+ },
510
+ "layers.20.attn.wo_a": {
511
+ "bits": 16,
512
+ "data_type": "float"
513
+ },
514
+ "layers.20.ffn.gate": {
515
+ "bits": 16,
516
+ "data_type": "float"
517
+ },
518
+ "layers.21.attn.compressor.wgate": {
519
+ "bits": 16,
520
+ "data_type": "float"
521
+ },
522
+ "layers.21.attn.compressor.wkv": {
523
+ "bits": 16,
524
+ "data_type": "float"
525
+ },
526
+ "layers.21.attn.wo_a": {
527
+ "bits": 16,
528
+ "data_type": "float"
529
+ },
530
+ "layers.21.ffn.gate": {
531
+ "bits": 16,
532
+ "data_type": "float"
533
+ },
534
+ "layers.22.attn.compressor.wgate": {
535
+ "bits": 16,
536
+ "data_type": "float"
537
+ },
538
+ "layers.22.attn.compressor.wkv": {
539
+ "bits": 16,
540
+ "data_type": "float"
541
+ },
542
+ "layers.22.attn.indexer.compressor.wgate": {
543
+ "bits": 16,
544
+ "data_type": "float"
545
+ },
546
+ "layers.22.attn.indexer.compressor.wkv": {
547
+ "bits": 16,
548
+ "data_type": "float"
549
+ },
550
+ "layers.22.attn.indexer.weights_proj": {
551
+ "bits": 16,
552
+ "data_type": "float"
553
+ },
554
+ "layers.22.attn.wo_a": {
555
+ "bits": 16,
556
+ "data_type": "float"
557
+ },
558
+ "layers.22.ffn.gate": {
559
+ "bits": 16,
560
+ "data_type": "float"
561
+ },
562
+ "layers.23.attn.compressor.wgate": {
563
+ "bits": 16,
564
+ "data_type": "float"
565
+ },
566
+ "layers.23.attn.compressor.wkv": {
567
+ "bits": 16,
568
+ "data_type": "float"
569
+ },
570
+ "layers.23.attn.wo_a": {
571
+ "bits": 16,
572
+ "data_type": "float"
573
+ },
574
+ "layers.23.ffn.gate": {
575
+ "bits": 16,
576
+ "data_type": "float"
577
+ },
578
+ "layers.25.attn.compressor.wgate": {
579
+ "bits": 16,
580
+ "data_type": "float"
581
+ },
582
+ "layers.25.attn.compressor.wkv": {
583
+ "bits": 16,
584
+ "data_type": "float"
585
+ },
586
+ "layers.25.attn.wo_a": {
587
+ "bits": 16,
588
+ "data_type": "float"
589
+ },
590
+ "layers.25.ffn.gate": {
591
+ "bits": 16,
592
+ "data_type": "float"
593
+ },
594
+ "layers.26.attn.compressor.wgate": {
595
+ "bits": 16,
596
+ "data_type": "float"
597
+ },
598
+ "layers.26.attn.compressor.wkv": {
599
+ "bits": 16,
600
+ "data_type": "float"
601
+ },
602
+ "layers.26.attn.indexer.compressor.wgate": {
603
+ "bits": 16,
604
+ "data_type": "float"
605
+ },
606
+ "layers.26.attn.indexer.compressor.wkv": {
607
+ "bits": 16,
608
+ "data_type": "float"
609
+ },
610
+ "layers.26.attn.indexer.weights_proj": {
611
+ "bits": 16,
612
+ "data_type": "float"
613
+ },
614
+ "layers.26.attn.wo_a": {
615
+ "bits": 16,
616
+ "data_type": "float"
617
+ },
618
+ "layers.26.ffn.gate": {
619
+ "bits": 16,
620
+ "data_type": "float"
621
+ },
622
+ "layers.27.attn.compressor.wgate": {
623
+ "bits": 16,
624
+ "data_type": "float"
625
+ },
626
+ "layers.27.attn.compressor.wkv": {
627
+ "bits": 16,
628
+ "data_type": "float"
629
+ },
630
+ "layers.27.attn.wo_a": {
631
+ "bits": 16,
632
+ "data_type": "float"
633
+ },
634
+ "layers.27.ffn.gate": {
635
+ "bits": 16,
636
+ "data_type": "float"
637
+ },
638
+ "layers.28.attn.compressor.wgate": {
639
+ "bits": 16,
640
+ "data_type": "float"
641
+ },
642
+ "layers.28.attn.compressor.wkv": {
643
+ "bits": 16,
644
+ "data_type": "float"
645
+ },
646
+ "layers.28.attn.indexer.compressor.wgate": {
647
+ "bits": 16,
648
+ "data_type": "float"
649
+ },
650
+ "layers.28.attn.indexer.compressor.wkv": {
651
+ "bits": 16,
652
+ "data_type": "float"
653
+ },
654
+ "layers.28.attn.indexer.weights_proj": {
655
+ "bits": 16,
656
+ "data_type": "float"
657
+ },
658
+ "layers.28.attn.wo_a": {
659
+ "bits": 16,
660
+ "data_type": "float"
661
+ },
662
+ "layers.28.ffn.gate": {
663
+ "bits": 16,
664
+ "data_type": "float"
665
+ },
666
+ "layers.29.attn.compressor.wgate": {
667
+ "bits": 16,
668
+ "data_type": "float"
669
+ },
670
+ "layers.29.attn.compressor.wkv": {
671
+ "bits": 16,
672
+ "data_type": "float"
673
+ },
674
+ "layers.29.attn.wo_a": {
675
+ "bits": 16,
676
+ "data_type": "float"
677
+ },
678
+ "layers.29.ffn.gate": {
679
+ "bits": 16,
680
+ "data_type": "float"
681
+ },
682
+ "layers.31.attn.compressor.wgate": {
683
+ "bits": 16,
684
+ "data_type": "float"
685
+ },
686
+ "layers.31.attn.compressor.wkv": {
687
+ "bits": 16,
688
+ "data_type": "float"
689
+ },
690
+ "layers.31.attn.wo_a": {
691
+ "bits": 16,
692
+ "data_type": "float"
693
+ },
694
+ "layers.31.ffn.gate": {
695
+ "bits": 16,
696
+ "data_type": "float"
697
+ },
698
+ "layers.30.attn.compressor.wgate": {
699
+ "bits": 16,
700
+ "data_type": "float"
701
+ },
702
+ "layers.30.attn.compressor.wkv": {
703
+ "bits": 16,
704
+ "data_type": "float"
705
+ },
706
+ "layers.30.attn.indexer.compressor.wgate": {
707
+ "bits": 16,
708
+ "data_type": "float"
709
+ },
710
+ "layers.30.attn.indexer.compressor.wkv": {
711
+ "bits": 16,
712
+ "data_type": "float"
713
+ },
714
+ "layers.30.attn.indexer.weights_proj": {
715
+ "bits": 16,
716
+ "data_type": "float"
717
+ },
718
+ "layers.30.attn.wo_a": {
719
+ "bits": 16,
720
+ "data_type": "float"
721
+ },
722
+ "layers.30.ffn.gate": {
723
+ "bits": 16,
724
+ "data_type": "float"
725
+ },
726
+ "layers.32.attn.compressor.wgate": {
727
+ "bits": 16,
728
+ "data_type": "float"
729
+ },
730
+ "layers.32.attn.compressor.wkv": {
731
+ "bits": 16,
732
+ "data_type": "float"
733
+ },
734
+ "layers.32.attn.indexer.compressor.wgate": {
735
+ "bits": 16,
736
+ "data_type": "float"
737
+ },
738
+ "layers.32.attn.indexer.compressor.wkv": {
739
+ "bits": 16,
740
+ "data_type": "float"
741
+ },
742
+ "layers.32.attn.indexer.weights_proj": {
743
+ "bits": 16,
744
+ "data_type": "float"
745
+ },
746
+ "layers.32.attn.wo_a": {
747
+ "bits": 16,
748
+ "data_type": "float"
749
+ },
750
+ "layers.32.ffn.gate": {
751
+ "bits": 16,
752
+ "data_type": "float"
753
+ },
754
+ "layers.33.attn.compressor.wgate": {
755
+ "bits": 16,
756
+ "data_type": "float"
757
+ },
758
+ "layers.33.attn.compressor.wkv": {
759
+ "bits": 16,
760
+ "data_type": "float"
761
+ },
762
+ "layers.33.attn.wo_a": {
763
+ "bits": 16,
764
+ "data_type": "float"
765
+ },
766
+ "layers.33.ffn.gate": {
767
+ "bits": 16,
768
+ "data_type": "float"
769
+ },
770
+ "layers.35.attn.compressor.wgate": {
771
+ "bits": 16,
772
+ "data_type": "float"
773
+ },
774
+ "layers.35.attn.compressor.wkv": {
775
+ "bits": 16,
776
+ "data_type": "float"
777
+ },
778
+ "layers.35.attn.wo_a": {
779
+ "bits": 16,
780
+ "data_type": "float"
781
+ },
782
+ "layers.35.ffn.gate": {
783
+ "bits": 16,
784
+ "data_type": "float"
785
+ },
786
+ "layers.34.attn.compressor.wgate": {
787
+ "bits": 16,
788
+ "data_type": "float"
789
+ },
790
+ "layers.34.attn.compressor.wkv": {
791
+ "bits": 16,
792
+ "data_type": "float"
793
+ },
794
+ "layers.34.attn.indexer.compressor.wgate": {
795
+ "bits": 16,
796
+ "data_type": "float"
797
+ },
798
+ "layers.34.attn.indexer.compressor.wkv": {
799
+ "bits": 16,
800
+ "data_type": "float"
801
+ },
802
+ "layers.34.attn.indexer.weights_proj": {
803
+ "bits": 16,
804
+ "data_type": "float"
805
+ },
806
+ "layers.34.attn.wo_a": {
807
+ "bits": 16,
808
+ "data_type": "float"
809
+ },
810
+ "layers.34.ffn.gate": {
811
+ "bits": 16,
812
+ "data_type": "float"
813
+ },
814
+ "layers.37.attn.compressor.wgate": {
815
+ "bits": 16,
816
+ "data_type": "float"
817
+ },
818
+ "layers.37.attn.compressor.wkv": {
819
+ "bits": 16,
820
+ "data_type": "float"
821
+ },
822
+ "layers.37.attn.wo_a": {
823
+ "bits": 16,
824
+ "data_type": "float"
825
+ },
826
+ "layers.37.ffn.gate": {
827
+ "bits": 16,
828
+ "data_type": "float"
829
+ },
830
+ "layers.36.attn.compressor.wgate": {
831
+ "bits": 16,
832
+ "data_type": "float"
833
+ },
834
+ "layers.36.attn.compressor.wkv": {
835
+ "bits": 16,
836
+ "data_type": "float"
837
+ },
838
+ "layers.36.attn.indexer.compressor.wgate": {
839
+ "bits": 16,
840
+ "data_type": "float"
841
+ },
842
+ "layers.36.attn.indexer.compressor.wkv": {
843
+ "bits": 16,
844
+ "data_type": "float"
845
+ },
846
+ "layers.36.attn.indexer.weights_proj": {
847
+ "bits": 16,
848
+ "data_type": "float"
849
+ },
850
+ "layers.36.attn.wo_a": {
851
+ "bits": 16,
852
+ "data_type": "float"
853
+ },
854
+ "layers.36.ffn.gate": {
855
+ "bits": 16,
856
+ "data_type": "float"
857
+ },
858
+ "head": {
859
+ "bits": 16,
860
+ "data_type": "float"
861
+ },
862
+ "layers.38.attn.compressor.wgate": {
863
+ "bits": 16,
864
+ "data_type": "float"
865
+ },
866
+ "layers.38.attn.compressor.wkv": {
867
+ "bits": 16,
868
+ "data_type": "float"
869
+ },
870
+ "layers.38.attn.indexer.compressor.wgate": {
871
+ "bits": 16,
872
+ "data_type": "float"
873
+ },
874
+ "layers.38.attn.indexer.compressor.wkv": {
875
+ "bits": 16,
876
+ "data_type": "float"
877
+ },
878
+ "layers.38.attn.indexer.weights_proj": {
879
+ "bits": 16,
880
+ "data_type": "float"
881
+ },
882
+ "layers.38.attn.wo_a": {
883
+ "bits": 16,
884
+ "data_type": "float"
885
+ },
886
+ "layers.38.ffn.gate": {
887
+ "bits": 16,
888
+ "data_type": "float"
889
+ },
890
+ "layers.39.attn.compressor.wgate": {
891
+ "bits": 16,
892
+ "data_type": "float"
893
+ },
894
+ "layers.39.attn.compressor.wkv": {
895
+ "bits": 16,
896
+ "data_type": "float"
897
+ },
898
+ "layers.39.attn.wo_a": {
899
+ "bits": 16,
900
+ "data_type": "float"
901
+ },
902
+ "layers.39.ffn.gate": {
903
+ "bits": 16,
904
+ "data_type": "float"
905
+ },
906
+ "layers.40.attn.compressor.wgate": {
907
+ "bits": 16,
908
+ "data_type": "float"
909
+ },
910
+ "layers.40.attn.compressor.wkv": {
911
+ "bits": 16,
912
+ "data_type": "float"
913
+ },
914
+ "layers.40.attn.indexer.compressor.wgate": {
915
+ "bits": 16,
916
+ "data_type": "float"
917
+ },
918
+ "layers.40.attn.indexer.compressor.wkv": {
919
+ "bits": 16,
920
+ "data_type": "float"
921
+ },
922
+ "layers.40.attn.indexer.weights_proj": {
923
+ "bits": 16,
924
+ "data_type": "float"
925
+ },
926
+ "layers.40.attn.wo_a": {
927
+ "bits": 16,
928
+ "data_type": "float"
929
+ },
930
+ "layers.40.ffn.gate": {
931
+ "bits": 16,
932
+ "data_type": "float"
933
+ },
934
+ "layers.41.attn.compressor.wgate": {
935
+ "bits": 16,
936
+ "data_type": "float"
937
+ },
938
+ "layers.41.attn.compressor.wkv": {
939
+ "bits": 16,
940
+ "data_type": "float"
941
+ },
942
+ "layers.41.attn.wo_a": {
943
+ "bits": 16,
944
+ "data_type": "float"
945
+ },
946
+ "layers.41.ffn.gate": {
947
+ "bits": 16,
948
+ "data_type": "float"
949
+ },
950
+ "layers.42.attn.compressor.wgate": {
951
+ "bits": 16,
952
+ "data_type": "float"
953
+ },
954
+ "layers.42.attn.compressor.wkv": {
955
+ "bits": 16,
956
+ "data_type": "float"
957
+ },
958
+ "layers.42.attn.indexer.compressor.wgate": {
959
+ "bits": 16,
960
+ "data_type": "float"
961
+ },
962
+ "layers.42.attn.indexer.compressor.wkv": {
963
+ "bits": 16,
964
+ "data_type": "float"
965
+ },
966
+ "layers.42.attn.indexer.weights_proj": {
967
+ "bits": 16,
968
+ "data_type": "float"
969
+ },
970
+ "layers.42.attn.wo_a": {
971
+ "bits": 16,
972
+ "data_type": "float"
973
+ },
974
+ "layers.42.ffn.gate": {
975
+ "bits": 16,
976
+ "data_type": "float"
977
+ },
978
+ "mtp.0.attn.wo_a": {
979
+ "bits": 16,
980
+ "data_type": "float"
981
+ },
982
+ "mtp.0.ffn.gate": {
983
+ "bits": 16,
984
+ "data_type": "float"
985
+ },
986
+ "mtp.1.attn.wo_a": {
987
+ "bits": 16,
988
+ "data_type": "float"
989
+ },
990
+ "mtp.1.ffn.gate": {
991
+ "bits": 16,
992
+ "data_type": "float"
993
+ },
994
+ "mtp.2.attn.wo_a": {
995
+ "bits": 16,
996
+ "data_type": "float"
997
+ },
998
+ "mtp.2.confidence_head.proj": {
999
+ "bits": 16,
1000
+ "data_type": "float"
1001
+ },
1002
+ "mtp.2.ffn.gate": {
1003
+ "bits": 16,
1004
+ "data_type": "float"
1005
+ },
1006
+ "mtp.2.markov_head.markov_w1": {
1007
+ "bits": 16,
1008
+ "data_type": "float"
1009
+ },
1010
+ "mtp.2.markov_head.markov_w2": {
1011
+ "bits": 16,
1012
+ "data_type": "float"
1013
+ }
1014
+ }
1015
+ },
1016
+ "rms_norm_eps": 1e-06,
1017
+ "rope_scaling": {
1018
+ "beta_fast": 32,
1019
+ "beta_slow": 1,
1020
+ "factor": 16,
1021
+ "original_max_position_embeddings": 65536,
1022
+ "type": "yarn"
1023
+ },
1024
+ "rope_theta": 10000,
1025
+ "routed_scaling_factor": 1.5,
1026
+ "scoring_func": "sqrtsoftplus",
1027
+ "sliding_window": 128,
1028
+ "swiglu_limit": 10.0,
1029
+ "tie_word_embeddings": false,
1030
+ "topk_method": "noaux_tc",
1031
+ "torch_dtype": "bfloat16",
1032
+ "transformers_version": "4.57.1",
1033
+ "use_cache": true,
1034
+ "vocab_size": 129280,
1035
+ "compress_rope_theta": 160000,
1036
+ "compress_ratios": [
1037
+ 0,
1038
+ 0,
1039
+ 4,
1040
+ 128,
1041
+ 4,
1042
+ 128,
1043
+ 4,
1044
+ 128,
1045
+ 4,
1046
+ 128,
1047
+ 4,
1048
+ 128,
1049
+ 4,
1050
+ 128,
1051
+ 4,
1052
+ 128,
1053
+ 4,
1054
+ 128,
1055
+ 4,
1056
+ 128,
1057
+ 4,
1058
+ 128,
1059
+ 4,
1060
+ 128,
1061
+ 4,
1062
+ 128,
1063
+ 4,
1064
+ 128,
1065
+ 4,
1066
+ 128,
1067
+ 4,
1068
+ 128,
1069
+ 4,
1070
+ 128,
1071
+ 4,
1072
+ 128,
1073
+ 4,
1074
+ 128,
1075
+ 4,
1076
+ 128,
1077
+ 4,
1078
+ 128,
1079
+ 4,
1080
+ 0,
1081
+ 0,
1082
+ 0
1083
+ ],
1084
+ "dspark_block_size": 5,
1085
+ "dspark_noise_token_id": 128799,
1086
+ "dspark_target_layer_ids": [
1087
+ 40,
1088
+ 41,
1089
+ 42
1090
+ ],
1091
+ "dspark_markov_rank": 256
1092
+ }
encoding/README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DeepSeek-V4 Encoding
2
+
3
+ This document describes the prompt encoding format used by DeepSeek-V4 series models. The encoding handles multi-turn conversations, tool calling, extended thinking (reasoning), and quick instruction tasks.
4
+
5
+ A self-contained reference implementation is provided in `encoding_dsv4.py`.
6
+
7
+ ## Quick Start
8
+
9
+ ```python
10
+ from encoding_dsv4 import encode_messages, parse_message_from_completion_text
11
+
12
+ # Encode a conversation
13
+ messages = [
14
+ {"role": "system", "content": "You are a helpful assistant."},
15
+ {"role": "user", "content": "What is 2+2?"},
16
+ ]
17
+ prompt = encode_messages(messages, thinking_mode="thinking")
18
+ # => "<|begin▁of▁sentence|>You are a helpful assistant.<|User|>What is 2+2?<|Assistant|><think>"
19
+
20
+ # Parse model output back to structured message
21
+ completion = "Simple arithmetic.</think>2 + 2 = 4.<|end▁of▁sentence|>"
22
+ parsed = parse_message_from_completion_text(completion, thinking_mode="thinking")
23
+ # => {"role": "assistant", "reasoning_content": "Simple arithmetic.", "content": "2 + 2 = 4.", "tool_calls": []}
24
+ ```
25
+
26
+ > **Note:** The `parse_message_from_completion_text` function is designed to handle well-formatted model output only. It does not attempt to correct or recover from malformed output that the model might occasionally generate. For production use, additional error handling is recommended.
27
+
28
+ ## Message Format
29
+
30
+ ### Special Tokens
31
+
32
+ | Token | Purpose |
33
+ |-------|---------|
34
+ | `<|begin▁of▁sentence|>` | Beginning of sequence (BOS) |
35
+ | `<|end▁of▁sentence|>` | End of assistant turn (EOS) |
36
+ | `<|User|>` | User turn prefix |
37
+ | `<|Assistant|>` | Assistant turn prefix |
38
+ | `<|latest_reminder|>` | Latest reminder (date, locale, etc.) |
39
+ | `<think>` / `</think>` | Reasoning block delimiters |
40
+ | `|DSML|` | DSML markup token |
41
+
42
+ ### Roles
43
+
44
+ The encoding supports the following message roles: `system`, `user`, `assistant`, `tool`, `latest_reminder`, and `developer`.
45
+
46
+ > **Note on the `developer` role:** The `developer` role is used exclusively in the internal search agent pipeline. It is not needed for general-purpose chat or tool-calling tasks, and the official API does not accept messages with this role.
47
+
48
+ ### Basic Chat
49
+
50
+ A simple multi-turn conversation is encoded as:
51
+
52
+ ```
53
+ <|begin▁of▁sentence|>{system_prompt}
54
+ <|User|>{user_message}<|Assistant|></think>{response}<|end▁of▁sentence|>
55
+ <|User|>{user_message_2}<|Assistant|></think>{response_2}<|end▁of▁sentence|>
56
+ ```
57
+
58
+ - The BOS token is prepended at the very beginning of the conversation.
59
+ - In **chat mode** (`thinking_mode="chat"`), `</think>` is placed right after `<|Assistant|>` to immediately close the thinking block, so the model generates content directly.
60
+
61
+ ### Interleaved Thinking Mode
62
+
63
+ In **thinking mode** (`thinking_mode="thinking"`), the model produces explicit reasoning inside `<think>...</think>` blocks before responding.
64
+
65
+ ```
66
+ <|begin▁of▁sentence|>{system_prompt}
67
+ <|User|>{message}<|Assistant|><think>{reasoning}</think>{response}<|end▁of▁sentence|>
68
+ ```
69
+
70
+ The `drop_thinking` parameter (default `True`) controls whether reasoning from earlier turns is preserved:
71
+
72
+ - **Without tools**: `drop_thinking` takes effect. Reasoning content from assistant turns **before** the last user message is stripped. Only the final assistant turn retains its `<think>...</think>` block.
73
+ - **With tools** (on system or developer message): `drop_thinking` is automatically disabled. All turns retain their reasoning, because tool-calling conversations require full context for the model to track multi-step reasoning across tool calls.
74
+
75
+ ### Tool Calling (DSML Format)
76
+
77
+ Tools are defined on the `system` or `developer` message via the `tools` field (OpenAI-compatible format). When tools are present, the following schema block is injected into the system/user prompt:
78
+
79
+ ```
80
+ ## Tools
81
+
82
+ You have access to a set of tools to help answer the user's question. You can invoke tools by writing a "<|DSML|tool_calls>" block like the following:
83
+
84
+ <|DSML|tool_calls>
85
+ <|DSML|invoke name="$TOOL_NAME">
86
+ <|DSML|parameter name="$PARAMETER_NAME" string="true|false">$PARAMETER_VALUE</|DSML|parameter>
87
+ ...
88
+ </|DSML|invoke>
89
+ <|DSML|invoke name="$TOOL_NAME2">
90
+ ...
91
+ </|DSML|invoke>
92
+ </|DSML|tool_calls>
93
+
94
+ String parameters should be specified as is and set `string="true"`. For all other types (numbers, booleans, arrays, objects), pass the value in JSON format and set `string="false"`.
95
+
96
+ If thinking_mode is enabled (triggered by <think>), you MUST output your complete reasoning inside <think>...</think> BEFORE any tool calls or final response.
97
+
98
+ Otherwise, output directly after </think> with tool calls or final response.
99
+
100
+ ### Available Tool Schemas
101
+
102
+ {tool_definitions_json}
103
+
104
+ You MUST strictly follow the above defined tool name and parameter schemas to invoke tool calls.
105
+ ```
106
+
107
+ An actual tool call in the assistant turn looks like:
108
+
109
+ ```xml
110
+ <|DSML|tool_calls>
111
+ <|DSML|invoke name="function_name">
112
+ <|DSML|parameter name="param" string="true">string_value</|DSML|parameter>
113
+ <|DSML|parameter name="count" string="false">5</|DSML|parameter>
114
+ </|DSML|invoke>
115
+ </|DSML|tool_calls><|end▁of▁sentence|>
116
+ ```
117
+
118
+ - `string="true"`: the parameter value is a raw string.
119
+ - `string="false"`: the parameter value is JSON (number, boolean, array, object).
120
+
121
+ Tool execution results are wrapped in `<tool_result>` tags within user messages:
122
+
123
+ ```
124
+ <|User|><tool_result>{result_json}</tool_result><|Assistant|><think>...
125
+ ```
126
+
127
+ When multiple tool results are present, they are sorted by the order of the corresponding `tool_calls` in the preceding assistant message.
128
+
129
+ ### Reasoning Effort
130
+
131
+ In thinking mode, the `reasoning_effort` parameter selects one of three levels, which control how much deliberation the model spends before answering. The level is realized purely as a text prefix prepended at the very beginning of the prompt (before the system message); the rest of the encoding is identical across levels.
132
+
133
+ | `reasoning_effort` | Prompt prefix |
134
+ |:---|:---|
135
+ | `"low"` (default) | none |
136
+ | `"high"` | `Reasoning Effort: Absolute maximum ...` |
137
+ | `"max"` | `Reasoning Effort: Beyond maximum ...` |
138
+
139
+ `reasoning_effort` has no effect in chat mode (`thinking_mode="chat"`), where the model does not produce a reasoning block at all.
140
+
141
+ The full prefix text for `"high"`:
142
+
143
+ ```
144
+ Reasoning Effort: Absolute maximum with no shortcuts permitted.
145
+ You MUST be very thorough in your thinking and comprehensively decompose the problem to resolve the root cause, rigorously stress-testing your logic against all potential paths, edge cases, and adversarial scenarios.
146
+ Explicitly write out your entire deliberation process, documenting every intermediate step, considered alternative, and rejected hypothesis to ensure absolutely no assumption is left unchecked.
147
+ ```
148
+
149
+ And for `"max"`:
150
+
151
+ ```
152
+ Reasoning Effort: Beyond maximum — exhaustive, relentless, and uncompromising.
153
+ You MUST reason with the utmost depth and rigor, leaving absolutely nothing to chance: exhaustively decompose the problem into its most fundamental components, trace every causal chain to its root, and resolve the underlying cause rather than any surface symptom.
154
+ Do not stop reasoning until you have independently verified the solution from multiple angles and are certain that no assumption remains unchecked and no error remains undiscovered.
155
+ ```
156
+
157
+ ### Quick Instruction Special Tokens
158
+
159
+ Quick instruction tokens are used for auxiliary classification and generation tasks. They are appended to messages via the `"task"` field to trigger specialized model behavior for a single-token or short-form output.
160
+
161
+ | Special Token | Description | Format |
162
+ |:---|:---|:---|
163
+ | `<|action|>` | Determines whether the user prompt requires a web search or can be answered directly. | `...<|User|>{prompt}<|Assistant|><think><|action|>` |
164
+ | `<|title|>` | Generates a concise conversation title after the first assistant response. | `...<|Assistant|>{response}<|end▁of▁sentence|><|title|>` |
165
+ | `<|query|>` | Generates search queries for the user prompt. | `...<|User|>{prompt}<|query|>` |
166
+ | `<|authority|>` | Classifies the user prompt's demand for source authoritativeness. | `...<|User|>{prompt}<|authority|>` |
167
+ | `<|domain|>` | Identifies the domain of the user prompt. | `...<|User|>{prompt}<|domain|>` |
168
+ | `<|extracted_url|>` `<|read_url|>` | Determines whether each URL in the user prompt should be fetched and read. | `...<|User|>{prompt}<|extracted_url|>{url}<|read_url|>` |
169
+
170
+ Usage in message format:
171
+
172
+ - **`action`** on a user message: the `<|action|>` token is placed after the assistant prefix and thinking token, triggering a routing decision (e.g., "Search" or "Answer").
173
+ - **Other tasks** (`query`, `authority`, `domain`, `read_url`) on a user message: the task token is appended directly after the user content.
174
+ - **`title`** on an assistant message: the `<|title|>` token is appended after the assistant's EOS. The next assistant message provides the generated title.
encoding/encoding_dsv4.py ADDED
@@ -0,0 +1,760 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ DeepSeek-V4 Encoding
3
+
4
+ A self-contained implementation for encoding/decoding DeepSeek-V4 chat messages
5
+ with tool calling, thinking mode, and quick instruction task support.
6
+ """
7
+
8
+ from typing import Any, Dict, List, Union, Optional, Tuple
9
+ import copy
10
+ import json
11
+ import re
12
+
13
+ # ============================================================
14
+ # Special Tokens
15
+ # ============================================================
16
+
17
+ bos_token: str = "<|begin▁of▁sentence|>"
18
+ eos_token: str = "<|end▁of▁sentence|>"
19
+ thinking_start_token: str = "<think>"
20
+ thinking_end_token: str = "</think>"
21
+ dsml_token: str = "|DSML|"
22
+
23
+ USER_SP_TOKEN = "<|User|>"
24
+ ASSISTANT_SP_TOKEN = "<|Assistant|>"
25
+ LATEST_REMINDER_SP_TOKEN = "<|latest_reminder|>"
26
+
27
+ # Task special tokens for internal classification tasks
28
+ DS_TASK_SP_TOKENS = {
29
+ "action": "<|action|>",
30
+ "query": "<|query|>",
31
+ "authority": "<|authority|>",
32
+ "domain": "<|domain|>",
33
+ "title": "<|title|>",
34
+ "read_url": "<|read_url|>",
35
+ }
36
+ VALID_TASKS = set(DS_TASK_SP_TOKENS.keys())
37
+
38
+ # ============================================================
39
+ # Templates
40
+ # ============================================================
41
+
42
+ system_msg_template: str = "{content}"
43
+ user_msg_template: str = "{content}"
44
+ latest_reminder_msg_template: str = "{content}"
45
+ assistant_msg_template: str = "{reasoning}{content}{tool_calls}" + eos_token
46
+ assistant_msg_wo_eos_template: str = "{reasoning}{content}{tool_calls}"
47
+ thinking_template: str = "{reasoning_content}"
48
+
49
+ response_format_template: str = (
50
+ "## Response Format:\n\nYou MUST strictly adhere to the following schema to reply:\n{schema}"
51
+ )
52
+ tool_call_template: str = (
53
+ "<{dsml_token}invoke name=\"{name}\">\n{arguments}\n</{dsml_token}invoke>"
54
+ )
55
+ tool_calls_template = (
56
+ "<{dsml_token}{tc_block_name}>\n{tool_calls}\n</{dsml_token}{tc_block_name}>"
57
+ )
58
+ tool_calls_block_name: str = "tool_calls"
59
+
60
+ tool_output_template: str = (
61
+ "<tool_result>{content}</tool_result>"
62
+ )
63
+
64
+ # Reasoning effort levels. In thinking mode, the prompt for the selected level is
65
+ # prepended at the very beginning of the conversation. `low` is the default and
66
+ # adds nothing.
67
+ REASONING_EFFORT_PROMPTS: Dict[str, str] = {
68
+ "low": "",
69
+ "high": (
70
+ "Reasoning Effort: Absolute maximum with no shortcuts permitted.\n"
71
+ "You MUST be very thorough in your thinking and comprehensively decompose the problem to resolve the root cause, rigorously stress-testing your logic against all potential paths, edge cases, and adversarial scenarios.\n"
72
+ "Explicitly write out your entire deliberation process, documenting every intermediate step, considered alternative, and rejected hypothesis to ensure absolutely no assumption is left unchecked.\n\n"
73
+ ),
74
+ "max": (
75
+ "Reasoning Effort: Beyond maximum — exhaustive, relentless, and uncompromising.\n"
76
+ "You MUST reason with the utmost depth and rigor, leaving absolutely nothing to chance: exhaustively decompose the problem into its most fundamental components, trace every causal chain to its root, and resolve the underlying cause rather than any surface symptom.\n"
77
+ "Do not stop reasoning until you have independently verified the solution from multiple angles and are certain that no assumption remains unchecked and no error remains undiscovered.\n\n"
78
+ ),
79
+ }
80
+ DEFAULT_REASONING_EFFORT = "low"
81
+
82
+ TOOLS_TEMPLATE = """## Tools
83
+
84
+ You have access to a set of tools to help answer the user's question. You can invoke tools by writing a "<{dsml_token}tool_calls>" block like the following:
85
+
86
+ <{dsml_token}tool_calls>
87
+ <{dsml_token}invoke name="$TOOL_NAME">
88
+ <{dsml_token}parameter name="$PARAMETER_NAME" string="true|false">$PARAMETER_VALUE</{dsml_token}parameter>
89
+ ...
90
+ </{dsml_token}invoke>
91
+ <{dsml_token}invoke name="$TOOL_NAME2">
92
+ ...
93
+ </{dsml_token}invoke>
94
+ </{dsml_token}tool_calls>
95
+
96
+ String parameters should be specified as is and set `string="true"`. For all other types (numbers, booleans, arrays, objects), pass the value in JSON format and set `string="false"`.
97
+
98
+ If thinking_mode is enabled (triggered by {thinking_start_token}), you MUST output your complete reasoning inside {thinking_start_token}...{thinking_end_token} BEFORE any tool calls or final response.
99
+
100
+ Otherwise, output directly after {thinking_end_token} with tool calls or final response.
101
+
102
+ ### Available Tool Schemas
103
+
104
+ {tool_schemas}
105
+
106
+ You MUST strictly follow the above defined tool name and parameter schemas to invoke tool calls.
107
+ """
108
+
109
+ # ============================================================
110
+ # Utility Functions
111
+ # ============================================================
112
+
113
+ def to_json(value: Any) -> str:
114
+ """Serialize a value to JSON string."""
115
+ try:
116
+ return json.dumps(value, ensure_ascii=False)
117
+ except:
118
+ return json.dumps(value, ensure_ascii=True)
119
+
120
+
121
+ def tools_from_openai_format(tools):
122
+ """Extract function definitions from OpenAI-format tool list."""
123
+ return [tool["function"] for tool in tools]
124
+
125
+
126
+ def tool_calls_from_openai_format(tool_calls):
127
+ """Convert OpenAI-format tool calls to internal format."""
128
+ return [
129
+ {
130
+ "name": tool_call["function"]["name"],
131
+ "arguments": tool_call["function"]["arguments"],
132
+ }
133
+ for tool_call in tool_calls
134
+ ]
135
+
136
+
137
+ def tool_calls_to_openai_format(tool_calls):
138
+ """Convert internal tool calls to OpenAI format."""
139
+ return [
140
+ {
141
+ "type": "function",
142
+ "function": {
143
+ "name": tool_call["name"],
144
+ "arguments": tool_call["arguments"],
145
+ }
146
+ }
147
+ for tool_call in tool_calls
148
+ ]
149
+
150
+
151
+ def encode_arguments_to_dsml(tool_call: Dict[str, str]) -> str:
152
+ """
153
+ Encode tool call arguments into DSML parameter format.
154
+
155
+ Args:
156
+ tool_call: Dict with "name" and "arguments" (JSON string) keys.
157
+
158
+ Returns:
159
+ DSML-formatted parameter string.
160
+ """
161
+ p_dsml_template = '<{dsml_token}parameter name="{key}" string="{is_str}">{value}</{dsml_token}parameter>'
162
+ P_dsml_strs = []
163
+
164
+ try:
165
+ arguments = json.loads(tool_call["arguments"])
166
+ except Exception as err:
167
+ arguments = {"arguments": tool_call["arguments"]}
168
+
169
+ for k, v in arguments.items():
170
+ p_dsml_str = p_dsml_template.format(
171
+ dsml_token=dsml_token,
172
+ key=k,
173
+ is_str="true" if isinstance(v, str) else "false",
174
+ value=v if isinstance(v, str) else to_json(v),
175
+ )
176
+ P_dsml_strs.append(p_dsml_str)
177
+
178
+ return "\n".join(P_dsml_strs)
179
+
180
+
181
+ def decode_dsml_to_arguments(tool_name: str, tool_args: Dict[str, Tuple[str, str]]) -> Dict[str, str]:
182
+ """
183
+ Decode DSML parameters back to a tool call dict.
184
+
185
+ Args:
186
+ tool_name: Name of the tool.
187
+ tool_args: Dict mapping param_name -> (value, is_string_flag).
188
+
189
+ Returns:
190
+ Dict with "name" and "arguments" (JSON string) keys.
191
+ """
192
+ def _decode_value(key: str, value: str, string: str):
193
+ if string == "true":
194
+ value = to_json(value)
195
+ return f"{to_json(key)}: {value}"
196
+
197
+ tool_args_json = "{" + ", ".join([_decode_value(k, v, string=is_str) for k, (v, is_str) in tool_args.items()]) + "}"
198
+ return dict(name=tool_name, arguments=tool_args_json)
199
+
200
+
201
+ def render_tools(tools: List[Dict[str, Union[str, Dict[str, Any]]]]) -> str:
202
+ """
203
+ Render tool schemas into the system prompt format.
204
+
205
+ Args:
206
+ tools: List of tool schema dicts (each with name, description, parameters).
207
+
208
+ Returns:
209
+ Formatted tools section string.
210
+ """
211
+ tools_json = [to_json(t) for t in tools]
212
+
213
+ return TOOLS_TEMPLATE.format(
214
+ tool_schemas="\n".join(tools_json),
215
+ dsml_token=dsml_token,
216
+ thinking_start_token=thinking_start_token,
217
+ thinking_end_token=thinking_end_token,
218
+ )
219
+
220
+
221
+ def find_last_user_index(messages: List[Dict[str, Any]]) -> int:
222
+ """Find the index of the last user/developer message."""
223
+ last_user_index = -1
224
+ for idx in range(len(messages) - 1, -1, -1):
225
+ if messages[idx].get("role") in ["user", "developer"]:
226
+ last_user_index = idx
227
+ break
228
+ return last_user_index
229
+
230
+
231
+ # ============================================================
232
+ # Message Rendering
233
+ # ============================================================
234
+
235
+ def render_message(index: int, messages: List[Dict[str, Any]], thinking_mode: str, drop_thinking: bool = True, reasoning_effort: Optional[str] = None) -> str:
236
+ """
237
+ Render a single message at the given index into its encoded string form.
238
+
239
+ This is the core function that converts each message in the conversation
240
+ into the DeepSeek-V4 format.
241
+
242
+ Args:
243
+ index: Index of the message to render.
244
+ messages: Full list of messages in the conversation.
245
+ thinking_mode: Either "chat" or "thinking".
246
+ drop_thinking: Whether to drop reasoning content from earlier turns.
247
+ reasoning_effort: Reasoning effort level, one of "low", "high", "max".
248
+ None is treated as "low".
249
+
250
+ Returns:
251
+ Encoded string for this message.
252
+ """
253
+ assert 0 <= index < len(messages)
254
+ assert thinking_mode in ["chat", "thinking"], f"Invalid thinking_mode `{thinking_mode}`"
255
+
256
+ prompt = ""
257
+ msg = messages[index]
258
+ last_user_idx = find_last_user_index(messages)
259
+
260
+ role = msg.get("role")
261
+ content = msg.get("content")
262
+ tools = msg.get("tools")
263
+ response_format = msg.get("response_format")
264
+ tool_calls = msg.get("tool_calls")
265
+ reasoning_content = msg.get("reasoning_content")
266
+ wo_eos = msg.get("wo_eos", False)
267
+
268
+ if tools:
269
+ tools = tools_from_openai_format(tools)
270
+ if tool_calls:
271
+ tool_calls = tool_calls_from_openai_format(tool_calls)
272
+
273
+ # Reasoning effort prefix (only at index 0 in thinking mode; "low" adds nothing)
274
+ reasoning_effort = reasoning_effort or DEFAULT_REASONING_EFFORT
275
+ assert reasoning_effort in REASONING_EFFORT_PROMPTS, \
276
+ f"Invalid reasoning effort: {reasoning_effort}, expected one of {list(REASONING_EFFORT_PROMPTS)}"
277
+ if index == 0 and thinking_mode == "thinking":
278
+ prompt += REASONING_EFFORT_PROMPTS[reasoning_effort]
279
+
280
+ if role == "system":
281
+ prompt += system_msg_template.format(content=content or "")
282
+ if tools:
283
+ prompt += "\n\n" + render_tools(tools)
284
+ if response_format:
285
+ prompt += "\n\n" + response_format_template.format(schema=to_json(response_format))
286
+
287
+ elif role == "developer":
288
+ assert content, f"Invalid message for role `{role}`: {msg}"
289
+
290
+ content_developer = USER_SP_TOKEN
291
+ content_developer += content
292
+
293
+ if tools:
294
+ content_developer += "\n\n" + render_tools(tools)
295
+ if response_format:
296
+ content_developer += "\n\n" + response_format_template.format(schema=to_json(response_format))
297
+
298
+ prompt += user_msg_template.format(content=content_developer)
299
+
300
+ elif role == "user":
301
+ prompt += USER_SP_TOKEN
302
+
303
+ # Handle content blocks (tool results mixed with text)
304
+ content_blocks = msg.get("content_blocks")
305
+ if content_blocks:
306
+ parts = []
307
+ for block in content_blocks:
308
+ block_type = block.get("type")
309
+ if block_type == "text":
310
+ parts.append(block.get("text", ""))
311
+ elif block_type == "tool_result":
312
+ tool_content = block.get("content", "")
313
+ if isinstance(tool_content, list):
314
+ text_parts = []
315
+ for b in tool_content:
316
+ if b.get("type") == "text":
317
+ text_parts.append(b.get("text", ""))
318
+ else:
319
+ text_parts.append(f"[Unsupported {b.get('type')}]")
320
+ tool_content = "\n\n".join(text_parts)
321
+ parts.append(tool_output_template.format(content=tool_content))
322
+ else:
323
+ parts.append(f"[Unsupported {block_type}]")
324
+ prompt += "\n\n".join(parts)
325
+ else:
326
+ prompt += content or ""
327
+
328
+ elif role == "latest_reminder":
329
+ prompt += LATEST_REMINDER_SP_TOKEN + latest_reminder_msg_template.format(content=content)
330
+
331
+ elif role == "tool":
332
+ raise NotImplementedError("deepseek_v4 merges tool messages into user; please preprocess with merge_tool_messages()")
333
+
334
+ elif role == "assistant":
335
+ thinking_part = ""
336
+ tc_content = ""
337
+
338
+ if tool_calls:
339
+ tc_list = [
340
+ tool_call_template.format(
341
+ dsml_token=dsml_token,
342
+ name=tc.get("name"),
343
+ arguments=encode_arguments_to_dsml(tc)
344
+ )
345
+ for tc in tool_calls
346
+ ]
347
+ tc_content += '\n\n' + tool_calls_template.format(
348
+ dsml_token=dsml_token,
349
+ tool_calls="\n".join(tc_list),
350
+ tc_block_name=tool_calls_block_name,
351
+ )
352
+
353
+ summary_content = content or ""
354
+ rc = reasoning_content or ""
355
+
356
+ # Check if previous message has a task - if so, this is a task output (no thinking)
357
+ prev_has_task = index - 1 >= 0 and messages[index - 1].get("task") is not None
358
+
359
+ if thinking_mode == "thinking" and not prev_has_task:
360
+ if not drop_thinking or index > last_user_idx:
361
+ thinking_part = thinking_template.format(reasoning_content=rc) + thinking_end_token
362
+ else:
363
+ thinking_part = ""
364
+
365
+ if wo_eos:
366
+ prompt += assistant_msg_wo_eos_template.format(
367
+ reasoning=thinking_part,
368
+ content=summary_content,
369
+ tool_calls=tc_content,
370
+ )
371
+ else:
372
+ prompt += assistant_msg_template.format(
373
+ reasoning=thinking_part,
374
+ content=summary_content,
375
+ tool_calls=tc_content,
376
+ )
377
+ else:
378
+ raise NotImplementedError(f"Unknown role: {role}")
379
+
380
+ # Append transition tokens based on what follows
381
+ if index + 1 < len(messages) and messages[index + 1].get("role") not in ["assistant", "latest_reminder"]:
382
+ return prompt
383
+
384
+ task = messages[index].get("task")
385
+ if task is not None:
386
+ # Task special token for internal classification tasks
387
+ assert task in VALID_TASKS, f"Invalid task: '{task}'. Valid tasks are: {list(VALID_TASKS)}"
388
+ task_sp_token = DS_TASK_SP_TOKENS[task]
389
+
390
+ if task != "action":
391
+ # Non-action tasks: append task sp token directly after the message
392
+ prompt += task_sp_token
393
+ else:
394
+ # Action task: append Assistant + thinking token + action sp token
395
+ prompt += ASSISTANT_SP_TOKEN
396
+ prompt += thinking_end_token if thinking_mode != "thinking" else thinking_start_token
397
+ prompt += task_sp_token
398
+
399
+ elif messages[index].get("role") in ["user", "developer"]:
400
+ # Normal generation: append Assistant + thinking token
401
+ prompt += ASSISTANT_SP_TOKEN
402
+ if not drop_thinking and thinking_mode == "thinking":
403
+ prompt += thinking_start_token
404
+ elif drop_thinking and thinking_mode == "thinking" and index >= last_user_idx:
405
+ prompt += thinking_start_token
406
+ else:
407
+ prompt += thinking_end_token
408
+
409
+ return prompt
410
+
411
+
412
+ # ============================================================
413
+ # Preprocessing
414
+ # ============================================================
415
+
416
+ def merge_tool_messages(messages: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
417
+ """
418
+ Merge tool messages into the preceding user message using content_blocks format.
419
+
420
+ DeepSeek-V4 does not have a standalone "tool" role; instead, tool results
421
+ are encoded as <tool_result> blocks within user messages.
422
+
423
+ This function converts a standard OpenAI-format conversation (with separate
424
+ "tool" role messages) into V4 format where tool results are merged into
425
+ user messages.
426
+
427
+ Args:
428
+ messages: List of message dicts in OpenAI format.
429
+
430
+ Returns:
431
+ Processed message list with tool messages merged into user messages.
432
+ """
433
+ merged: List[Dict[str, Any]] = []
434
+
435
+ for msg in messages:
436
+ msg = copy.deepcopy(msg)
437
+ role = msg.get("role")
438
+
439
+ if role == "tool":
440
+ # Convert tool message to a user message with tool_result block
441
+ tool_block = {
442
+ "type": "tool_result",
443
+ "tool_use_id": msg.get("tool_call_id", ""),
444
+ "content": msg.get("content", ""),
445
+ }
446
+ # Merge into previous message if it's already a user (merged tool)
447
+ if merged and merged[-1].get("role") == "user" and "content_blocks" in merged[-1]:
448
+ merged[-1]["content_blocks"].append(tool_block)
449
+ else:
450
+ merged.append({
451
+ "role": "user",
452
+ "content_blocks": [tool_block],
453
+ })
454
+ elif role == "user":
455
+ text_block = {"type": "text", "text": msg.get("content", "")}
456
+ if merged and merged[-1].get("role") == "user" and "content_blocks" in merged[-1] and merged[-1].get("task") is None:
457
+ merged[-1]["content_blocks"].append(text_block)
458
+ else:
459
+ new_msg = {
460
+ "role": "user",
461
+ "content": msg.get("content", ""),
462
+ "content_blocks": [text_block],
463
+ }
464
+ # Preserve extra fields (task, wo_eos, mask, etc.)
465
+ for key in ("task", "wo_eos", "mask"):
466
+ if key in msg:
467
+ new_msg[key] = msg[key]
468
+ merged.append(new_msg)
469
+ else:
470
+ merged.append(msg)
471
+
472
+ return merged
473
+
474
+
475
+ def sort_tool_results_by_call_order(messages: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
476
+ """
477
+ Sort tool_result blocks within user messages by the order of tool_calls
478
+ in the preceding assistant message.
479
+
480
+ Args:
481
+ messages: Preprocessed message list (after merge_tool_messages).
482
+
483
+ Returns:
484
+ Message list with sorted tool result blocks.
485
+ """
486
+ last_tool_call_order: Dict[str, int] = {}
487
+
488
+ for msg in messages:
489
+ role = msg.get("role")
490
+ if role == "assistant" and msg.get("tool_calls"):
491
+ last_tool_call_order = {}
492
+ for idx, tc in enumerate(msg["tool_calls"]):
493
+ tc_id = tc.get("id") or tc.get("function", {}).get("id", "")
494
+ if tc_id:
495
+ last_tool_call_order[tc_id] = idx
496
+
497
+ elif role == "user" and msg.get("content_blocks"):
498
+ tool_blocks = [b for b in msg["content_blocks"] if b.get("type") == "tool_result"]
499
+ if len(tool_blocks) > 1 and last_tool_call_order:
500
+ sorted_blocks = sorted(
501
+ tool_blocks,
502
+ key=lambda b: last_tool_call_order.get(b.get("tool_use_id", ""), 0)
503
+ )
504
+ sorted_idx = 0
505
+ new_blocks = []
506
+ for block in msg["content_blocks"]:
507
+ if block.get("type") == "tool_result":
508
+ new_blocks.append(sorted_blocks[sorted_idx])
509
+ sorted_idx += 1
510
+ else:
511
+ new_blocks.append(block)
512
+ msg["content_blocks"] = new_blocks
513
+
514
+ return messages
515
+
516
+
517
+ # ============================================================
518
+ # Main Encoding Function
519
+ # ============================================================
520
+
521
+ def encode_messages(
522
+ messages: List[Dict[str, Any]],
523
+ thinking_mode: str,
524
+ context: Optional[List[Dict[str, Any]]] = None,
525
+ drop_thinking: bool = True,
526
+ add_default_bos_token: bool = True,
527
+ reasoning_effort: Optional[str] = None,
528
+ ) -> str:
529
+ """
530
+ Encode a list of messages into the DeepSeek-V4 prompt format.
531
+
532
+ This is the main entry point for encoding conversations. It handles:
533
+ - BOS token insertion
534
+ - Thinking mode with optional reasoning content dropping
535
+ - Tool message merging into user messages
536
+ - Multi-turn conversation context
537
+
538
+ Args:
539
+ messages: List of message dicts to encode.
540
+ thinking_mode: Either "chat" or "thinking".
541
+ context: Optional preceding context messages (already encoded prefix).
542
+ drop_thinking: If True, drop reasoning_content from earlier assistant turns
543
+ (only keep reasoning for messages after the last user message).
544
+ add_default_bos_token: Whether to prepend BOS token at conversation start.
545
+ reasoning_effort: Reasoning effort level, one of "low", "high", "max".
546
+ Only takes effect in thinking mode. None is treated as "low".
547
+
548
+ Returns:
549
+ The encoded prompt string.
550
+ """
551
+ context = context if context else []
552
+
553
+ # Preprocess: merge tool messages and sort tool results
554
+ messages = merge_tool_messages(messages)
555
+ messages = sort_tool_results_by_call_order(context + messages)[len(context):]
556
+ if context:
557
+ context = merge_tool_messages(context)
558
+ context = sort_tool_results_by_call_order(context)
559
+
560
+ full_messages = context + messages
561
+
562
+ prompt = bos_token if add_default_bos_token and len(context) == 0 else ""
563
+
564
+ # Resolve drop_thinking: if any message has tools defined, don't drop thinking
565
+ effective_drop_thinking = drop_thinking
566
+ if any(m.get("tools") for m in full_messages):
567
+ effective_drop_thinking = False
568
+
569
+ if thinking_mode == "thinking" and effective_drop_thinking:
570
+ full_messages = _drop_thinking_messages(full_messages)
571
+ # After dropping, recalculate how many messages to render
572
+ # (context may have shrunk too)
573
+ num_to_render = len(full_messages) - len(_drop_thinking_messages(context))
574
+ context_len = len(full_messages) - num_to_render
575
+ else:
576
+ num_to_render = len(messages)
577
+ context_len = len(context)
578
+
579
+ for idx in range(num_to_render):
580
+ prompt += render_message(
581
+ idx + context_len,
582
+ full_messages,
583
+ thinking_mode=thinking_mode,
584
+ drop_thinking=effective_drop_thinking,
585
+ reasoning_effort=reasoning_effort,
586
+ )
587
+
588
+ return prompt
589
+
590
+
591
+ def _drop_thinking_messages(messages: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
592
+ """
593
+ Drop reasoning_content and non-essential messages before the last user message.
594
+
595
+ Behavior:
596
+ - Messages with role in ["user", "system", "tool", "latest_reminder"] are always kept.
597
+ - Messages at or after the last user index are always kept.
598
+ - Assistant messages before the last user get reasoning_content removed.
599
+ - Developer messages before the last user are dropped entirely.
600
+ """
601
+ last_user_idx = find_last_user_index(messages)
602
+ result = []
603
+ keep_roles = {"user", "system", "tool", "latest_reminder", "direct_search_results"}
604
+
605
+ for idx, msg in enumerate(messages):
606
+ role = msg.get("role")
607
+ if role in keep_roles or idx >= last_user_idx:
608
+ result.append(msg)
609
+ elif role == "assistant":
610
+ msg = copy.copy(msg)
611
+ msg.pop("reasoning_content", None)
612
+ result.append(msg)
613
+ # developer and other roles before last_user_idx are dropped
614
+
615
+ return result
616
+
617
+
618
+ # ============================================================
619
+ # Parsing (Decoding model output)
620
+ # ============================================================
621
+
622
+ def _read_until_stop(index: int, text: str, stop: List[str]) -> Tuple[int, str, Optional[str]]:
623
+ """
624
+ Read text from index until one of the stop strings is found.
625
+
626
+ Returns:
627
+ Tuple of (new_index, content_before_stop, matched_stop_string_or_None).
628
+ """
629
+ min_pos = len(text)
630
+ matched_stop = None
631
+
632
+ for s in stop:
633
+ pos = text.find(s, index)
634
+ if pos != -1 and pos < min_pos:
635
+ min_pos = pos
636
+ matched_stop = s
637
+
638
+ if matched_stop:
639
+ content = text[index:min_pos]
640
+ return min_pos + len(matched_stop), content, matched_stop
641
+ else:
642
+ content = text[index:]
643
+ return len(text), content, None
644
+
645
+
646
+ def parse_tool_calls(index: int, text: str) -> Tuple[int, Optional[str], List[Dict[str, str]]]:
647
+ """
648
+ Parse DSML tool calls from text starting at the given index.
649
+
650
+ Args:
651
+ index: Starting position in text.
652
+ text: The full text to parse.
653
+
654
+ Returns:
655
+ Tuple of (new_index, last_stop_token, list_of_tool_call_dicts).
656
+ Each tool call dict has "name" and "arguments" keys.
657
+ """
658
+ tool_calls: List[Dict[str, Any]] = []
659
+ stop_token = None
660
+ tool_calls_end_token = f"</{dsml_token}{tool_calls_block_name}>"
661
+
662
+ while index < len(text):
663
+ index, _, stop_token = _read_until_stop(index, text, [f"<{dsml_token}invoke", tool_calls_end_token])
664
+ if _ != ">\n":
665
+ raise ValueError(f"Tool call format error: expected '>\\n' but got '{_}'")
666
+
667
+ if stop_token == tool_calls_end_token:
668
+ break
669
+
670
+ if stop_token is None:
671
+ raise ValueError("Missing special token in tool calls")
672
+
673
+ index, tool_name_content, stop_token = _read_until_stop(index, text, [f"<{dsml_token}parameter", f"</{dsml_token}invoke"])
674
+
675
+ p_tool_name = re.findall(r'^\s*name="(.*?)">\n$', tool_name_content, flags=re.DOTALL)
676
+ if len(p_tool_name) != 1:
677
+ raise ValueError(f"Tool name format error: '{tool_name_content}'")
678
+ tool_name = p_tool_name[0]
679
+
680
+ tool_args: Dict[str, Tuple[str, str]] = {}
681
+ while stop_token == f"<{dsml_token}parameter":
682
+ index, param_content, stop_token = _read_until_stop(index, text, [f"/{dsml_token}parameter"])
683
+
684
+ param_kv = re.findall(r'^ name="(.*?)" string="(true|false)">(.*?)<$', param_content, flags=re.DOTALL)
685
+ if len(param_kv) != 1:
686
+ raise ValueError(f"Parameter format error: '{param_content}'")
687
+ param_name, string, param_value = param_kv[0]
688
+
689
+ if param_name in tool_args:
690
+ raise ValueError(f"Duplicate parameter name: '{param_name}'")
691
+ tool_args[param_name] = (param_value, string)
692
+
693
+ index, content, stop_token = _read_until_stop(index, text, [f"<{dsml_token}parameter", f"</{dsml_token}invoke"])
694
+ if content != ">\n":
695
+ raise ValueError(f"Parameter format error: expected '>\\n' but got '{content}'")
696
+
697
+ tool_call = decode_dsml_to_arguments(tool_name=tool_name, tool_args=tool_args)
698
+ tool_calls.append(tool_call)
699
+
700
+ return index, stop_token, tool_calls
701
+
702
+
703
+ def parse_message_from_completion_text(text: str, thinking_mode: str) -> Dict[str, Any]:
704
+ """
705
+ Parse a model completion text into a structured assistant message.
706
+
707
+ This function takes the raw text output from the model (a single assistant turn)
708
+ and extracts:
709
+ - reasoning_content (thinking block)
710
+ - content (summary/response)
711
+ - tool_calls (if any)
712
+
713
+ NOTE: This function is designed to parse only correctly formatted strings and
714
+ will raise ValueError for malformed output.
715
+
716
+ Args:
717
+ text: The raw completion text (including EOS token).
718
+ thinking_mode: Either "chat" or "thinking".
719
+
720
+ Returns:
721
+ Dict with keys: "role", "content", "reasoning_content", "tool_calls".
722
+ tool_calls are in OpenAI format.
723
+ """
724
+ summary_content, reasoning_content, tool_calls = "", "", []
725
+ index, stop_token = 0, None
726
+ tool_calls_start_token = f"\n\n<{dsml_token}{tool_calls_block_name}"
727
+
728
+ is_thinking = thinking_mode == "thinking"
729
+ is_tool_calling = False
730
+
731
+ if is_thinking:
732
+ index, content_delta, stop_token = _read_until_stop(index, text, [thinking_end_token, tool_calls_start_token])
733
+ reasoning_content = content_delta
734
+ assert stop_token == thinking_end_token, "Invalid thinking format: missing </think>"
735
+
736
+ index, content_delta, stop_token = _read_until_stop(index, text, [eos_token, tool_calls_start_token])
737
+ summary_content = content_delta
738
+ if stop_token == tool_calls_start_token:
739
+ is_tool_calling = True
740
+ else:
741
+ assert stop_token == eos_token, "Invalid format: missing EOS token"
742
+
743
+ if is_tool_calling:
744
+ index, stop_token, tool_calls = parse_tool_calls(index, text)
745
+
746
+ index, tool_ends_text, stop_token = _read_until_stop(index, text, [eos_token])
747
+ assert not tool_ends_text, "Unexpected content after tool calls"
748
+
749
+ assert len(text) == index and stop_token in [eos_token, None], "Unexpected content at end"
750
+
751
+ for sp_token in [bos_token, eos_token, thinking_start_token, thinking_end_token, dsml_token]:
752
+ assert sp_token not in summary_content and sp_token not in reasoning_content, \
753
+ f"Unexpected special token '{sp_token}' in content"
754
+
755
+ return {
756
+ "role": "assistant",
757
+ "content": summary_content,
758
+ "reasoning_content": reasoning_content,
759
+ "tool_calls": tool_calls_to_openai_format(tool_calls)
760
+ }
encoding/test_encoding_dsv4.py ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Test suite for DeepSeek-V4 Encoding.
3
+
4
+ Run: python test_encoding_dsv4.py
5
+ """
6
+
7
+ import json
8
+ import os
9
+
10
+ from encoding_dsv4 import encode_messages, parse_message_from_completion_text
11
+
12
+ TESTS_DIR = os.path.join(os.path.dirname(__file__), "tests")
13
+
14
+
15
+ def test_case_1():
16
+ """Thinking mode with tool calls (multi-turn, tool results merged into user)."""
17
+ with open(os.path.join(TESTS_DIR, "test_input_1.json")) as f:
18
+ td = json.load(f)
19
+ messages = td["messages"]
20
+ messages[0]["tools"] = td["tools"]
21
+ gold = open(os.path.join(TESTS_DIR, "test_output_1.txt")).read()
22
+ prompt = encode_messages(messages, thinking_mode="thinking")
23
+ assert prompt == gold
24
+
25
+ # Parse: assistant turn with tool call
26
+ marker = "<|Assistant|><think>"
27
+ first_start = prompt.find(marker) + len(marker)
28
+ first_end = prompt.find("<|User|>", first_start)
29
+ parsed_tc = parse_message_from_completion_text(prompt[first_start:first_end], thinking_mode="thinking")
30
+ assert parsed_tc["reasoning_content"] == "The user wants to know the weather in Beijing. I should use the get_weather tool."
31
+ assert parsed_tc["content"] == ""
32
+ assert len(parsed_tc["tool_calls"]) == 1
33
+ assert parsed_tc["tool_calls"][0]["function"]["name"] == "get_weather"
34
+ assert json.loads(parsed_tc["tool_calls"][0]["function"]["arguments"]) == {"location": "Beijing", "unit": "celsius"}
35
+
36
+ # Parse: final assistant turn with content
37
+ last_start = prompt.rfind(marker) + len(marker)
38
+ parsed_final = parse_message_from_completion_text(prompt[last_start:], thinking_mode="thinking")
39
+ assert parsed_final["reasoning_content"] == "Got the weather data. Let me format a nice response."
40
+ assert "22°C" in parsed_final["content"]
41
+ assert parsed_final["tool_calls"] == []
42
+
43
+ print(" [PASS] case 1: thinking with tools (encode + parse)")
44
+
45
+
46
+ def test_case_2():
47
+ """Thinking mode without tools (drop_thinking removes earlier reasoning)."""
48
+ messages = json.load(open(os.path.join(TESTS_DIR, "test_input_2.json")))
49
+ gold = open(os.path.join(TESTS_DIR, "test_output_2.txt")).read()
50
+ prompt = encode_messages(messages, thinking_mode="thinking")
51
+ assert prompt == gold
52
+
53
+ # Parse: last assistant turn
54
+ marker = "<|Assistant|><think>"
55
+ last_start = prompt.rfind(marker) + len(marker)
56
+ parsed = parse_message_from_completion_text(prompt[last_start:], thinking_mode="thinking")
57
+ assert parsed["reasoning_content"] == "The user asks about the capital of France. It is Paris."
58
+ assert parsed["content"] == "The capital of France is Paris."
59
+ assert parsed["tool_calls"] == []
60
+
61
+ # Verify drop_thinking: first assistant's reasoning should be absent
62
+ assert "The user said hello" not in prompt
63
+
64
+ print(" [PASS] case 2: thinking without tools (encode + parse)")
65
+
66
+
67
+ def test_case_3():
68
+ """Interleaved thinking + search (developer with tools, latest_reminder)."""
69
+ messages = json.load(open(os.path.join(TESTS_DIR, "test_input_3.json")))
70
+ gold = open(os.path.join(TESTS_DIR, "test_output_3.txt")).read()
71
+ assert encode_messages(messages, thinking_mode="thinking") == gold
72
+ print(" [PASS] case 3: interleaved thinking + search")
73
+
74
+
75
+ def test_case_4():
76
+ """Quick instruction task with latest_reminder (chat mode, action task)."""
77
+ messages = json.load(open(os.path.join(TESTS_DIR, "test_input_4.json")))
78
+ gold = open(os.path.join(TESTS_DIR, "test_output_4.txt")).read()
79
+ assert encode_messages(messages, thinking_mode="chat") == gold
80
+ print(" [PASS] case 4: quick instruction task")
81
+
82
+
83
+ if __name__ == "__main__":
84
+ print("Running DeepSeek-V4 Encoding Tests...\n")
85
+ test_case_1()
86
+ test_case_2()
87
+ test_case_3()
88
+ test_case_4()
89
+ print("\nAll 4 tests passed!")
encoding/tests/test_input_1.json ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tools": [
3
+ {
4
+ "type": "function",
5
+ "function": {
6
+ "name": "get_weather",
7
+ "description": "Get the weather for a specific location",
8
+ "parameters": {
9
+ "type": "object",
10
+ "properties": {
11
+ "location": {
12
+ "type": "string",
13
+ "description": "The city name"
14
+ },
15
+ "unit": {
16
+ "type": "string",
17
+ "enum": ["celsius", "fahrenheit"],
18
+ "description": "Temperature unit"
19
+ }
20
+ },
21
+ "required": ["location"]
22
+ }
23
+ }
24
+ },
25
+ {
26
+ "type": "function",
27
+ "function": {
28
+ "name": "search",
29
+ "description": "Search the web for information",
30
+ "parameters": {
31
+ "type": "object",
32
+ "properties": {
33
+ "query": {
34
+ "type": "string",
35
+ "description": "Search query"
36
+ },
37
+ "num_results": {
38
+ "type": "integer",
39
+ "description": "Number of results to return"
40
+ }
41
+ },
42
+ "required": ["query"]
43
+ }
44
+ }
45
+ }
46
+ ],
47
+ "messages": [
48
+ {
49
+ "role": "system",
50
+ "content": "You are a helpful assistant."
51
+ },
52
+ {
53
+ "role": "user",
54
+ "content": "What's the weather in Beijing?"
55
+ },
56
+ {
57
+ "role": "assistant",
58
+ "reasoning_content": "The user wants to know the weather in Beijing. I should use the get_weather tool.",
59
+ "tool_calls": [
60
+ {
61
+ "id": "call_001",
62
+ "type": "function",
63
+ "function": {
64
+ "name": "get_weather",
65
+ "arguments": "{\"location\": \"Beijing\", \"unit\": \"celsius\"}"
66
+ }
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "role": "tool",
72
+ "tool_call_id": "call_001",
73
+ "content": "{\"temperature\": 22, \"condition\": \"sunny\", \"humidity\": 45}"
74
+ },
75
+ {
76
+ "role": "assistant",
77
+ "reasoning_content": "Got the weather data. Let me format a nice response.",
78
+ "content": "The weather in Beijing is currently sunny with a temperature of 22°C and 45% humidity."
79
+ }
80
+ ]
81
+ }
encoding/tests/test_input_2.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "role": "system",
4
+ "content": "You are a helpful assistant."
5
+ },
6
+ {
7
+ "role": "user",
8
+ "content": "Hello"
9
+ },
10
+ {
11
+ "role": "assistant",
12
+ "reasoning_content": "The user said hello, I should greet back.",
13
+ "content": "Hi there! How can I help you?"
14
+ },
15
+ {
16
+ "role": "user",
17
+ "content": "What is the capital of France?"
18
+ },
19
+ {
20
+ "role": "assistant",
21
+ "reasoning_content": "The user asks about the capital of France. It is Paris.",
22
+ "content": "The capital of France is Paris."
23
+ }
24
+ ]
encoding/tests/test_input_3.json ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "role": "system",
4
+ "content": "该助手为DeepSeek,由深度求索公司创造。"
5
+ },
6
+ {
7
+ "role": "latest_reminder",
8
+ "content": "2026-02-21,星期六,广州,App,中文"
9
+ },
10
+ {
11
+ "role": "developer",
12
+ "content": "小柴胡冲剂和布洛芬能一起吃吗?\n\nCITATION FORMAT: 【{cursor_id}†L{start_line_id}(-L{end_line_id})?】",
13
+ "tools": [
14
+ {
15
+ "type": "function",
16
+ "function": {
17
+ "name": "search",
18
+ "description": "Web search. Split multiple queries with '||'.",
19
+ "parameters": {
20
+ "type": "object",
21
+ "properties": {
22
+ "queries": {
23
+ "type": "string",
24
+ "description": "query1||query2"
25
+ }
26
+ },
27
+ "required": [
28
+ "queries"
29
+ ],
30
+ "additionalProperties": false,
31
+ "$schema": "http://json-schema.org/draft-07/schema#"
32
+ }
33
+ }
34
+ },
35
+ {
36
+ "type": "function",
37
+ "function": {
38
+ "name": "open",
39
+ "description": "Batch open IDs (format 【{id}†...】) or URLs.",
40
+ "parameters": {
41
+ "type": "object",
42
+ "properties": {
43
+ "open_list": {
44
+ "type": "array",
45
+ "items": {
46
+ "type": "object",
47
+ "properties": {
48
+ "id": {
49
+ "description": "ID or URL",
50
+ "anyOf": [
51
+ {
52
+ "type": "integer"
53
+ },
54
+ {
55
+ "type": "string"
56
+ }
57
+ ],
58
+ "default": -1
59
+ },
60
+ "cursor": {
61
+ "type": "integer",
62
+ "description": "",
63
+ "default": -1
64
+ },
65
+ "loc": {
66
+ "type": "integer",
67
+ "description": "Start line",
68
+ "default": -1
69
+ },
70
+ "num_lines": {
71
+ "type": "integer",
72
+ "description": "",
73
+ "default": -1
74
+ },
75
+ "view_source": {
76
+ "type": "boolean",
77
+ "description": "",
78
+ "default": false
79
+ }
80
+ },
81
+ "additionalProperties": false
82
+ },
83
+ "description": ""
84
+ }
85
+ },
86
+ "required": [
87
+ "open_list"
88
+ ],
89
+ "additionalProperties": false,
90
+ "$schema": "http://json-schema.org/draft-07/schema#"
91
+ }
92
+ }
93
+ },
94
+ {
95
+ "type": "function",
96
+ "function": {
97
+ "name": "find",
98
+ "description": "Find exact text pattern in pages.",
99
+ "parameters": {
100
+ "type": "object",
101
+ "properties": {
102
+ "find_list": {
103
+ "type": "array",
104
+ "items": {
105
+ "type": "object",
106
+ "properties": {
107
+ "pattern": {
108
+ "type": "string",
109
+ "description": ""
110
+ },
111
+ "cursor": {
112
+ "type": "integer",
113
+ "description": "",
114
+ "default": -1
115
+ }
116
+ },
117
+ "required": [
118
+ "pattern"
119
+ ],
120
+ "additionalProperties": false
121
+ },
122
+ "description": ""
123
+ }
124
+ },
125
+ "required": [
126
+ "find_list"
127
+ ],
128
+ "additionalProperties": false,
129
+ "$schema": "http://json-schema.org/draft-07/schema#"
130
+ }
131
+ }
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ "role": "assistant",
137
+ "content": "",
138
+ "reasoning_content": "用户想知道小柴胡冲剂和布洛芬能否一起服用。",
139
+ "tool_calls": [
140
+ {
141
+ "type": "function",
142
+ "function": {
143
+ "name": "search",
144
+ "arguments": "{\"queries\": \"小柴胡冲剂 布洛芬 相互作用 一起吃\"}"
145
+ }
146
+ }
147
+ ]
148
+ },
149
+ {
150
+ "role": "tool",
151
+ "content": "[0]"
152
+ },
153
+ {
154
+ "role": "assistant",
155
+ "content": "请及时就医。",
156
+ "reasoning_content": "现在开始组织回答。",
157
+ "tool_calls": []
158
+ }
159
+ ]
encoding/tests/test_input_4.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "role": "system",
4
+ "content": "该助手为DeepSeek-V3,由深度求索公司创造。\n今天是2025年10月17日,星期五。"
5
+ },
6
+ {
7
+ "role": "latest_reminder",
8
+ "content": "2024-11-15,上海市,App,中文"
9
+ },
10
+ {
11
+ "role": "user",
12
+ "content": "热海大滚锅是世界著名温泉吗"
13
+ },
14
+ {
15
+ "role": "assistant",
16
+ "content": "关于热海大滚锅是否是世界著名温泉,可以这样总结:它在**中国乃至全球的地热奇观中占有重要地位**,但“世界著名”的称号更侧重于它作为**独特的地质现象和旅游景点**,而非普遍的温泉疗养体验。\n\n为了让你快速了解,我整理了一个简要的表格:\n\n| 维度 | 热海大滚锅的地位与特点 |\n| :--- | :--- |\n| **地质奇观** | **世界罕见**的高温地热系统,泉眼多、水温高、形态多样。 |\n| **国内声誉** | **中国三大地热区之一**,**国家5A级旅游景区**,自古闻名(徐霞客曾游历并记载)。 |\n| **国际知名度** | 在一些旅游平台被提及为“世界六大温泉”之一,但此说法流传不广,其国际声誉更多建立在地质独特性上。 |\n| **核心体验** | **观赏地热奇观**(如97℃沸腾的“大滚锅”)、**体验温泉煮鸡蛋**。 |\n\n### 💡 游玩攻略与温馨提示\n\n如果你计划前往热海大滚锅,这里有一些实用信息供你参考:\n\n- **门票与开放时间**:\n - **门票**:景区门票约为**50元/人**。如果选择包含温泉沐浴的套餐,价格会更高,例如约**288元**。\n - **开放时间**:景区一般**08:00-18:00**开放,但具体时间可能变动,建议提前核实。\n\n- **特色体验**:\n - **温泉煮鸡蛋**:这几乎是必试项目。可以在景区门口购买用草绳串起的生鸡蛋(约5-8元/串),然后到“大滚锅”旁的指定区域蒸煮,几分钟便可熟食,趣味十足。\n - **金汤足浴**:可以直接用从“大滚锅”流出的温泉水泡脚,缓解旅途疲劳。\n\n- **注意事项**:\n - **安全第一**:“大滚锅”水温极高,务必遵守游览规则,在指定区域内观赏,切勿随意触碰泉水。\n - **规划行程**:建议为热海景区预留**3-4小时**的游览时间。景区内步道不走回头路,出入口有观光车接送。\n\n希望这些信息能帮助你更好地了解热海大滚锅。如果你对腾冲的其他景点或者行程规划有更多疑问,我很乐意提供进一步的信息。",
17
+ "mask": 1
18
+ },
19
+ {
20
+ "role": "user",
21
+ "content": "世界著名温泉有哪些",
22
+ "task": "action"
23
+ },
24
+ {
25
+ "role": "assistant",
26
+ "content": "Search"
27
+ }
28
+ ]
encoding/tests/test_output_1.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <|begin▁of▁sentence|>You are a helpful assistant.
2
+
3
+ ## Tools
4
+
5
+ You have access to a set of tools to help answer the user's question. You can invoke tools by writing a "<|DSML|tool_calls>" block like the following:
6
+
7
+ <|DSML|tool_calls>
8
+ <|DSML|invoke name="$TOOL_NAME">
9
+ <|DSML|parameter name="$PARAMETER_NAME" string="true|false">$PARAMETER_VALUE</|DSML|parameter>
10
+ ...
11
+ </|DSML|invoke>
12
+ <|DSML|invoke name="$TOOL_NAME2">
13
+ ...
14
+ </|DSML|invoke>
15
+ </|DSML|tool_calls>
16
+
17
+ String parameters should be specified as is and set `string="true"`. For all other types (numbers, booleans, arrays, objects), pass the value in JSON format and set `string="false"`.
18
+
19
+ If thinking_mode is enabled (triggered by <think>), you MUST output your complete reasoning inside <think>...</think> BEFORE any tool calls or final response.
20
+
21
+ Otherwise, output directly after </think> with tool calls or final response.
22
+
23
+ ### Available Tool Schemas
24
+
25
+ {"name": "get_weather", "description": "Get the weather for a specific location", "parameters": {"type": "object", "properties": {"location": {"type": "string", "description": "The city name"}, "unit": {"type": "string", "enum": ["celsius", "fahrenheit"], "description": "Temperature unit"}}, "required": ["location"]}}
26
+ {"name": "search", "description": "Search the web for information", "parameters": {"type": "object", "properties": {"query": {"type": "string", "description": "Search query"}, "num_results": {"type": "integer", "description": "Number of results to return"}}, "required": ["query"]}}
27
+
28
+ You MUST strictly follow the above defined tool name and parameter schemas to invoke tool calls.
29
+ <|User|>What's the weather in Beijing?<|Assistant|><think>The user wants to know the weather in Beijing. I should use the get_weather tool.</think>
30
+
31
+ <|DSML|tool_calls>
32
+ <|DSML|invoke name="get_weather">
33
+ <|DSML|parameter name="location" string="true">Beijing</|DSML|parameter>
34
+ <|DSML|parameter name="unit" string="true">celsius</|DSML|parameter>
35
+ </|DSML|invoke>
36
+ </|DSML|tool_calls><|end▁of▁sentence|><|User|><tool_result>{"temperature": 22, "condition": "sunny", "humidity": 45}</tool_result><|Assistant|><think>Got the weather data. Let me format a nice response.</think>The weather in Beijing is currently sunny with a temperature of 22°C and 45% humidity.<|end▁of▁sentence|>
encoding/tests/test_output_2.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ <|begin▁of▁sentence|>You are a helpful assistant.<|User|>Hello<|Assistant|></think>Hi there! How can I help you?<|end▁of▁sentence|><|User|>What is the capital of France?<|Assistant|><think>The user asks about the capital of France. It is Paris.</think>The capital of France is Paris.<|end▁of▁sentence|>
encoding/tests/test_output_3.txt ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <|begin▁of▁sentence|>该助手为DeepSeek,由深度求索公司创造。<|latest_reminder|>2026-02-21,星期六,广州,App,中文<|User|>小柴胡冲剂和布洛芬能一起吃吗?
2
+
3
+ CITATION FORMAT: 【{cursor_id}†L{start_line_id}(-L{end_line_id})?】
4
+
5
+ ## Tools
6
+
7
+ You have access to a set of tools to help answer the user's question. You can invoke tools by writing a "<|DSML|tool_calls>" block like the following:
8
+
9
+ <|DSML|tool_calls>
10
+ <|DSML|invoke name="$TOOL_NAME">
11
+ <|DSML|parameter name="$PARAMETER_NAME" string="true|false">$PARAMETER_VALUE</|DSML|parameter>
12
+ ...
13
+ </|DSML|invoke>
14
+ <|DSML|invoke name="$TOOL_NAME2">
15
+ ...
16
+ </|DSML|invoke>
17
+ </|DSML|tool_calls>
18
+
19
+ String parameters should be specified as is and set `string="true"`. For all other types (numbers, booleans, arrays, objects), pass the value in JSON format and set `string="false"`.
20
+
21
+ If thinking_mode is enabled (triggered by <think>), you MUST output your complete reasoning inside <think>...</think> BEFORE any tool calls or final response.
22
+
23
+ Otherwise, output directly after </think> with tool calls or final response.
24
+
25
+ ### Available Tool Schemas
26
+
27
+ {"name": "search", "description": "Web search. Split multiple queries with '||'.", "parameters": {"type": "object", "properties": {"queries": {"type": "string", "description": "query1||query2"}}, "required": ["queries"], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#"}}
28
+ {"name": "open", "description": "Batch open IDs (format 【{id}†...】) or URLs.", "parameters": {"type": "object", "properties": {"open_list": {"type": "array", "items": {"type": "object", "properties": {"id": {"description": "ID or URL", "anyOf": [{"type": "integer"}, {"type": "string"}], "default": -1}, "cursor": {"type": "integer", "description": "", "default": -1}, "loc": {"type": "integer", "description": "Start line", "default": -1}, "num_lines": {"type": "integer", "description": "", "default": -1}, "view_source": {"type": "boolean", "description": "", "default": false}}, "additionalProperties": false}, "description": ""}}, "required": ["open_list"], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#"}}
29
+ {"name": "find", "description": "Find exact text pattern in pages.", "parameters": {"type": "object", "properties": {"find_list": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string", "description": ""}, "cursor": {"type": "integer", "description": "", "default": -1}}, "required": ["pattern"], "additionalProperties": false}, "description": ""}}, "required": ["find_list"], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#"}}
30
+
31
+ You MUST strictly follow the above defined tool name and parameter schemas to invoke tool calls.
32
+ <|Assistant|><think>用户想知道小柴胡冲剂和布洛芬能否一起服用。</think>
33
+
34
+ <|DSML|tool_calls>
35
+ <|DSML|invoke name="search">
36
+ <|DSML|parameter name="queries" string="true">小柴胡冲剂 布洛芬 相互作用 一起吃</|DSML|parameter>
37
+ </|DSML|invoke>
38
+ </|DSML|tool_calls><|end▁of▁sentence|><|User|><tool_result>[0]</tool_result><|Assistant|><think>现在开始组织回答。</think>请及时就医。<|end▁of▁sentence|>
encoding/tests/test_output_4.txt ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <|begin▁of▁sentence|>该助手为DeepSeek-V3,由深度求索公司创造。
2
+ 今天是2025年10月17日,星期五。<|latest_reminder|>2024-11-15,上海市,App,中文<|User|>热海大滚锅是世界著名温泉吗<|Assistant|></think>关于热海大滚锅是否是世界著名温泉,可以这样总结:它在**中国乃至全球的地热奇观中占有重要地位**,但“世界著名”的称号更侧重于它作为**独特的地质现象和旅游景点**,而非普遍的温泉疗养体验。
3
+
4
+ 为了让你快速了解,我整理了一个简要的表格:
5
+
6
+ | 维度 | 热海大滚锅的地位与特点 |
7
+ | :--- | :--- |
8
+ | **地质奇观** | **世界罕见**的高温地热系统,泉眼多、水温高、形态多样。 |
9
+ | **国内声誉** | **中国三大地热区之一**,**国家5A级旅游景区**,自古闻名(徐霞客曾游历并记载)。 |
10
+ | **国际知名度** | 在一些旅游平台被提及为“世界六大温泉”之一,但此说法流传不广,其国际声誉更多建立在地质独特性上。 |
11
+ | **核心体验** | **观赏地热奇观**(如97℃沸腾的“大滚锅”)、**体验温泉煮鸡蛋**。 |
12
+
13
+ ### 💡 游玩攻略与温馨提示
14
+
15
+ 如果你计划前往热海大滚锅,这里有一些实用信息供你参考:
16
+
17
+ - **门票与开放时间**:
18
+ - **门票**:景区门票约为**50元/人**。如果选择包含温泉沐浴的套餐,价格会更高,例如约**288元**。
19
+ - **开放时间**:景区一般**08:00-18:00**开放,但具体时间可能变动,建议提前核实。
20
+
21
+ - **特色体验**:
22
+ - **温泉煮鸡蛋**:这几乎是必试项目。可以在景区门口购买用草绳串起的生鸡蛋(约5-8元/串),然后到“大滚锅”旁的指定区域蒸煮,几分钟便可熟食,趣味十足。
23
+ - **金汤足浴**:可以直接用从“大滚锅”流出的温泉水泡脚,缓解旅途疲劳。
24
+
25
+ - **注意事项**:
26
+ - **安全第一**:“大滚锅”水温极高,务必遵守游览规则,在指定区域内观赏,切勿随意触碰泉水。
27
+ - **规划行程**:建议为热海景区预留**3-4小时**的游览时间。景区内步道不走回头路,出入口有观光车接送。
28
+
29
+ 希望这些信息能帮助你更好地了解热海大滚锅。如果你对腾冲的其他景点或者行程规划有更多疑问,我很乐意提供进一步的信息。<|end▁of▁sentence|><|User|>世界著名温泉有哪些<|Assistant|></think><|action|>Search<|end▁of▁sentence|>
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 1,
5
+ "do_sample": true,
6
+ "temperature": 1.0,
7
+ "top_p": 1.0,
8
+ "transformers_version": "4.46.3"
9
+ }
inference/README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Inference code for DeepSeek models
2
+
3
+ First convert huggingface model weight files to the format of this project.
4
+ ```bash
5
+ export EXPERTS=256
6
+ export MP=4
7
+ export CONFIG=config.json
8
+ python convert.py --hf-ckpt-path ${HF_CKPT_PATH} --save-path ${SAVE_PATH} --n-experts ${EXPERTS} --model-parallel ${MP}
9
+ ```
10
+
11
+ Then chat with DeepSeek model at will!
12
+ ```bash
13
+ torchrun --nproc-per-node ${MP} generate.py --ckpt-path ${SAVE_PATH} --config ${CONFIG} --interactive
14
+ ```
15
+
16
+ Or batch inference from file.
17
+ ```bash
18
+ torchrun --nproc-per-node ${MP} generate.py --ckpt-path ${SAVE_PATH} --config ${CONFIG} --input-file ${FILE}
19
+ ```
20
+
21
+ Or multi nodes inference.
22
+ ```bash
23
+ torchrun --nnodes ${NODES} --nproc-per-node $((MP / NODES)) --node-rank $RANK --master-addr $ADDR generate.py --ckpt-path ${SAVE_PATH} --config ${CONFIG} --input-file ${FILE}
24
+ ```
25
+
26
+ If you want to use fp8, just remove `"expert_dtype": "fp4"` in `config.json` and specify `--expert-dtype fp8` in `convert.py`.
inference/config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 129280,
3
+ "dim": 4096,
4
+ "moe_inter_dim": 2048,
5
+ "n_layers": 43,
6
+ "n_hash_layers": 3,
7
+ "n_mtp_layers": 3,
8
+ "dspark_block_size": 5,
9
+ "dspark_noise_token_id": 128799,
10
+ "dspark_target_layer_ids": [40, 41, 42],
11
+ "dspark_markov_rank": 256,
12
+ "n_heads": 64,
13
+ "n_routed_experts": 256,
14
+ "n_shared_experts": 1,
15
+ "n_activated_experts": 6,
16
+ "score_func": "sqrtsoftplus",
17
+ "route_scale": 1.5,
18
+ "swiglu_limit": 10.0,
19
+ "q_lora_rank": 1024,
20
+ "head_dim": 512,
21
+ "rope_head_dim": 64,
22
+ "o_groups": 8,
23
+ "o_lora_rank": 1024,
24
+ "window_size": 128,
25
+ "original_seq_len": 65536,
26
+ "rope_theta": 10000,
27
+ "rope_factor": 16,
28
+ "beta_fast": 32,
29
+ "beta_slow": 1,
30
+ "index_n_heads": 64,
31
+ "index_head_dim": 128,
32
+ "index_topk": 512,
33
+ "hc_mult": 4,
34
+ "hc_sinkhorn_iters": 20,
35
+ "dtype": "fp8",
36
+ "scale_fmt": "ue8m0",
37
+ "expert_dtype": "fp4",
38
+ "compress_rope_theta": 160000,
39
+ "compress_ratios": [0, 0, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 128, 4, 0, 0, 0]
40
+ }
inference/convert.py ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import shutil
3
+ from argparse import ArgumentParser
4
+ from glob import glob
5
+ from tqdm import tqdm, trange
6
+
7
+ import torch
8
+ from safetensors.torch import safe_open, save_file
9
+
10
+
11
+ FP4_TABLE = torch.tensor([
12
+ 0.0, 0.5, 1.0, 1.5, 2.0, 3.0, 4.0, 6.0,
13
+ 0.0, -0.5, -1.0, -1.5, -2.0, -3.0, -4.0, -6.0
14
+ ], dtype=torch.float32)
15
+
16
+
17
+ def cast_e2m1fn_to_e4m3fn(x: torch.Tensor, scale: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
18
+ """
19
+ Casts a tensor from e2m1fn to e4m3fn losslessly.
20
+ """
21
+ assert x.dtype == torch.int8
22
+ assert x.ndim == 2
23
+ out_dim, in_dim = x.size()
24
+ in_dim *= 2
25
+ fp8_block_size = 128
26
+ fp4_block_size = 32
27
+ assert in_dim % fp8_block_size == 0 and out_dim % fp8_block_size == 0
28
+ assert scale.size(0) == out_dim and scale.size(1) == in_dim // fp4_block_size
29
+
30
+ x = x.view(torch.uint8)
31
+ low = x & 0x0F
32
+ high = (x >> 4) & 0x0F
33
+ x = torch.stack([FP4_TABLE[low.long()], FP4_TABLE[high.long()]], dim=-1).flatten(2)
34
+
35
+ # max_fp4 (6.0) * MAX_OFFSET must fit in e4m3fn (max 448)
36
+ # 6.0 * 2^6 = 384 < 448; 6.0 * 2^7 = 768 > 448; so MAX_OFFSET_BITS = 6
37
+ MAX_OFFSET_BITS = 6
38
+
39
+ bOut = out_dim // fp8_block_size
40
+ bIn = in_dim // fp8_block_size
41
+ # bOut, bIn, 128, 128
42
+ x = x.view(bOut, fp8_block_size, bIn, fp8_block_size).transpose(1, 2)
43
+ # bOut, bIn, 128*4
44
+ scale = scale.float().view(bOut, fp8_block_size, bIn, -1).transpose(1, 2).flatten(2)
45
+ ## bOut, bIn, 1
46
+ scale_max_offset_bits = scale.amax(dim=-1, keepdim=True) / (2**MAX_OFFSET_BITS)
47
+ # bOut, bIn, 128*4
48
+ offset = scale / scale_max_offset_bits
49
+ # bOut, bIn, 128, 128
50
+ offset = offset.unflatten(-1, (fp8_block_size, -1)).repeat_interleave(fp4_block_size, dim=-1)
51
+ x = (x * offset).transpose(1, 2).reshape(out_dim, in_dim)
52
+ return x.to(torch.float8_e4m3fn), scale_max_offset_bits.squeeze(-1).to(torch.float8_e8m0fnu)
53
+
54
+
55
+ mapping = {
56
+ "embed": ("embed", 0),
57
+ "wq_b": ("wq_b", 0),
58
+ "wo_a": ("wo_a", 0),
59
+ "wo_b": ("wo_b", 1),
60
+ "head": ("head", 0),
61
+ "attn_sink": ("attn_sink", 0),
62
+ "weights_proj": ("weights_proj", 0),
63
+ "markov_w1": ("markov_w1", 0),
64
+ "markov_w2": ("markov_w2", 0),
65
+ }
66
+
67
+
68
+ def main(hf_ckpt_path, save_path, n_experts, mp, expert_dtype):
69
+ """
70
+ Converts and saves model checkpoint files into a specified format.
71
+
72
+ Args:
73
+ hf_ckpt_path (str): Path to the directory containing the input checkpoint files.
74
+ save_path (str): Path to the directory where the converted checkpoint files will be saved.
75
+ n_experts (int): Total number of experts in the model.
76
+ mp (int): Model parallelism factor.
77
+
78
+ Returns:
79
+ None
80
+ """
81
+ torch.set_num_threads(8)
82
+ n_local_experts = n_experts // mp
83
+ state_dicts = [{} for _ in range(mp)]
84
+
85
+ for file_path in tqdm(glob(os.path.join(hf_ckpt_path, "*.safetensors"))):
86
+ with safe_open(file_path, framework="pt", device="cpu") as f:
87
+ for name in f.keys():
88
+ param: torch.Tensor = f.get_tensor(name)
89
+ if name.startswith("model."):
90
+ name = name[len("model."):]
91
+ if name.startswith("mtp.") and ("emb" in name or name.endswith("head.weight")):
92
+ continue
93
+ name = name.replace("self_attn", "attn")
94
+ name = name.replace("mlp", "ffn")
95
+ name = name.replace("weight_scale_inv", "scale")
96
+ name = name.replace("e_score_correction_bias", "bias")
97
+ if any(x in name for x in ["hc", "attn_sink", "tie2eid", "ape"]): # without .weight
98
+ key = name.split(".")[-1]
99
+ else:
100
+ key = name.split(".")[-2]
101
+ if key in mapping:
102
+ new_key, dim = mapping[key]
103
+ else:
104
+ new_key, dim = key, None
105
+ name = name.replace(key, new_key)
106
+ for i in range(mp):
107
+ new_param = param
108
+ if "experts" in name and "shared_experts" not in name:
109
+ idx = int(name.split(".")[-3])
110
+ if idx < i * n_local_experts or idx >= (i + 1) * n_local_experts:
111
+ continue
112
+ elif dim is not None:
113
+ assert param.size(dim) % mp == 0, f"Dimension {dim} must be divisible by {mp}"
114
+ shard_size = param.size(dim) // mp
115
+ new_param = param.narrow(dim, i * shard_size, shard_size).contiguous()
116
+ state_dicts[i][name] = new_param
117
+
118
+ os.makedirs(save_path, exist_ok=True)
119
+
120
+ for i in trange(mp):
121
+ names = list(state_dicts[i].keys())
122
+ for name in names:
123
+ if name.endswith("wo_a.weight"):
124
+ weight = state_dicts[i][name]
125
+ scale = state_dicts[i].pop(name.replace("weight", "scale"))
126
+ weight = weight.unflatten(0, (-1, 128)).unflatten(-1, (-1, 128)).float() * scale[:, None, :, None].float()
127
+ state_dicts[i][name] = weight.flatten(2, 3).flatten(0, 1).bfloat16()
128
+ elif "experts" in name and state_dicts[i][name].dtype == torch.int8:
129
+ if expert_dtype == "fp8":
130
+ scale_name = name.replace("weight", "scale")
131
+ weight = state_dicts[i].pop(name)
132
+ scale = state_dicts[i].pop(scale_name)
133
+ state_dicts[i][name], state_dicts[i][scale_name] = cast_e2m1fn_to_e4m3fn(weight, scale)
134
+ else:
135
+ state_dicts[i][name] = state_dicts[i][name].view(torch.float4_e2m1fn_x2)
136
+ save_file(state_dicts[i], os.path.join(save_path, f"model{i}-mp{mp}.safetensors"))
137
+
138
+ for file in ["tokenizer.json", "tokenizer_config.json"]:
139
+ old_file_path = os.path.join(hf_ckpt_path, file)
140
+ new_file_path = os.path.join(save_path, file)
141
+ if os.path.exists(old_file_path):
142
+ shutil.copyfile(old_file_path, new_file_path)
143
+
144
+
145
+ if __name__ == "__main__":
146
+ parser = ArgumentParser()
147
+ parser.add_argument("--hf-ckpt-path", type=str, required=True)
148
+ parser.add_argument("--save-path", type=str, required=True)
149
+ parser.add_argument("--n-experts", type=int, required=True)
150
+ parser.add_argument("--model-parallel", type=int, required=True)
151
+ parser.add_argument("--expert-dtype", type=str, choices=["fp8", "fp4"], required=False, default=None)
152
+ args = parser.parse_args()
153
+ assert args.n_experts % args.model_parallel == 0, "Number of experts must be divisible by model parallelism"
154
+ main(args.hf_ckpt_path, args.save_path, args.n_experts, args.model_parallel, args.expert_dtype)
inference/generate.py ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import sys
4
+ from argparse import ArgumentParser
5
+ from typing import List
6
+
7
+ import torch
8
+ import torch.distributed as dist
9
+ from transformers import AutoTokenizer
10
+ from safetensors.torch import load_model
11
+
12
+ from model import Transformer, ModelArgs
13
+ current_dir = os.path.dirname(os.path.abspath(__file__))
14
+ encoding_dir = os.path.join(current_dir, '../encoding')
15
+ sys.path.insert(0, os.path.abspath(encoding_dir))
16
+ from encoding_dsv4 import encode_messages, parse_message_from_completion_text
17
+
18
+
19
+ @torch.inference_mode()
20
+ def generate(
21
+ model: Transformer,
22
+ prompt_tokens: List[List[int]],
23
+ max_new_tokens: int,
24
+ eos_id: int,
25
+ ) -> List[List[int]]:
26
+ """Batch generation with left-padded prompts.
27
+
28
+ The first forward pass processes [min_prompt_len:] tokens (prefill phase).
29
+ Subsequent passes generate one token at a time (decode phase). For positions
30
+ still within a prompt, the ground-truth token overrides the model's prediction.
31
+ """
32
+ prompt_lens = [len(t) for t in prompt_tokens]
33
+ assert max(prompt_lens) <= model.max_seq_len, f"Prompt length exceeds model maximum sequence length (max_seq_len={model.max_seq_len})"
34
+ total_len = min(model.max_seq_len, max_new_tokens + max(prompt_lens))
35
+ tokens = torch.full((len(prompt_tokens), total_len), -1, dtype=torch.long)
36
+ for i, t in enumerate(prompt_tokens):
37
+ tokens[i, :len(t)] = torch.tensor(t, dtype=torch.long)
38
+ prev_pos = 0
39
+ finished = torch.tensor([False] * len(prompt_tokens))
40
+ prompt_mask = tokens != -1
41
+ for cur_pos in range(min(prompt_lens), total_len):
42
+ next_token = model.forward(tokens[:, prev_pos:cur_pos], prev_pos)[0]
43
+ next_token = torch.where(prompt_mask[:, cur_pos], tokens[:, cur_pos], next_token)
44
+ tokens[:, cur_pos] = next_token
45
+ finished |= torch.logical_and(~prompt_mask[:, cur_pos], next_token == eos_id)
46
+ prev_pos = cur_pos
47
+ if finished.all():
48
+ break
49
+ completion_tokens = []
50
+ for i, toks in enumerate(tokens.tolist()):
51
+ toks = toks[prompt_lens[i]:prompt_lens[i]+max_new_tokens]
52
+ if eos_id in toks:
53
+ toks = toks[:toks.index(eos_id)]
54
+ toks.append(eos_id)
55
+ completion_tokens.append(toks)
56
+ return completion_tokens
57
+
58
+
59
+ def main(
60
+ ckpt_path: str,
61
+ config: str,
62
+ input_file: str = "",
63
+ interactive: bool = True,
64
+ max_new_tokens: int = 100,
65
+ temperature: float = 1.0,
66
+ ) -> None:
67
+ world_size = int(os.getenv("WORLD_SIZE", "1"))
68
+ rank = int(os.getenv("RANK", "0"))
69
+ local_rank = int(os.getenv("LOCAL_RANK", "0"))
70
+ if world_size > 1:
71
+ dist.init_process_group("nccl")
72
+ global print
73
+ if rank != 0:
74
+ print = lambda *_, **__: None
75
+ torch.cuda.set_device(local_rank)
76
+ torch.cuda.memory._set_allocator_settings("expandable_segments:True")
77
+ torch.set_default_dtype(torch.bfloat16)
78
+ torch.set_num_threads(8)
79
+ torch.manual_seed(33377335)
80
+ with open(config) as f:
81
+ args = ModelArgs(**json.load(f))
82
+ args.temperature = temperature
83
+ if interactive:
84
+ args.max_batch_size = 1
85
+ args.max_seq_len = 64 * 1024
86
+ print(args)
87
+ with torch.device("cuda"):
88
+ model = Transformer(args)
89
+ tokenizer = AutoTokenizer.from_pretrained(ckpt_path)
90
+ print("load model")
91
+ load_model(model, os.path.join(ckpt_path, f"model{rank}-mp{world_size}.safetensors"), strict=False)
92
+ torch.set_default_device("cuda")
93
+ print("I'm DeepSeek 👋")
94
+
95
+ if interactive:
96
+ messages = []
97
+ while True:
98
+ if world_size == 1:
99
+ prompt = input(">>> ")
100
+ elif rank == 0:
101
+ prompt = input(">>> ")
102
+ objects = [prompt]
103
+ dist.broadcast_object_list(objects, 0)
104
+ else:
105
+ objects = [None]
106
+ dist.broadcast_object_list(objects, 0)
107
+ prompt = objects[0]
108
+ if prompt == "/exit":
109
+ break
110
+ elif prompt == "/clear":
111
+ messages.clear()
112
+ continue
113
+ messages.append({"role": "user", "content": prompt})
114
+ prompt_tokens = tokenizer.encode(encode_messages(messages, thinking_mode="chat"))
115
+ completion_tokens = generate(model, [prompt_tokens], max_new_tokens, tokenizer.eos_token_id)
116
+ completion = tokenizer.decode(completion_tokens[0])
117
+ print(completion)
118
+ messages.append(parse_message_from_completion_text(completion, thinking_mode="chat"))
119
+ else:
120
+ with open(input_file) as f:
121
+ prompts = f.read().split("\n\n")
122
+ prompt_tokens = [tokenizer.encode(encode_messages([{"role": "user", "content": prompt}], thinking_mode="chat")) for prompt in prompts]
123
+ completion_tokens = generate(model, prompt_tokens, max_new_tokens, tokenizer.eos_token_id)
124
+ completions = tokenizer.batch_decode(completion_tokens)
125
+ for prompt, completion in zip(prompts, completions):
126
+ print("Prompt:", prompt)
127
+ print("Completion:", completion)
128
+ print()
129
+
130
+ if world_size > 1:
131
+ dist.destroy_process_group()
132
+
133
+
134
+ if __name__ == "__main__":
135
+ parser = ArgumentParser()
136
+ parser.add_argument("--ckpt-path", type=str, required=True)
137
+ parser.add_argument("--config", type=str, required=True)
138
+ parser.add_argument("--input-file", type=str, default="")
139
+ parser.add_argument("--interactive", action="store_true")
140
+ parser.add_argument("--max-new-tokens", type=int, default=300)
141
+ parser.add_argument("--temperature", type=float, default=1.0)
142
+ args = parser.parse_args()
143
+ assert args.input_file or args.interactive, "Either input-file or interactive mode must be specified"
144
+ main(args.ckpt_path, args.config, args.input_file, args.interactive, args.max_new_tokens, args.temperature)
inference/kernel.py ADDED
@@ -0,0 +1,536 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ import tilelang
3
+ import tilelang.language as T
4
+ from typing import Tuple, Optional
5
+
6
+
7
+ tilelang.set_log_level("WARNING")
8
+
9
+ pass_configs = {
10
+ tilelang.PassConfigKey.TL_DISABLE_WARP_SPECIALIZED: True,
11
+ tilelang.PassConfigKey.TL_DISABLE_TMA_LOWER: True,
12
+ }
13
+
14
+ FP8 = "float8_e4m3"
15
+ FP4 = "float4_e2m1fn"
16
+ FE8M0 = "float8_e8m0fnu"
17
+ BF16 = "bfloat16"
18
+ FP32 = "float32"
19
+ INT32 = "int32"
20
+
21
+
22
+ def fast_log2_ceil(x):
23
+ """Compute ceil(log2(x)) via IEEE 754 bit manipulation. Avoids slow log/ceil intrinsics."""
24
+ bits_x = T.reinterpret("uint32", x)
25
+ exp_x = (bits_x >> 23) & 0xFF
26
+ man_bits = bits_x & ((1 << 23) - 1)
27
+ return T.Cast("int32", exp_x - 127 + T.if_then_else(man_bits != 0, 1, 0))
28
+
29
+
30
+ def fast_pow2(x):
31
+ """Compute 2^x for integer x via IEEE 754 bit manipulation."""
32
+ bits_x = (x + 127) << 23
33
+ return T.reinterpret("float32", bits_x)
34
+
35
+
36
+ def fast_round_scale(amax, fp8_max_inv):
37
+ return fast_pow2(fast_log2_ceil(amax * fp8_max_inv))
38
+
39
+
40
+ @tilelang.jit(pass_configs=pass_configs)
41
+ def act_quant_kernel(
42
+ N, block_size=128, in_dtype=BF16, out_dtype=FP8, scale_dtype=FP32,
43
+ round_scale=False, inplace=False
44
+ ):
45
+ """Block-wise FP8 quantization. inplace=True does fused quant+dequant back to BF16."""
46
+ M = T.symbolic("M")
47
+ fp8_min = -448.0
48
+ fp8_max = 448.0
49
+ fp8_max_inv = 1 / fp8_max
50
+ num_stages = 0 if round_scale or inplace else 2
51
+ blk_m = 32
52
+ group_size = block_size
53
+ # Internal computation in FP32; scale_dtype controls output storage format.
54
+ compute_dtype = FP32
55
+ out_dtype = in_dtype if inplace else out_dtype
56
+
57
+ @T.prim_func
58
+ def act_quant_kernel_(
59
+ X: T.Tensor[(M, N), in_dtype],
60
+ Y: T.Tensor[(M, N), out_dtype],
61
+ S: T.Tensor[(M, T.ceildiv(N, group_size)), scale_dtype],
62
+ ):
63
+ with T.Kernel(T.ceildiv(M, blk_m), T.ceildiv(N, group_size), threads=128) as (
64
+ pid_m,
65
+ pid_n,
66
+ ):
67
+ x_shared = T.alloc_shared((blk_m, group_size), in_dtype)
68
+ x_local = T.alloc_fragment((blk_m, group_size), in_dtype)
69
+ amax_local = T.alloc_fragment((blk_m,), compute_dtype)
70
+ s_local = T.alloc_fragment((blk_m,), compute_dtype)
71
+ y_local = T.alloc_fragment((blk_m, group_size), out_dtype)
72
+ y_shared = T.alloc_shared((blk_m, group_size), out_dtype)
73
+
74
+ for _ in T.Pipelined(1, num_stages=num_stages):
75
+ T.copy(X[pid_m * blk_m, pid_n * group_size], x_shared)
76
+ T.copy(x_shared, x_local)
77
+ T.reduce_absmax(x_local, amax_local, dim=1)
78
+ for i in T.Parallel(blk_m):
79
+ amax_local[i] = T.max(amax_local[i], 1e-4)
80
+ if round_scale:
81
+ s_local[i] = fast_round_scale(amax_local[i], fp8_max_inv)
82
+ else:
83
+ s_local[i] = amax_local[i] * fp8_max_inv
84
+ if inplace:
85
+ for i, j in T.Parallel(blk_m, group_size):
86
+ y_local[i, j] = T.Cast(
87
+ out_dtype,
88
+ T.Cast(compute_dtype, T.Cast(FP8, T.clamp(
89
+ x_local[i, j] / s_local[i], fp8_min, fp8_max
90
+ ))) * s_local[i],
91
+ )
92
+ else:
93
+ for i, j in T.Parallel(blk_m, group_size):
94
+ y_local[i, j] = T.clamp(
95
+ x_local[i, j] / s_local[i], fp8_min, fp8_max
96
+ )
97
+ for i in T.Parallel(blk_m):
98
+ S[pid_m * blk_m + i, pid_n] = T.Cast(scale_dtype, s_local[i])
99
+ T.copy(y_local, y_shared)
100
+ T.copy(y_shared, Y[pid_m * blk_m, pid_n * group_size])
101
+
102
+ return act_quant_kernel_
103
+
104
+
105
+ def act_quant(
106
+ x: torch.Tensor, block_size: int = 128, scale_fmt: Optional[str] = None,
107
+ scale_dtype: torch.dtype = torch.float32, inplace: bool = False,
108
+ ) -> torch.Tensor:
109
+ """Block-wise FP8 quantization. inplace=True does fused quant+dequant back to BF16.
110
+ When scale_fmt is set, scales are rounded to power-of-2 (MXFP)."""
111
+ N = x.size(-1)
112
+ assert N % block_size == 0
113
+ tl_dtype = FE8M0 if scale_dtype == torch.float8_e8m0fnu else FP32
114
+ z = x.contiguous()
115
+ y = torch.empty_like(z) if inplace else torch.empty_like(z, dtype=torch.float8_e4m3fn)
116
+ s = z.new_empty(*z.size()[:-1], N // block_size, dtype=scale_dtype)
117
+ kernel = act_quant_kernel(
118
+ N, block_size, scale_dtype=tl_dtype,
119
+ round_scale=scale_fmt is not None, inplace=inplace,
120
+ )
121
+ kernel(z.view(-1, N), y.view(-1, N), s.view(-1, N // block_size))
122
+ if inplace:
123
+ x.copy_(y)
124
+ return x
125
+ return y, s
126
+
127
+
128
+ @tilelang.jit(pass_configs=pass_configs)
129
+ def fp4_quant_kernel(
130
+ N, block_size=32, in_dtype=BF16, scale_dtype=FE8M0, inplace=False
131
+ ):
132
+ """Block-wise FP4 quantization. Power-of-2 scale via bit ops. inplace=True does fused quant+dequant."""
133
+ M = T.symbolic("M")
134
+ fp4_max = 6.0
135
+ fp4_max_inv = 1.0 / fp4_max
136
+ blk_m = 32
137
+ group_size = block_size
138
+ compute_dtype = FP32
139
+ out_dtype = in_dtype if inplace else FP4
140
+
141
+ @T.prim_func
142
+ def fp4_quant_kernel_(
143
+ X: T.Tensor[(M, N), in_dtype],
144
+ Y: T.Tensor[(M, N), out_dtype],
145
+ S: T.Tensor[(M, T.ceildiv(N, group_size)), scale_dtype],
146
+ ):
147
+ with T.Kernel(T.ceildiv(M, blk_m), T.ceildiv(N, group_size), threads=128) as (
148
+ pid_m,
149
+ pid_n,
150
+ ):
151
+ x_shared = T.alloc_shared((blk_m, group_size), in_dtype)
152
+ x_local = T.alloc_fragment((blk_m, group_size), in_dtype)
153
+ amax_local = T.alloc_fragment((blk_m,), compute_dtype)
154
+ s_local = T.alloc_fragment((blk_m,), compute_dtype)
155
+ y_local = T.alloc_fragment((blk_m, group_size), out_dtype)
156
+ y_shared = T.alloc_shared((blk_m, group_size), out_dtype)
157
+
158
+ for _ in T.Pipelined(1, num_stages=2):
159
+ T.copy(X[pid_m * blk_m, pid_n * group_size], x_shared)
160
+ T.copy(x_shared, x_local)
161
+ T.reduce_absmax(x_local, amax_local, dim=1)
162
+ for i in T.Parallel(blk_m):
163
+ amax_local[i] = T.max(amax_local[i], 6 * (2**-126))
164
+ s_local[i] = fast_round_scale(amax_local[i], fp4_max_inv)
165
+ if inplace:
166
+ for i, j in T.Parallel(blk_m, group_size):
167
+ y_local[i, j] = T.Cast(
168
+ out_dtype,
169
+ T.Cast(compute_dtype, T.Cast(FP4, T.clamp(
170
+ x_local[i, j] / s_local[i], -fp4_max, fp4_max
171
+ ))) * s_local[i],
172
+ )
173
+ else:
174
+ for i, j in T.Parallel(blk_m, group_size):
175
+ y_local[i, j] = T.clamp(
176
+ x_local[i, j] / s_local[i], -fp4_max, fp4_max
177
+ )
178
+ for i in T.Parallel(blk_m):
179
+ S[pid_m * blk_m + i, pid_n] = T.Cast(scale_dtype, s_local[i])
180
+ T.copy(y_local, y_shared)
181
+ T.copy(y_shared, Y[pid_m * blk_m, pid_n * group_size])
182
+
183
+ return fp4_quant_kernel_
184
+
185
+
186
+ def fp4_act_quant(
187
+ x: torch.Tensor, block_size: int = 32, inplace: bool = False,
188
+ ) -> torch.Tensor:
189
+ """Block-wise FP4 quantization. inplace=True does fused quant+dequant back to BF16."""
190
+ N = x.size(-1)
191
+ assert N % block_size == 0
192
+ z = x.contiguous()
193
+ y = torch.empty_like(z) if inplace else z.new_empty(*z.shape[:-1], N // 2, dtype=torch.float4_e2m1fn_x2)
194
+ s = z.new_empty(*z.size()[:-1], N // block_size, dtype=torch.float8_e8m0fnu)
195
+ kernel = fp4_quant_kernel(N, block_size, inplace=inplace)
196
+ kernel(z.view(-1, N), y.view(-1, y.size(-1)), s.view(-1, N // block_size))
197
+ if inplace:
198
+ x.copy_(y)
199
+ return x
200
+ return y, s
201
+
202
+
203
+ @tilelang.jit(pass_configs=pass_configs)
204
+ def fp8_gemm_kernel(N, K, out_dtype=BF16, accum_dtype=FP32, scale_dtype=FP32):
205
+ assert out_dtype in [BF16, FP32]
206
+
207
+ M = T.symbolic("M")
208
+ group_size = 128
209
+ block_M = 32
210
+ block_N = 128
211
+ block_K = 128
212
+
213
+ @T.prim_func
214
+ def fp8_gemm_kernel_(
215
+ A: T.Tensor[(M, K), FP8],
216
+ B: T.Tensor[(N, K), FP8],
217
+ C: T.Tensor[(M, N), out_dtype],
218
+ scales_a: T.Tensor[(M, T.ceildiv(K, group_size)), scale_dtype],
219
+ scales_b: T.Tensor[(T.ceildiv(N, group_size), T.ceildiv(K, group_size)), scale_dtype],
220
+ ):
221
+ with T.Kernel(T.ceildiv(N, block_N), T.ceildiv(M, block_M), threads=128) as (
222
+ bx,
223
+ by,
224
+ ):
225
+ A_shared = T.alloc_shared((block_M, block_K), FP8)
226
+ B_shared = T.alloc_shared((block_N, block_K), FP8)
227
+ C_shared = T.alloc_shared((block_M, block_N), out_dtype)
228
+ Scale_C_shared = T.alloc_shared((block_M), FP32)
229
+ C_local = T.alloc_fragment((block_M, block_N), accum_dtype)
230
+ C_local_accum = T.alloc_fragment((block_M, block_N), accum_dtype)
231
+
232
+ # Improve L2 Cache
233
+ T.use_swizzle(panel_size=10)
234
+ T.clear(C_local)
235
+ T.clear(C_local_accum)
236
+
237
+ K_iters = T.ceildiv(K, block_K)
238
+ for k in T.Pipelined(K_iters, num_stages=4):
239
+ T.copy(A[by * block_M, k * block_K], A_shared)
240
+ T.copy(B[bx * block_N, k * block_K], B_shared)
241
+ # Cast scales to FP32 for computation; scales_b has one value per block_N group
242
+ Scale_B = T.Cast(FP32, scales_b[bx * block_N // group_size, k])
243
+ for i in T.Parallel(block_M):
244
+ Scale_C_shared[i] = T.Cast(FP32, scales_a[by * block_M + i, k]) * Scale_B
245
+
246
+ T.gemm(A_shared, B_shared, C_local, transpose_B=True)
247
+ # Separate accumulator for scale-corrected results (2x accumulation precision)
248
+ for i, j in T.Parallel(block_M, block_N):
249
+ C_local_accum[i, j] += C_local[i, j] * Scale_C_shared[i]
250
+ T.clear(C_local)
251
+ T.copy(C_local_accum, C_shared)
252
+ T.copy(C_shared, C[by * block_M, bx * block_N])
253
+
254
+ return fp8_gemm_kernel_
255
+
256
+
257
+ def fp8_gemm(
258
+ a: torch.Tensor, a_s: torch.Tensor, b: torch.Tensor, b_s: torch.Tensor,
259
+ scale_dtype: torch.dtype = torch.float32,
260
+ ) -> torch.Tensor:
261
+ """C[M,N] = A[M,K] @ B[N,K]^T with per-128 block FP8 scaling on both A and B."""
262
+ assert a.is_contiguous() and b.is_contiguous(), "Input tensors must be contiguous"
263
+ assert a_s.is_contiguous() and b_s.is_contiguous(), (
264
+ "Scaling factor tensors must be contiguous"
265
+ )
266
+ tl_dtype = FE8M0 if scale_dtype == torch.float8_e8m0fnu else FP32
267
+ K = a.size(-1)
268
+ M = a.numel() // K
269
+ N = b.size(0)
270
+ c = a.new_empty(*a.size()[:-1], N, dtype=torch.get_default_dtype())
271
+ kernel = fp8_gemm_kernel(N, K, scale_dtype=tl_dtype)
272
+ kernel(a.view(M, K), b, c.view(M, N), a_s.view(M, -1), b_s)
273
+ return c
274
+
275
+
276
+ @tilelang.jit(pass_configs=pass_configs)
277
+ def sparse_attn_kernel(h: int, d: int, scale=None):
278
+ """Sparse multi-head attention via index gathering + online softmax (FlashAttention-style).
279
+ For each (batch, seq_pos), gathers top-k KV positions by index, computes attention
280
+ with numerically stable running max/sum, and includes a learnable attn_sink bias."""
281
+ b = T.symbolic("b")
282
+ m = T.symbolic("m")
283
+ n = T.symbolic("n")
284
+ topk = T.symbolic("topk")
285
+ if scale is None:
286
+ scale = (1.0 / d) ** 0.5
287
+
288
+ num_stages = 2
289
+ threads = 256
290
+ block = 64
291
+ num_blocks = tilelang.cdiv(topk, block)
292
+
293
+ @T.prim_func
294
+ def sparse_attn_kernel_(
295
+ q: T.Tensor[(b, m, h, d), BF16],
296
+ kv: T.Tensor[(b, n, d), BF16],
297
+ o: T.Tensor[(b, m, h, d), BF16],
298
+ attn_sink: T.Tensor[(h,), FP32],
299
+ topk_idxs: T.Tensor[(b, m, topk), INT32],
300
+ ):
301
+ with T.Kernel(m, b, threads=threads) as (bx, by):
302
+ q_shared = T.alloc_shared((h, d), BF16)
303
+ kv_shared = T.alloc_shared((block, d), BF16)
304
+ o_shared = T.alloc_shared((h, d), BF16)
305
+ acc_s_cast = T.alloc_shared((h, block), BF16)
306
+
307
+ idxs = T.alloc_fragment(block, INT32)
308
+ acc_s = T.alloc_fragment((h, block), FP32)
309
+ acc_o = T.alloc_fragment((h, d), FP32)
310
+ scores_max = T.alloc_fragment(h, FP32)
311
+ scores_max_prev = T.alloc_fragment(h, FP32)
312
+ scores_scale = T.alloc_fragment(h, FP32)
313
+ scores_sum = T.alloc_fragment(h, FP32)
314
+ sum_exp = T.alloc_fragment(h, FP32)
315
+
316
+ T.clear(acc_o)
317
+ T.clear(sum_exp)
318
+ T.fill(scores_max, -T.infinity(FP32))
319
+ T.copy(q[by, bx, :, :], q_shared)
320
+
321
+ for t in T.Pipelined(num_blocks, num_stages=num_stages):
322
+ for i in T.Parallel(block):
323
+ idxs[i] = T.if_then_else(t * block + i < topk, topk_idxs[by, bx, t * block + i], -1)
324
+ for i, j in T.Parallel(block, d):
325
+ kv_shared[i, j] = T.if_then_else(idxs[i] != -1, kv[by, idxs[i], j], 0)
326
+ for i, j in T.Parallel(h, block):
327
+ acc_s[i, j] = T.if_then_else(idxs[j] != -1, 0, -T.infinity(FP32))
328
+ T.gemm(q_shared, kv_shared, acc_s, transpose_B=True, policy=T.GemmWarpPolicy.FullRow)
329
+ for i, j in T.Parallel(h, block):
330
+ acc_s[i, j] *= scale
331
+ T.copy(scores_max, scores_max_prev)
332
+ T.reduce_max(acc_s, scores_max, dim=1, clear=False)
333
+ for i in T.Parallel(h):
334
+ scores_scale[i] = T.exp(scores_max_prev[i] - scores_max[i])
335
+ for i, j in T.Parallel(h, block):
336
+ acc_s[i, j] = T.exp(acc_s[i, j] - scores_max[i])
337
+ T.reduce_sum(acc_s, scores_sum, dim=1)
338
+ for i in T.Parallel(h):
339
+ sum_exp[i] = sum_exp[i] * scores_scale[i] + scores_sum[i]
340
+ T.copy(acc_s, acc_s_cast)
341
+ for i, j in T.Parallel(h, d):
342
+ acc_o[i, j] *= scores_scale[i]
343
+ T.gemm(acc_s_cast, kv_shared, acc_o, policy=T.GemmWarpPolicy.FullRow)
344
+
345
+ for i in T.Parallel(h):
346
+ sum_exp[i] += T.exp(attn_sink[i] - scores_max[i])
347
+ for i, j in T.Parallel(h, d):
348
+ acc_o[i, j] /= sum_exp[i]
349
+ T.copy(acc_o, o_shared)
350
+ T.copy(o_shared, o[by, bx, :, :])
351
+
352
+ return sparse_attn_kernel_
353
+
354
+
355
+ def sparse_attn(
356
+ q: torch.Tensor, kv: torch.Tensor, attn_sink: torch.Tensor, topk_idxs: torch.Tensor, softmax_scale: float
357
+ ) -> torch.Tensor:
358
+ b, s, h, d = q.size()
359
+ # Pad heads to 16 for kernel efficiency (stripped after)
360
+ if h < 16:
361
+ q = torch.cat([q, q.new_zeros(b, s, 16 - h, d)], dim=2)
362
+ attn_sink = torch.cat([attn_sink, attn_sink.new_zeros(16 - h)])
363
+ o = torch.empty_like(q)
364
+ kernel = sparse_attn_kernel(q.size(2), d, softmax_scale)
365
+ kernel(q, kv, o, attn_sink, topk_idxs)
366
+ if h < 16:
367
+ o = o.narrow(2, 0, h).contiguous()
368
+ return o
369
+
370
+
371
+ @tilelang.jit(pass_configs=pass_configs)
372
+ def hc_split_sinkhorn_kernel(hc: int, sinkhorn_iters: int, eps: float):
373
+ n = T.symbolic("n")
374
+ mix_hc = (2 + hc) * hc
375
+ threads = 64
376
+
377
+ @T.prim_func
378
+ def hc_split_sinkhorn_kernel_(
379
+ mixes: T.Tensor[(n, mix_hc), FP32],
380
+ hc_scale: T.Tensor[(3,), FP32],
381
+ hc_base: T.Tensor[(mix_hc,), FP32],
382
+ pre: T.Tensor[(n, hc), FP32],
383
+ post: T.Tensor[(n, hc), FP32],
384
+ comb: T.Tensor[(n, hc, hc), FP32],
385
+ ):
386
+ with T.Kernel(n, threads=threads) as i:
387
+ mixes_shared = T.alloc_shared(mix_hc, FP32)
388
+ comb_frag = T.alloc_fragment((hc, hc), FP32)
389
+ T.copy(mixes[i, :], mixes_shared)
390
+
391
+ for j in T.Parallel(hc):
392
+ pre[i, j] = T.sigmoid(mixes_shared[j] * hc_scale[0] + hc_base[j]) + eps
393
+ for j in T.Parallel(hc):
394
+ post[i, j] = 2 * T.sigmoid(mixes_shared[j + hc] * hc_scale[1] + hc_base[j + hc])
395
+ for j, k in T.Parallel(hc, hc):
396
+ comb_frag[j, k] = mixes_shared[j * hc + k + hc * 2] * hc_scale[2] + hc_base[j * hc + k + hc * 2]
397
+
398
+ row_sum = T.alloc_fragment(hc, FP32)
399
+ col_sum = T.alloc_fragment(hc, FP32)
400
+
401
+ # comb = comb.softmax(-1) + eps
402
+ row_max = T.alloc_fragment(hc, FP32)
403
+ T.reduce_max(comb_frag, row_max, dim=1)
404
+ for j, k in T.Parallel(hc, hc):
405
+ comb_frag[j, k] = T.exp(comb_frag[j, k] - row_max[j])
406
+ T.reduce_sum(comb_frag, row_sum, dim=1)
407
+ for j, k in T.Parallel(hc, hc):
408
+ comb_frag[j, k] = comb_frag[j, k] / row_sum[j] + eps
409
+
410
+ # comb = comb / (comb.sum(-2) + eps)
411
+ T.reduce_sum(comb_frag, col_sum, dim=0)
412
+ for j, k in T.Parallel(hc, hc):
413
+ comb_frag[j, k] = comb_frag[j, k] / (col_sum[k] + eps)
414
+
415
+ for _ in T.serial(sinkhorn_iters - 1):
416
+ # comb = comb / (comb.sum(-1) + eps)
417
+ T.reduce_sum(comb_frag, row_sum, dim=1)
418
+ for j, k in T.Parallel(hc, hc):
419
+ comb_frag[j, k] = comb_frag[j, k] / (row_sum[j] + eps)
420
+ # comb = comb / (comb.sum(-2) + eps)
421
+ T.reduce_sum(comb_frag, col_sum, dim=0)
422
+ for j, k in T.Parallel(hc, hc):
423
+ comb_frag[j, k] = comb_frag[j, k] / (col_sum[k] + eps)
424
+
425
+ T.copy(comb_frag, comb[i, :, :])
426
+
427
+ return hc_split_sinkhorn_kernel_
428
+
429
+
430
+ def hc_split_sinkhorn(mixes: torch.Tensor, hc_scale: torch.Tensor, hc_base: torch.Tensor, hc_mult: int = 4, sinkhorn_iters: int = 20, eps: float = 1e-6):
431
+ b, s, _ = mixes.size()
432
+ pre = mixes.new_empty(b, s, hc_mult)
433
+ post = mixes.new_empty(b, s, hc_mult)
434
+ comb = mixes.new_empty(b, s, hc_mult, hc_mult)
435
+ kernel = hc_split_sinkhorn_kernel(hc_mult, sinkhorn_iters, eps)
436
+ kernel(mixes.view(-1, (2 + hc_mult) * hc_mult), hc_scale, hc_base,
437
+ pre.view(-1, hc_mult), post.view(-1, hc_mult), comb.view(-1, hc_mult, hc_mult))
438
+ return pre, post, comb
439
+
440
+
441
+ @tilelang.jit(pass_configs=pass_configs)
442
+ def fp4_gemm_kernel(N, K, out_dtype=BF16, accum_dtype=FP32, scale_dtype=FP32):
443
+ """FP8 act x FP4 weight GEMM kernel.
444
+
445
+ C[M, N] = A_fp8[M, K] @ B_fp4[N, K]^T
446
+
447
+ Act: 1x128 quant on K (reduce dim), FP8 with configurable scale dtype
448
+ Weight: 1x32 quant on K (reduce dim), FP4 with E8M0 scale
449
+
450
+ B is stored as [N, K//2] in float4_e2m1fn_x2, logical [N, K] in fp4.
451
+ The FP4 values are packed along the K (last) dimension.
452
+
453
+ Strategy: load FP4 sub-blocks of size [block_N, sub_K] (sub_K=32),
454
+ cast FP4 to FP8 via float, then do FP8xFP8 GEMM.
455
+ Apply act scale (per 128 on K) and weight scale (per 32 on K) to the accumulator.
456
+ """
457
+ M = T.symbolic("M")
458
+ act_group_size = 128
459
+ weight_group_size = 32
460
+ block_M = 32
461
+ block_N = 128
462
+ block_K = 32 # matches weight_group_size for simple scale handling
463
+ n_sub = act_group_size // block_K # 4 sub-blocks per act scale group
464
+
465
+ @T.prim_func
466
+ def fp4_gemm_kernel_(
467
+ A: T.Tensor[(M, K), FP8],
468
+ B: T.Tensor[(N, K), FP4],
469
+ C: T.Tensor[(M, N), out_dtype],
470
+ scales_a: T.Tensor[(M, T.ceildiv(K, act_group_size)), scale_dtype],
471
+ scales_b: T.Tensor[(N, T.ceildiv(K, weight_group_size)), scale_dtype],
472
+ ):
473
+ with T.Kernel(T.ceildiv(N, block_N), T.ceildiv(M, block_M), threads=128) as (
474
+ bx,
475
+ by,
476
+ ):
477
+ A_shared = T.alloc_shared((block_M, block_K), FP8)
478
+ B_fp4_shared = T.alloc_shared((block_N, block_K), FP4)
479
+ B_shared = T.alloc_shared((block_N, block_K), FP8)
480
+ C_shared = T.alloc_shared((block_M, block_N), out_dtype)
481
+ C_local = T.alloc_fragment((block_M, block_N), accum_dtype)
482
+ C_local_accum = T.alloc_fragment((block_M, block_N), accum_dtype)
483
+ scale_a_frag = T.alloc_fragment((block_M,), FP32)
484
+ scale_b_frag = T.alloc_fragment((block_N,), FP32)
485
+
486
+ T.use_swizzle(panel_size=10)
487
+ T.clear(C_local)
488
+ T.clear(C_local_accum)
489
+
490
+ K_iters = T.ceildiv(K, block_K)
491
+ for k in T.Pipelined(K_iters, num_stages=2):
492
+ T.copy(A[by * block_M, k * block_K], A_shared)
493
+ T.copy(B[bx * block_N, k * block_K], B_fp4_shared)
494
+ # FP4->FP8 cast must go through FP32 to avoid ambiguous C++ overload
495
+ for i, j in T.Parallel(block_N, block_K):
496
+ B_shared[i, j] = T.Cast(FP8, T.Cast(FP32, B_fp4_shared[i, j]))
497
+
498
+ # Weight scale: per 32 on K, indexed by k (each k is one block_K=32)
499
+ for i in T.Parallel(block_N):
500
+ scale_b_frag[i] = T.Cast(FP32, scales_b[bx * block_N + i, k])
501
+
502
+ # Act scale: per 128 on K, indexed by k // 4
503
+ for i in T.Parallel(block_M):
504
+ scale_a_frag[i] = T.Cast(FP32, scales_a[by * block_M + i, k // n_sub])
505
+
506
+ T.gemm(A_shared, B_shared, C_local, transpose_B=True)
507
+
508
+ for i, j in T.Parallel(block_M, block_N):
509
+ C_local_accum[i, j] += C_local[i, j] * scale_a_frag[i] * scale_b_frag[j]
510
+ T.clear(C_local)
511
+
512
+ T.copy(C_local_accum, C_shared)
513
+ T.copy(C_shared, C[by * block_M, bx * block_N])
514
+
515
+ return fp4_gemm_kernel_
516
+
517
+
518
+ def fp4_gemm(
519
+ a: torch.Tensor, a_s: torch.Tensor, b: torch.Tensor, b_s: torch.Tensor,
520
+ scale_dtype: torch.dtype = torch.float32,
521
+ ) -> torch.Tensor:
522
+ """C[M,N] = A_fp8[M,K] @ B_fp4[N,K]^T.
523
+ A has per-128 act scale; B has per-32 E8M0 weight scale.
524
+ B is stored as [N, K//2] in float4_e2m1fn_x2 (2 FP4 values per byte, packed along K)."""
525
+ assert a.is_contiguous() and b.is_contiguous(), "Input tensors must be contiguous"
526
+ assert a_s.is_contiguous() and b_s.is_contiguous(), (
527
+ "Scaling factor tensors must be contiguous"
528
+ )
529
+ tl_dtype = FE8M0 if scale_dtype == torch.float8_e8m0fnu else FP32
530
+ K = a.size(-1)
531
+ M = a.numel() // K
532
+ N = b.size(0)
533
+ c = a.new_empty(*a.size()[:-1], N, dtype=torch.get_default_dtype())
534
+ kernel = fp4_gemm_kernel(N, K, scale_dtype=tl_dtype)
535
+ kernel(a.view(M, K), b, c.view(M, N), a_s.view(M, -1), b_s)
536
+ return c
inference/model.py ADDED
@@ -0,0 +1,961 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import math
2
+ from dataclasses import dataclass
3
+ from typing import Tuple, Optional, Literal
4
+ from functools import lru_cache
5
+ from contextlib import contextmanager
6
+
7
+ import torch
8
+ from torch import nn
9
+ import torch.nn.functional as F
10
+ import torch.distributed as dist
11
+
12
+ from kernel import act_quant, fp4_act_quant, fp8_gemm, fp4_gemm, sparse_attn, hc_split_sinkhorn
13
+
14
+
15
+ world_size = 1
16
+ rank = 0
17
+ block_size = 128
18
+ fp4_block_size = 32
19
+ default_dtype = torch.bfloat16
20
+ scale_fmt = None
21
+ scale_dtype = torch.float32
22
+
23
+
24
+ @contextmanager
25
+ def set_dtype(dtype):
26
+ """Temporarily override torch default dtype, restoring it on exit (even if an exception occurs)."""
27
+ prev = torch.get_default_dtype()
28
+ torch.set_default_dtype(dtype)
29
+ try:
30
+ yield
31
+ finally:
32
+ torch.set_default_dtype(prev)
33
+
34
+ @dataclass
35
+ class ModelArgs:
36
+ """Model hyperparameters. Field names match the config JSON keys."""
37
+ max_batch_size: int = 4
38
+ max_seq_len: int = 4096
39
+ temperature: float = 1
40
+ dtype: Literal["bf16", "fp8"] = "fp8"
41
+ scale_fmt: Literal[None, "ue8m0"] = "ue8m0"
42
+ expert_dtype: Literal[None, "fp4"] = None
43
+ scale_dtype: Literal["fp32", "fp8"] = "fp8"
44
+ vocab_size: int = 129280
45
+ dim: int = 4096
46
+ moe_inter_dim: int = 4096
47
+ n_layers: int = 7
48
+ n_hash_layers: int = 0
49
+ n_mtp_layers: int = 1
50
+ n_heads: int = 64
51
+ # moe
52
+ n_routed_experts: int = 8
53
+ n_shared_experts: int = 1
54
+ n_activated_experts: int = 2
55
+ score_func: Literal["softmax", "sigmoid", "sqrtsoftplus"] = "sqrtsoftplus"
56
+ route_scale: float = 1.
57
+ swiglu_limit: float = 0.
58
+ # mqa
59
+ q_lora_rank: int = 1024
60
+ head_dim: int = 512
61
+ rope_head_dim: int = 64
62
+ norm_eps: float = 1e-6
63
+ o_groups: int = 8
64
+ o_lora_rank: int = 1024
65
+ window_size: int = 128
66
+ compress_ratios: Tuple[int] = (0, 0, 4, 128, 4, 128, 4, 0)
67
+ # yarn
68
+ compress_rope_theta: float = 40000.0
69
+ original_seq_len: int = 0
70
+ rope_theta: float = 10000.0
71
+ rope_factor: float = 40
72
+ beta_fast: int = 32
73
+ beta_slow: int = 1
74
+ # index
75
+ index_n_heads: int = 64
76
+ index_head_dim: int = 128
77
+ index_topk: int = 512
78
+ # hc
79
+ hc_mult: int = 4
80
+ hc_sinkhorn_iters: int = 20
81
+ hc_eps: float = 1e-6
82
+ # dspark
83
+ dspark_block_size: int = 0
84
+ dspark_noise_token_id: int = 0
85
+ dspark_target_layer_ids: Tuple[int] = tuple()
86
+ dspark_markov_rank: int = 256
87
+
88
+
89
+ class ParallelEmbedding(nn.Module):
90
+ """Embedding sharded along the vocab dimension. Each rank holds vocab_size // world_size rows.
91
+ Out-of-range indices are zero-masked before all_reduce to combine partial embeddings."""
92
+ def __init__(self, vocab_size: int, dim: int):
93
+ super().__init__()
94
+ self.vocab_size = vocab_size
95
+ self.dim = dim
96
+ assert vocab_size % world_size == 0, f"Vocabulary size must be divisible by world size (world_size={world_size})"
97
+ self.part_vocab_size = (vocab_size // world_size)
98
+ self.vocab_start_idx = rank * self.part_vocab_size
99
+ self.vocab_end_idx = self.vocab_start_idx + self.part_vocab_size
100
+ self.weight = nn.Parameter(torch.empty(self.part_vocab_size, self.dim))
101
+
102
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
103
+ if world_size > 1:
104
+ mask = (x < self.vocab_start_idx) | (x >= self.vocab_end_idx)
105
+ x = x - self.vocab_start_idx
106
+ x[mask] = 0
107
+ y = F.embedding(x, self.weight)
108
+ if world_size > 1:
109
+ y[mask] = 0
110
+ dist.all_reduce(y)
111
+ return y
112
+
113
+
114
+ def linear(x: torch.Tensor, weight: torch.Tensor, bias: Optional[torch.Tensor] = None) -> torch.Tensor:
115
+ """Dispatches to fp4_gemm / fp8_gemm / F.linear based on weight dtype.
116
+ For quantized weights, x is first quantized to FP8 via act_quant."""
117
+ assert bias is None
118
+
119
+ if weight.dtype == torch.float4_e2m1fn_x2:
120
+ x, s = act_quant(x, block_size, scale_fmt, scale_dtype)
121
+ return fp4_gemm(x, s, weight, weight.scale, scale_dtype)
122
+ elif weight.dtype == torch.float8_e4m3fn:
123
+ x, s = act_quant(x, block_size, scale_fmt, scale_dtype)
124
+ return fp8_gemm(x, s, weight, weight.scale, scale_dtype)
125
+ else:
126
+ return F.linear(x, weight)
127
+
128
+
129
+ class Linear(nn.Module):
130
+ """Linear layer supporting BF16, FP8, and FP4 weight formats with per-block scaling."""
131
+
132
+ def __init__(self, in_features: int, out_features: int, bias: bool = False, dtype = None):
133
+ super().__init__()
134
+ self.in_features = in_features
135
+ self.out_features = out_features
136
+ dtype = dtype or default_dtype
137
+ if dtype == torch.float4_e2m1fn_x2:
138
+ # FP4: weight is [out, in//2] in float4_e2m1fn_x2, logically [out, in] in fp4
139
+ # Scale is [out, in//32] in float8_e8m0fnu (1 scale per 32 fp4 elements along K)
140
+ self.weight = nn.Parameter(torch.empty(out_features, in_features // 2, dtype=torch.float4_e2m1fn_x2))
141
+ scale_out_features = out_features
142
+ scale_in_features = in_features // fp4_block_size
143
+ self.weight.scale = self.scale = nn.Parameter(torch.empty(scale_out_features, scale_in_features, dtype=torch.float8_e8m0fnu))
144
+ elif dtype == torch.float8_e4m3fn:
145
+ self.weight = nn.Parameter(torch.empty(out_features, in_features, dtype=dtype))
146
+ scale_out_features = (out_features + block_size - 1) // block_size
147
+ scale_in_features = (in_features + block_size - 1) // block_size
148
+ self.weight.scale = self.scale = nn.Parameter(torch.empty(scale_out_features, scale_in_features, dtype=torch.float8_e8m0fnu))
149
+ else:
150
+ self.weight = nn.Parameter(torch.empty(out_features, in_features, dtype=dtype))
151
+ self.register_parameter("scale", None)
152
+ if bias:
153
+ self.bias = nn.Parameter(torch.empty(out_features))
154
+ else:
155
+ self.register_parameter("bias", None)
156
+
157
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
158
+ return linear(x, self.weight, self.bias)
159
+
160
+
161
+ class ColumnParallelLinear(Linear):
162
+ """Shards output dim across TP ranks. No all-reduce needed on output."""
163
+ def __init__(self, in_features: int, out_features: int, bias: bool = False, dtype = None):
164
+ assert out_features % world_size == 0, f"Output features must be divisible by world size (world_size={world_size})"
165
+ self.part_out_features = out_features // world_size
166
+ super().__init__(in_features, self.part_out_features, bias, dtype)
167
+
168
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
169
+ return linear(x, self.weight, self.bias)
170
+
171
+
172
+ class RowParallelLinear(Linear):
173
+ """Shards input dim across TP ranks. All-reduce on output to sum partial results."""
174
+ def __init__(self, in_features: int, out_features: int, bias: bool = False, dtype = None):
175
+ assert in_features % world_size == 0, f"Input features must be divisible by world size (world_size={world_size})"
176
+ self.part_in_features = in_features // world_size
177
+ super().__init__(self.part_in_features, out_features, bias, dtype)
178
+
179
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
180
+ y = linear(x, self.weight, None)
181
+ if world_size > 1:
182
+ y = y.float()
183
+ dist.all_reduce(y)
184
+ if self.bias is not None:
185
+ y += self.bias
186
+ return y.type_as(x)
187
+
188
+
189
+ class RMSNorm(nn.Module):
190
+ def __init__(self, dim: int, eps: float = 1e-6):
191
+ super().__init__()
192
+ self.dim = dim
193
+ self.eps = eps
194
+ # rmsnorm in the checkpoint is stored in bf16, while the parameter here is stored in fp32 for convenient.
195
+ self.weight = nn.Parameter(torch.ones(dim, dtype=torch.float32))
196
+
197
+ def forward(self, x: torch.Tensor):
198
+ dtype = x.dtype
199
+ x = x.float()
200
+ var = x.square().mean(-1, keepdim=True)
201
+ x = x * torch.rsqrt(var + self.eps)
202
+ return (self.weight * x).to(dtype)
203
+
204
+
205
+ @lru_cache(2)
206
+ def precompute_freqs_cis(dim, seqlen, original_seq_len, base, factor, beta_fast, beta_slow) -> torch.Tensor:
207
+ """Precomputes complex exponentials for rotary embeddings with YaRN scaling.
208
+ When original_seq_len > 0, applies frequency interpolation with a smooth
209
+ linear ramp between beta_fast and beta_slow correction ranges."""
210
+
211
+ def find_correction_dim(num_rotations, dim, base, max_seq_len):
212
+ return dim * math.log(max_seq_len / (num_rotations * 2 * math.pi)) / (2 * math.log(base))
213
+
214
+ def find_correction_range(low_rot, high_rot, dim, base, max_seq_len):
215
+ low = math.floor(find_correction_dim(low_rot, dim, base, max_seq_len))
216
+ high = math.ceil(find_correction_dim(high_rot, dim, base, max_seq_len))
217
+ return max(low, 0), min(high, dim-1)
218
+
219
+ def linear_ramp_factor(min, max, dim):
220
+ if min == max:
221
+ max += 0.001
222
+ linear_func = (torch.arange(dim, dtype=torch.float32) - min) / (max - min)
223
+ ramp_func = torch.clamp(linear_func, 0, 1)
224
+ return ramp_func
225
+
226
+ freqs = 1.0 / (base ** (torch.arange(0, dim, 2, dtype=torch.float32) / dim))
227
+ if original_seq_len > 0:
228
+ low, high = find_correction_range(beta_fast, beta_slow, dim, base, original_seq_len)
229
+ smooth = 1 - linear_ramp_factor(low, high, dim // 2)
230
+ freqs = freqs / factor * (1 - smooth) + freqs * smooth
231
+
232
+ t = torch.arange(seqlen)
233
+ freqs = torch.outer(t, freqs)
234
+ freqs_cis = torch.polar(torch.ones_like(freqs), freqs)
235
+ return freqs_cis
236
+
237
+
238
+ def apply_rotary_emb(x: torch.Tensor, freqs_cis: torch.Tensor, inverse: bool = False) -> torch.Tensor:
239
+ """Applies rotary positional embeddings in-place. Uses conjugate for inverse (de-rotation)."""
240
+ y = x
241
+ x = torch.view_as_complex(x.float().unflatten(-1, (-1, 2)))
242
+ if inverse:
243
+ freqs_cis = freqs_cis.conj()
244
+ if x.ndim == 3:
245
+ freqs_cis = freqs_cis.view(1, x.size(1), x.size(-1))
246
+ else:
247
+ freqs_cis = freqs_cis.view(1, x.size(1), 1, x.size(-1))
248
+ x = torch.view_as_real(x * freqs_cis).flatten(-2)
249
+ y.copy_(x)
250
+ return y
251
+
252
+
253
+ def rotate_activation(x: torch.Tensor) -> torch.Tensor:
254
+ """Applies randomized Hadamard rotation to spread information across dims before FP8 quant."""
255
+ assert x.dtype == torch.bfloat16
256
+ from fast_hadamard_transform import hadamard_transform
257
+ return hadamard_transform(x, scale=x.size(-1) ** -0.5)
258
+
259
+
260
+ @lru_cache(1)
261
+ def get_window_topk_idxs(window_size: int, bsz: int, seqlen: int, start_pos: int):
262
+ if start_pos >= window_size - 1:
263
+ start_pos %= window_size
264
+ matrix = torch.cat([torch.arange(start_pos + 1, window_size), torch.arange(0, start_pos + 1)], dim=0)
265
+ elif start_pos > 0:
266
+ matrix = F.pad(torch.arange(start_pos + 1), (0, window_size - start_pos - 1), value=-1)
267
+ else:
268
+ base = torch.arange(seqlen).unsqueeze(1)
269
+ matrix = (base - window_size + 1).clamp(0) + torch.arange(min(seqlen, window_size))
270
+ matrix = torch.where(matrix > base, -1, matrix)
271
+ return matrix.int().unsqueeze(0).expand(bsz, -1, -1).contiguous()
272
+
273
+
274
+ @lru_cache(2)
275
+ def get_compress_topk_idxs(ratio: int, bsz: int, seqlen: int, start_pos: int, offset: int):
276
+ if start_pos > 0:
277
+ matrix = torch.arange(0, (start_pos + 1) // ratio) + offset
278
+ else:
279
+ matrix = torch.arange(seqlen // ratio).repeat(seqlen, 1)
280
+ mask = matrix >= torch.arange(1, seqlen + 1).unsqueeze(1) // ratio
281
+ matrix = torch.where(mask, -1, matrix + offset)
282
+ return matrix.int().unsqueeze(0).expand(bsz, -1, -1).contiguous()
283
+
284
+
285
+ class Compressor(nn.Module):
286
+ """Compresses KV cache via learned gated pooling over `compress_ratio` consecutive tokens.
287
+ When overlap=True (ratio==4), uses overlapping windows for smoother compression boundaries."""
288
+
289
+ def __init__(self, args: ModelArgs, compress_ratio: int = 4, head_dim: int = 512, rotate: bool = False):
290
+ super().__init__()
291
+ self.dim = args.dim
292
+ self.head_dim = head_dim
293
+ self.rope_head_dim = args.rope_head_dim
294
+ self.nope_head_dim = head_dim - args.rope_head_dim
295
+ self.compress_ratio = compress_ratio
296
+ self.overlap = compress_ratio == 4
297
+ self.rotate = rotate
298
+ coff = 1 + self.overlap
299
+
300
+ self.ape = nn.Parameter(torch.empty(compress_ratio, coff * self.head_dim, dtype=torch.float32))
301
+ # wkv and wgate in the checkpoint is stored in bf16, while the parameter here is stored in fp32 for convenient.
302
+ # When overlap, the first half of dims is for overlapping compression, second half for normal.
303
+ self.wkv = Linear(self.dim, coff * self.head_dim, dtype=torch.float32)
304
+ self.wgate = Linear(self.dim, coff * self.head_dim, dtype=torch.float32)
305
+ self.norm = RMSNorm(self.head_dim, args.norm_eps)
306
+ self.kv_cache: torch.Tensor = None # assigned lazily from Attention.kv_cache
307
+ # State buffers for decode-phase incremental compression.
308
+ # With overlap: state[:, :ratio] = overlapping window, state[:, ratio:] = current window.
309
+ self.register_buffer("kv_state", torch.zeros(args.max_batch_size, coff * compress_ratio, coff * self.head_dim, dtype=torch.float32), persistent=False)
310
+ self.register_buffer("score_state", torch.full((args.max_batch_size, coff * compress_ratio, coff * self.head_dim), float("-inf"), dtype=torch.float32), persistent=False)
311
+ self.freqs_cis: torch.Tensor = None
312
+
313
+ def overlap_transform(self, tensor: torch.Tensor, value=0):
314
+ # tensor: [b,s,r,2d]
315
+ b, s, _, _ = tensor.size()
316
+ ratio, d = self.compress_ratio, self.head_dim
317
+ new_tensor = tensor.new_full((b, s, 2 * ratio, d), value)
318
+ new_tensor[:, :, ratio:] = tensor[:, :, :, d:]
319
+ new_tensor[:, 1:, :ratio] = tensor[:, :-1, :, :d]
320
+ return new_tensor
321
+
322
+ def forward(self, x: torch.Tensor, start_pos: int):
323
+ assert self.kv_cache is not None
324
+ bsz, seqlen, _ = x.size()
325
+ ratio, overlap, d, rd = self.compress_ratio, self.overlap, self.head_dim, self.rope_head_dim
326
+ dtype = x.dtype
327
+ # compression need fp32
328
+ x = x.float()
329
+ kv = self.wkv(x)
330
+ score = self.wgate(x)
331
+ if start_pos == 0:
332
+ should_compress = seqlen >= ratio
333
+ remainder = seqlen % ratio
334
+ cutoff = seqlen - remainder
335
+ offset = ratio if overlap else 0
336
+ if overlap and cutoff >= ratio:
337
+ self.kv_state[:bsz, :ratio] = kv[:, cutoff-ratio : cutoff]
338
+ self.score_state[:bsz, :ratio] = score[:, cutoff-ratio : cutoff] + self.ape
339
+ if remainder > 0:
340
+ kv, self.kv_state[:bsz, offset : offset+remainder] = kv.split([cutoff, remainder], dim=1)
341
+ self.score_state[:bsz, offset : offset+remainder] = score[:, cutoff:] + self.ape[:remainder]
342
+ score = score[:, :cutoff]
343
+ kv = kv.unflatten(1, (-1, ratio))
344
+ score = score.unflatten(1, (-1, ratio)) + self.ape
345
+ if overlap:
346
+ kv = self.overlap_transform(kv, 0)
347
+ score = self.overlap_transform(score, float("-inf"))
348
+ kv = (kv * score.softmax(dim=2)).sum(dim=2)
349
+ else:
350
+ should_compress = (start_pos + 1) % self.compress_ratio == 0
351
+ score += self.ape[start_pos % ratio]
352
+ if overlap:
353
+ self.kv_state[:bsz, ratio + start_pos % ratio] = kv.squeeze(1)
354
+ self.score_state[:bsz, ratio + start_pos % ratio] = score.squeeze(1)
355
+ if should_compress:
356
+ kv_state = torch.cat([self.kv_state[:bsz, :ratio, :d], self.kv_state[:bsz, ratio:, d:]], dim=1)
357
+ score_state = torch.cat([self.score_state[:bsz, :ratio, :d], self.score_state[:bsz, ratio:, d:]], dim=1)
358
+ kv = (kv_state * score_state.softmax(dim=1)).sum(dim=1, keepdim=True)
359
+ self.kv_state[:bsz, :ratio] = self.kv_state[:bsz, ratio:]
360
+ self.score_state[:bsz, :ratio] = self.score_state[:bsz, ratio:]
361
+ else:
362
+ self.kv_state[:bsz, start_pos % ratio] = kv.squeeze(1)
363
+ self.score_state[:bsz, start_pos % ratio] = score.squeeze(1)
364
+ if should_compress:
365
+ kv = (self.kv_state[:bsz] * self.score_state[:bsz].softmax(dim=1)).sum(dim=1, keepdim=True)
366
+ if not should_compress:
367
+ return
368
+ kv = self.norm(kv.to(dtype))
369
+ if start_pos == 0:
370
+ freqs_cis = self.freqs_cis[:cutoff:ratio]
371
+ else:
372
+ freqs_cis = self.freqs_cis[start_pos + 1 - self.compress_ratio].unsqueeze(0)
373
+ apply_rotary_emb(kv[..., -rd:], freqs_cis)
374
+ if self.rotate:
375
+ kv = rotate_activation(kv)
376
+ fp4_act_quant(kv, fp4_block_size, True)
377
+ else:
378
+ act_quant(kv[..., :-rd], 64, scale_fmt, scale_dtype, True)
379
+ if start_pos == 0:
380
+ self.kv_cache[:bsz, :seqlen // ratio] = kv
381
+ else:
382
+ self.kv_cache[:bsz, start_pos // ratio] = kv.squeeze(1)
383
+ return kv
384
+
385
+
386
+ class Indexer(torch.nn.Module):
387
+ """Selects top-k compressed KV positions for sparse attention via learned scoring.
388
+ Has its own Compressor (with Hadamard rotation) to build compressed KV for scoring."""
389
+
390
+ def __init__(self, args: ModelArgs, compress_ratio: int = 4):
391
+ super().__init__()
392
+ self.dim = args.dim
393
+ self.n_heads = args.index_n_heads
394
+ self.n_local_heads = args.index_n_heads // world_size
395
+ self.head_dim = args.index_head_dim
396
+ self.rope_head_dim = args.rope_head_dim
397
+ self.index_topk = args.index_topk
398
+ self.q_lora_rank = args.q_lora_rank
399
+ self.wq_b = ColumnParallelLinear(self.q_lora_rank, self.n_heads * self.head_dim)
400
+ self.weights_proj = ColumnParallelLinear(self.dim, self.n_heads, dtype=torch.bfloat16)
401
+ self.softmax_scale = self.head_dim ** -0.5
402
+ self.compress_ratio = compress_ratio
403
+
404
+ self.compressor = Compressor(args, compress_ratio, self.head_dim, True)
405
+ self.register_buffer("kv_cache", torch.zeros(args.max_batch_size, args.max_seq_len // compress_ratio, self.head_dim), persistent=False)
406
+ self.freqs_cis = None
407
+
408
+ def forward(self, x: torch.Tensor, qr: torch.Tensor, start_pos: int, offset: int):
409
+ bsz, seqlen, _ = x.size()
410
+ freqs_cis = self.freqs_cis[start_pos:start_pos+seqlen]
411
+ ratio = self.compress_ratio
412
+ rd = self.rope_head_dim
413
+ end_pos = start_pos + seqlen
414
+ if self.compressor.kv_cache is None:
415
+ self.compressor.kv_cache = self.kv_cache
416
+ self.compressor.freqs_cis = self.freqs_cis
417
+ q = self.wq_b(qr)
418
+ q = q.unflatten(-1, (self.n_local_heads, self.head_dim))
419
+ apply_rotary_emb(q[..., -rd:], freqs_cis)
420
+ q = rotate_activation(q)
421
+ # use fp4 simulation for q and kv in indexer
422
+ fp4_act_quant(q, fp4_block_size, True)
423
+ self.compressor(x, start_pos)
424
+ weights = self.weights_proj(x) * (self.softmax_scale * self.n_heads ** -0.5)
425
+ # We performed QAT here, kv could also use fp8 format, though current implementation uses bf16
426
+ index_score = torch.einsum("bshd,btd->bsht", q, self.kv_cache[:bsz, :end_pos // ratio])
427
+ index_score = (index_score.relu_() * weights.unsqueeze(-1)).sum(dim=2)
428
+ if world_size > 1:
429
+ dist.all_reduce(index_score)
430
+ if start_pos == 0:
431
+ mask = torch.arange(seqlen // ratio).repeat(seqlen, 1) >= torch.arange(1, seqlen + 1).unsqueeze(1) // ratio
432
+ index_score += torch.where(mask, float("-inf"), 0)
433
+ topk_idxs = index_score.topk(min(self.index_topk, end_pos // ratio), dim=-1)[1]
434
+ if start_pos == 0:
435
+ mask = topk_idxs >= torch.arange(1, seqlen + 1).unsqueeze(1) // ratio
436
+ topk_idxs = torch.where(mask, -1, topk_idxs + offset)
437
+ else:
438
+ topk_idxs += offset
439
+ return topk_idxs
440
+
441
+
442
+ class Attention(nn.Module):
443
+ """Multi-head Latent Attention (MLA) with sliding window + optional KV compression.
444
+ Uses low-rank Q projection (wq_a -> q_norm -> wq_b) and grouped low-rank O projection."""
445
+ def __init__(self, layer_id: int, args: ModelArgs):
446
+ super().__init__()
447
+ self.layer_id = layer_id
448
+ self.dim = args.dim
449
+ self.n_heads = args.n_heads
450
+ self.n_local_heads = args.n_heads // world_size
451
+ self.q_lora_rank = args.q_lora_rank
452
+ self.o_lora_rank = args.o_lora_rank
453
+ self.head_dim = args.head_dim
454
+ self.rope_head_dim = args.rope_head_dim
455
+ self.nope_head_dim = args.head_dim - args.rope_head_dim
456
+ self.n_groups = args.o_groups
457
+ self.n_local_groups = self.n_groups // world_size
458
+ self.window_size = args.window_size
459
+ self.compress_ratio = args.compress_ratios[layer_id]
460
+ self.eps = args.norm_eps
461
+
462
+ self.attn_sink = nn.Parameter(torch.empty(self.n_local_heads, dtype=torch.float32))
463
+ self.wq_a = Linear(self.dim, self.q_lora_rank)
464
+ self.q_norm = RMSNorm(self.q_lora_rank, self.eps)
465
+ self.wq_b = ColumnParallelLinear(self.q_lora_rank, self.n_heads * self.head_dim)
466
+ self.wkv = Linear(self.dim, self.head_dim)
467
+ self.kv_norm = RMSNorm(self.head_dim, self.eps)
468
+ self.wo_a = ColumnParallelLinear(self.n_heads * self.head_dim // self.n_groups, self.n_groups * args.o_lora_rank, dtype=torch.bfloat16)
469
+ self.wo_b = RowParallelLinear(self.n_groups * args.o_lora_rank, self.dim)
470
+ self.softmax_scale = self.head_dim ** -0.5
471
+
472
+ if self.compress_ratio:
473
+ self.compressor = Compressor(args, self.compress_ratio, self.head_dim)
474
+ if self.compress_ratio == 4:
475
+ self.indexer = Indexer(args, self.compress_ratio)
476
+ else:
477
+ self.indexer = None
478
+
479
+ kv_cache_size = args.window_size + (args.max_seq_len // self.compress_ratio if self.compress_ratio else 0)
480
+ self.register_buffer("kv_cache", torch.zeros(args.max_batch_size, kv_cache_size, self.head_dim), persistent=False)
481
+ if self.compress_ratio:
482
+ original_seq_len, rope_theta = args.original_seq_len, args.compress_rope_theta
483
+ else:
484
+ # disable YaRN and use base rope_theta in pure sliding-window attention
485
+ original_seq_len, rope_theta = 0, args.rope_theta
486
+ freqs_cis = precompute_freqs_cis(self.rope_head_dim, args.max_seq_len, original_seq_len,
487
+ rope_theta, args.rope_factor, args.beta_fast, args.beta_slow)
488
+ self.register_buffer("freqs_cis", freqs_cis, persistent=False)
489
+
490
+ def forward(self, x: torch.Tensor, start_pos: int):
491
+ bsz, seqlen, _ = x.size()
492
+ freqs_cis = self.freqs_cis[start_pos:start_pos+seqlen]
493
+ win = self.window_size
494
+ ratio = self.compress_ratio
495
+ rd = self.rope_head_dim
496
+ if self.compress_ratio and self.compressor.kv_cache is None:
497
+ self.compressor.kv_cache = self.kv_cache[:, win:]
498
+ self.compressor.freqs_cis = self.freqs_cis
499
+ if self.indexer is not None:
500
+ self.indexer.freqs_cis = self.freqs_cis
501
+ # q
502
+ qr = q = self.q_norm(self.wq_a(x))
503
+ q = self.wq_b(q).unflatten(-1, (self.n_local_heads, self.head_dim))
504
+ q *= torch.rsqrt(q.square().mean(-1, keepdim=True) + self.eps)
505
+ apply_rotary_emb(q[..., -rd:], freqs_cis)
506
+
507
+ # win kv & topk_idxs
508
+ kv = self.wkv(x)
509
+ kv = self.kv_norm(kv)
510
+ apply_rotary_emb(kv[..., -rd:], freqs_cis)
511
+ # FP8-simulate non-rope dims to match QAT; rope dims stay bf16 for positional precision
512
+ act_quant(kv[..., :-rd], 64, scale_fmt, scale_dtype, True)
513
+ topk_idxs = get_window_topk_idxs(win, bsz, seqlen, start_pos)
514
+ if self.compress_ratio:
515
+ offset = kv.size(1) if start_pos == 0 else win
516
+ if self.indexer is not None:
517
+ compress_topk_idxs = self.indexer(x, qr, start_pos, offset).int()
518
+ else:
519
+ compress_topk_idxs = get_compress_topk_idxs(ratio, bsz, seqlen, start_pos, offset)
520
+ topk_idxs = torch.cat([topk_idxs, compress_topk_idxs], dim=-1)
521
+
522
+ # compress kv & attn
523
+ if start_pos == 0:
524
+ if seqlen <= win:
525
+ self.kv_cache[:bsz, :seqlen] = kv
526
+ else:
527
+ cutoff = seqlen % win
528
+ self.kv_cache[:bsz, cutoff: win], self.kv_cache[:bsz, :cutoff] = kv[:, -win:].split([win - cutoff, cutoff], dim=1)
529
+ if self.compress_ratio:
530
+ if (kv_compress := self.compressor(x, start_pos)) is not None:
531
+ kv = torch.cat([kv, kv_compress], dim=1)
532
+ # We performed QAT here, kv could also use fp8 format, though current implementation uses bf16
533
+ o = sparse_attn(q, kv, self.attn_sink, topk_idxs, self.softmax_scale)
534
+ else:
535
+ self.kv_cache[:bsz, start_pos % win] = kv.squeeze(1)
536
+ if self.compress_ratio:
537
+ self.compressor(x, start_pos)
538
+ o = sparse_attn(q, self.kv_cache[:bsz], self.attn_sink, topk_idxs, self.softmax_scale)
539
+ apply_rotary_emb(o[..., -rd:], freqs_cis, True)
540
+
541
+ # o
542
+ o = o.view(bsz, seqlen, self.n_local_groups, -1)
543
+ wo_a = self.wo_a.weight.view(self.n_local_groups, self.o_lora_rank, -1)
544
+ # NOTE: wo_a is FP8 in checkpoint; could do FP8 einsum here for better perf,
545
+ # but using BF16 for simplicity.
546
+ o = torch.einsum("bsgd,grd->bsgr", o, wo_a)
547
+ x = self.wo_b(o.flatten(2))
548
+ return x
549
+
550
+
551
+ class Gate(nn.Module):
552
+ """MoE gating: computes expert routing scores and selects top-k experts.
553
+ Supports hash-based routing (first n_hash_layers) where expert indices are
554
+ predetermined per token ID, and score-based routing (remaining layers)."""
555
+ def __init__(self, layer_id: int, args: ModelArgs):
556
+ super().__init__()
557
+ self.dim = args.dim
558
+ self.topk = args.n_activated_experts
559
+ self.score_func = args.score_func
560
+ self.route_scale = args.route_scale
561
+ self.hash = layer_id < args.n_hash_layers
562
+ self.weight = nn.Parameter(torch.empty(args.n_routed_experts, args.dim))
563
+ if self.hash:
564
+ self.tid2eid = nn.Parameter(torch.empty(args.vocab_size, args.n_activated_experts, dtype=torch.int32), requires_grad=False)
565
+ self.bias = None
566
+ else:
567
+ self.bias = nn.Parameter(torch.empty(args.n_routed_experts, dtype=torch.float32))
568
+
569
+ def forward(self, x: torch.Tensor, input_ids: Optional[torch.Tensor] = None) -> Tuple[torch.Tensor, torch.Tensor]:
570
+ scores = linear(x.float(), self.weight.float())
571
+ if self.score_func == "softmax":
572
+ scores = scores.softmax(dim=-1)
573
+ elif self.score_func == "sigmoid":
574
+ scores = scores.sigmoid()
575
+ else:
576
+ scores = F.softplus(scores).sqrt()
577
+ original_scores = scores
578
+ # Bias shifts scores for expert selection (topk) but does not affect routing weights.
579
+ if self.bias is not None:
580
+ scores = scores + self.bias
581
+ if self.hash:
582
+ indices = self.tid2eid[input_ids]
583
+ else:
584
+ indices = scores.topk(self.topk, dim=-1)[1]
585
+ weights = original_scores.gather(1, indices)
586
+ if self.score_func != "softmax":
587
+ weights /= weights.sum(dim=-1, keepdim=True)
588
+ weights *= self.route_scale
589
+ return weights, indices
590
+
591
+
592
+ class Expert(nn.Module):
593
+ """Single MoE expert: SwiGLU FFN (w1, w2, w3). Computation in float32 for stability."""
594
+ def __init__(self, dim: int, inter_dim: int, dtype=None, swiglu_limit=0):
595
+ super().__init__()
596
+ self.w1 = Linear(dim, inter_dim, dtype=dtype)
597
+ self.w2 = Linear(inter_dim, dim, dtype=dtype)
598
+ self.w3 = Linear(dim, inter_dim, dtype=dtype)
599
+ self.swiglu_limit = swiglu_limit
600
+
601
+ def forward(self, x: torch.Tensor, weights: Optional[torch.Tensor] = None) -> torch.Tensor:
602
+ dtype = x.dtype
603
+ gate = self.w1(x).float()
604
+ up = self.w3(x).float()
605
+ if self.swiglu_limit > 0:
606
+ up = torch.clamp(up, min=-self.swiglu_limit, max=self.swiglu_limit)
607
+ gate = torch.clamp(gate, max=self.swiglu_limit)
608
+ x = F.silu(gate) * up
609
+ if weights is not None:
610
+ x = weights * x
611
+ return self.w2(x.to(dtype))
612
+
613
+
614
+ class MoE(nn.Module):
615
+ """Mixture-of-Experts: gate routes each token to top-k routed experts + 1 shared expert.
616
+ Experts are sharded across TP ranks; each rank handles n_routed_experts // world_size experts."""
617
+ def __init__(self, layer_id: int, args: ModelArgs):
618
+ super().__init__()
619
+ self.layer_id = layer_id
620
+ self.dim = args.dim
621
+ assert args.n_routed_experts % world_size == 0, f"Number of experts must be divisible by world size (world_size={world_size})"
622
+ self.n_routed_experts = args.n_routed_experts
623
+ self.n_local_experts = args.n_routed_experts // world_size
624
+ self.n_activated_experts = args.n_activated_experts
625
+ self.experts_start_idx = rank * self.n_local_experts
626
+ self.experts_end_idx = self.experts_start_idx + self.n_local_experts
627
+ self.gate = Gate(layer_id, args)
628
+ expert_dtype = torch.float4_e2m1fn_x2 if args.expert_dtype == "fp4" else None
629
+ self.experts = nn.ModuleList([Expert(args.dim, args.moe_inter_dim, dtype=expert_dtype, swiglu_limit=args.swiglu_limit) if self.experts_start_idx <= i < self.experts_end_idx else None
630
+ for i in range(self.n_routed_experts)])
631
+ assert args.n_shared_experts == 1
632
+ self.shared_experts = Expert(args.dim, args.moe_inter_dim, swiglu_limit=args.swiglu_limit)
633
+
634
+ def forward(self, x: torch.Tensor, input_ids: torch.Tensor) -> torch.Tensor:
635
+ shape = x.size()
636
+ x = x.view(-1, self.dim)
637
+ weights, indices = self.gate(x, input_ids.flatten())
638
+ y = torch.zeros_like(x, dtype=torch.float32)
639
+ counts = torch.bincount(indices.flatten(), minlength=self.n_routed_experts).tolist()
640
+ for i in range(self.experts_start_idx, self.experts_end_idx):
641
+ if counts[i] == 0:
642
+ continue
643
+ expert = self.experts[i]
644
+ idx, top = torch.where(indices == i)
645
+ y[idx] += expert(x[idx], weights[idx, top, None])
646
+ if world_size > 1:
647
+ dist.all_reduce(y)
648
+ y += self.shared_experts(x)
649
+ return y.type_as(x).view(shape)
650
+
651
+
652
+ class Block(nn.Module):
653
+ """Transformer block with Hyper-Connections (HC) mixing.
654
+ Instead of a simple residual, HC maintains `hc_mult` copies of the hidden state.
655
+ hc_pre: reduces hc copies -> 1 via learned weighted sum (pre-weights from Sinkhorn).
656
+ hc_post: expands 1 -> hc copies via learned post-weights + combination matrix."""
657
+ attention_cls = Attention
658
+
659
+ def __init__(self, layer_id: int, args: ModelArgs):
660
+ super().__init__()
661
+ self.layer_id = layer_id
662
+ self.norm_eps = args.norm_eps
663
+ self.attn = self.attention_cls(layer_id, args)
664
+ self.ffn = MoE(layer_id, args)
665
+ self.attn_norm = RMSNorm(args.dim, self.norm_eps)
666
+ self.ffn_norm = RMSNorm(args.dim, self.norm_eps)
667
+ self.hc_mult = hc_mult = args.hc_mult
668
+ self.hc_sinkhorn_iters = args.hc_sinkhorn_iters
669
+ self.hc_eps = args.hc_eps
670
+ mix_hc = (2 + hc_mult) * hc_mult
671
+ hc_dim = hc_mult * args.dim
672
+ with set_dtype(torch.float32):
673
+ self.hc_attn_fn = nn.Parameter(torch.empty(mix_hc, hc_dim))
674
+ self.hc_ffn_fn = nn.Parameter(torch.empty(mix_hc, hc_dim))
675
+ self.hc_attn_base = nn.Parameter(torch.empty(mix_hc))
676
+ self.hc_ffn_base = nn.Parameter(torch.empty(mix_hc))
677
+ self.hc_attn_scale = nn.Parameter(torch.empty(3))
678
+ self.hc_ffn_scale = nn.Parameter(torch.empty(3))
679
+
680
+ def hc_pre(self, x: torch.Tensor, hc_fn: torch.Tensor, hc_scale: torch.Tensor, hc_base: torch.Tensor):
681
+ # x: [b,s,hc,d], hc_fn: [mix_hc,hc*d], hc_scale: [3], hc_base: [mix_hc], y: [b,s,hc,d]
682
+ shape, dtype = x.size(), x.dtype
683
+ x = x.flatten(2).float()
684
+ rsqrt = torch.rsqrt(x.square().mean(-1, keepdim=True) + self.norm_eps)
685
+ mixes = F.linear(x, hc_fn) * rsqrt
686
+ pre, post, comb = hc_split_sinkhorn(mixes, hc_scale, hc_base, self.hc_mult, self.hc_sinkhorn_iters, self.hc_eps)
687
+ y = torch.sum(pre.unsqueeze(-1) * x.view(shape), dim=2)
688
+ return y.to(dtype), post, comb
689
+
690
+ def hc_post(self, x: torch.Tensor, residual: torch.Tensor, post: torch.Tensor, comb: torch.Tensor):
691
+ # x: [b,s,d], residual: [b,s,hc,d], post: [b,s,hc], comb: [b,s,hc,hc], y: [b,s,hc,d]
692
+ y = post.unsqueeze(-1) * x.unsqueeze(-2) + torch.sum(comb.unsqueeze(-1) * residual.unsqueeze(-2), dim=2)
693
+ return y.type_as(x)
694
+
695
+ def forward(self, x: torch.Tensor, start_pos: int, input_ids: Optional[torch.Tensor], *attn_args) -> torch.Tensor:
696
+ residual = x
697
+ x, post, comb = self.hc_pre(x, self.hc_attn_fn, self.hc_attn_scale, self.hc_attn_base)
698
+ x = self.attn_norm(x)
699
+ x = self.attn(x, start_pos, *attn_args)
700
+ x = self.hc_post(x, residual, post, comb)
701
+
702
+ residual = x
703
+ x, post, comb = self.hc_pre(x, self.hc_ffn_fn, self.hc_ffn_scale, self.hc_ffn_base)
704
+ x = self.ffn_norm(x)
705
+ x = self.ffn(x, input_ids)
706
+ x = self.hc_post(x, residual, post, comb)
707
+ return x
708
+
709
+ def hc_head(self, x: torch.Tensor, hc_fn: torch.Tensor, hc_scale: torch.Tensor, hc_base: torch.Tensor):
710
+ shape, dtype = x.size(), x.dtype
711
+ x = x.flatten(2).float()
712
+ rsqrt = torch.rsqrt(x.square().mean(-1, keepdim=True) + self.norm_eps)
713
+ mixes = F.linear(x, hc_fn) * rsqrt
714
+ pre = torch.sigmoid(mixes * hc_scale + hc_base) + self.hc_eps
715
+ y = torch.sum(pre.unsqueeze(-1) * x.view(shape), dim=2)
716
+ return y.to(dtype)
717
+
718
+
719
+ class ParallelHead(nn.Module):
720
+
721
+ def __init__(self, vocab_size: int, dim: int, norm_eps: float = 1e-6, hc_eps: float = 1e-6):
722
+ super().__init__()
723
+ self.vocab_size = vocab_size
724
+ self.dim = dim
725
+ self.norm_eps = norm_eps
726
+ self.hc_eps = hc_eps
727
+ self.part_vocab_size = (vocab_size // world_size)
728
+ # lm_head in the checkpoint is stored in bf16, while the parameter here is stored in fp32 for easier computation of logits later.
729
+ self.weight = nn.Parameter(torch.empty(self.part_vocab_size, self.dim, dtype=torch.float32))
730
+
731
+ def forward(self, x: torch.Tensor, full_logits=False):
732
+ # x: [b,s,hc,d]
733
+ if not full_logits:
734
+ x = x[:, -1]
735
+ logits = F.linear(x.float(), self.weight)
736
+ if world_size > 1:
737
+ all_logits = [torch.empty_like(logits) for _ in range(world_size)]
738
+ dist.all_gather(all_logits, logits)
739
+ logits = torch.cat(all_logits, dim=-1)
740
+ return logits
741
+
742
+
743
+ @lru_cache(1)
744
+ def get_dspark_topk_idxs(window_size: int, bsz: int, block_size: int, start_pos: int):
745
+ assert start_pos > 0
746
+ matrix = torch.cat([torch.arange(min(window_size, start_pos + 1)), window_size + torch.arange(block_size)])
747
+ return matrix.int().view(1, 1, -1).expand(bsz, block_size, -1).contiguous()
748
+
749
+
750
+ class DSparkAttention(Attention):
751
+
752
+ def forward(self, x: torch.Tensor, start_pos: int, main_x: torch.Tensor):
753
+ assert self.compress_ratio == 0
754
+ bsz, seqlen, _ = main_x.size()
755
+ win = self.window_size
756
+ rd = self.rope_head_dim
757
+
758
+ main_freqs_cis = self.freqs_cis[start_pos:start_pos+seqlen]
759
+ main_kv = self.kv_norm(self.wkv(main_x))
760
+ apply_rotary_emb(main_kv[..., -rd:], main_freqs_cis)
761
+ act_quant(main_kv[..., :-rd], 64, scale_fmt, scale_dtype, True)
762
+
763
+ if start_pos == 0:
764
+ if seqlen <= win:
765
+ self.kv_cache[:bsz, :seqlen] = main_kv
766
+ else:
767
+ cutoff = seqlen % win
768
+ self.kv_cache[:bsz, cutoff: win], self.kv_cache[:bsz, :cutoff] = main_kv[:, -win:].split([win - cutoff, cutoff], dim=1)
769
+ return x
770
+
771
+ bsz, block_size, _ = x.size()
772
+ freqs_cis = self.freqs_cis[start_pos+seqlen:start_pos+seqlen+block_size]
773
+
774
+ q = self.q_norm(self.wq_a(x))
775
+ q = self.wq_b(q).unflatten(-1, (self.n_local_heads, self.head_dim))
776
+ q *= torch.rsqrt(q.square().mean(-1, keepdim=True) + self.eps)
777
+ apply_rotary_emb(q[..., -rd:], freqs_cis)
778
+ kv = self.kv_norm(self.wkv(x))
779
+ apply_rotary_emb(kv[..., -rd:], freqs_cis)
780
+ act_quant(kv[..., :-rd], 64, scale_fmt, scale_dtype, True)
781
+
782
+ topk_idxs = get_dspark_topk_idxs(win, bsz, block_size, start_pos)
783
+ self.kv_cache[:bsz, start_pos % win] = main_kv.squeeze(1)
784
+ kv = torch.cat([self.kv_cache[:bsz], kv], dim=1)
785
+ o = sparse_attn(q, kv, self.attn_sink, topk_idxs, self.softmax_scale)
786
+ apply_rotary_emb(o[..., -rd:], freqs_cis, True)
787
+
788
+ o = o.view(bsz, block_size, self.n_local_groups, -1)
789
+ wo_a = self.wo_a.weight.view(self.n_local_groups, self.o_lora_rank, -1)
790
+ o = torch.einsum("bsgd,grd->bsgr", o, wo_a)
791
+ x = self.wo_b(o.flatten(2))
792
+ return x
793
+
794
+
795
+ class DSparkMarkovHead(nn.Module):
796
+ def __init__(self, vocab_size: int, dspark_markov_rank: int):
797
+ super().__init__()
798
+ self.markov_w1 = ParallelEmbedding(vocab_size, dspark_markov_rank)
799
+ self.markov_w2 = ParallelHead(vocab_size, dspark_markov_rank)
800
+
801
+ def forward(self, token_ids: torch.Tensor) -> torch.Tensor:
802
+ embed = self.markov_w1(token_ids)
803
+ logits = self.markov_w2(embed, full_logits=True)
804
+ return logits, embed
805
+
806
+
807
+ class DSparkConfidenceHead(nn.Module):
808
+ def __init__(self, input_dim: int):
809
+ super().__init__()
810
+ # proj in the checkpoint is stored in bf16, while the parameter here is stored in fp32 for fp32 confidence score.
811
+ self.proj = Linear(input_dim, 1, dtype=torch.float32)
812
+
813
+ def forward(self, hidden: torch.Tensor, markov_embed: torch.Tensor):
814
+ hidden = torch.cat([hidden, markov_embed], dim=-1)
815
+ return self.proj(hidden.float()).squeeze(-1)
816
+
817
+
818
+ class DSparkBlock(Block):
819
+ """DSpark stage stored under the mtp.* checkpoint namespace."""
820
+ attention_cls = DSparkAttention
821
+
822
+ def __init__(self, layer_id: int, args: ModelArgs):
823
+ super().__init__(layer_id, args)
824
+ self.dim = args.dim
825
+ stage_id = layer_id - args.n_layers
826
+ self.block_size = args.dspark_block_size
827
+ self.noise_token_id = args.dspark_noise_token_id
828
+ self.temperature = args.temperature
829
+ hc_dim = self.hc_mult * args.dim
830
+ if stage_id == 0:
831
+ assert len(args.dspark_target_layer_ids) > 0, "DSpark needs target layers"
832
+ self.main_proj = Linear(args.dim * len(args.dspark_target_layer_ids), args.dim)
833
+ self.main_norm = RMSNorm(args.dim, args.norm_eps)
834
+ if stage_id == args.n_mtp_layers - 1:
835
+ self.norm = RMSNorm(args.dim, args.norm_eps)
836
+ self.markov_head = DSparkMarkovHead(args.vocab_size, args.dspark_markov_rank)
837
+ self.confidence_head = DSparkConfidenceHead(args.dim + args.dspark_markov_rank)
838
+ with set_dtype(torch.float32):
839
+ self.hc_head_fn = nn.Parameter(torch.empty(self.hc_mult, hc_dim))
840
+ self.hc_head_base = nn.Parameter(torch.empty(self.hc_mult))
841
+ self.hc_head_scale = nn.Parameter(torch.empty(1))
842
+ self.embed: ParallelEmbedding = None
843
+ self.head: ParallelHead = None
844
+
845
+ def forward(self, x: torch.Tensor, start_pos: int, input_ids: torch.Tensor, main_x: torch.Tensor) -> torch.Tensor:
846
+ if start_pos > 0:
847
+ return super().forward(x, start_pos, input_ids, main_x)
848
+ # only compute KV cache in prefill stage
849
+ return self.attn(x, start_pos, main_x)
850
+
851
+ def forward_embed(self, main_hidden: torch.Tensor, input_ids: torch.Tensor):
852
+ assert self.embed is not None
853
+ main_x = self.main_norm(self.main_proj(main_hidden))
854
+ draft_input_ids = input_ids.new_full([input_ids.size(0), self.block_size], self.noise_token_id)
855
+ draft_input_ids[:, 0] = input_ids
856
+ x = self.embed(draft_input_ids)
857
+ x = x.unsqueeze(2).repeat(1, 1, self.hc_mult, 1)
858
+ return x, main_x
859
+
860
+ def forward_head(self, x: torch.Tensor, input_ids: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
861
+ assert self.head is not None
862
+ x = self.hc_head(x, self.hc_head_fn, self.hc_head_scale, self.hc_head_base)
863
+ logits = self.head(self.norm(x), full_logits=True)
864
+ output_ids = input_ids.new_empty(input_ids.size(0), self.block_size + 1)
865
+ output_ids[:, 0] = input_ids
866
+ markov_embeds = []
867
+ for i in range(self.block_size):
868
+ logits_bias, markov_embed = self.markov_head(output_ids[:, i])
869
+ logits[:, i].add_(logits_bias)
870
+ markov_embeds.append(markov_embed)
871
+ output_ids[:, i + 1] = sample(logits[:, i], self.temperature)
872
+ markov_embed = torch.stack(markov_embeds, dim=1)
873
+ confidence = self.confidence_head(x, markov_embed)
874
+ return output_ids, logits, confidence
875
+
876
+
877
+ class Transformer(nn.Module):
878
+ """Full DeepSeek-V4 model: embed -> HC-expand -> N blocks -> HC-head -> logits.
879
+ Sets global state (world_size, rank, default_dtype, scale_fmt, scale_dtype) in __init__."""
880
+ def __init__(self, args: ModelArgs):
881
+ global world_size, rank, default_dtype, scale_fmt, scale_dtype
882
+ world_size = dist.get_world_size() if dist.is_initialized() else 1
883
+ rank = dist.get_rank() if dist.is_initialized() else 0
884
+ default_dtype = torch.float8_e4m3fn if args.dtype == "fp8" else torch.bfloat16
885
+ scale_fmt = "ue8m0" if args.scale_dtype == "fp8" else args.scale_fmt
886
+ scale_dtype = torch.float8_e8m0fnu if args.scale_dtype == "fp8" else torch.float32
887
+ super().__init__()
888
+ self.max_seq_len = args.max_seq_len
889
+ self.temperature = args.temperature
890
+ self.norm_eps = args.norm_eps
891
+ self.hc_eps = args.hc_eps
892
+ self.embed = ParallelEmbedding(args.vocab_size, args.dim)
893
+ self.layers = torch.nn.ModuleList()
894
+ for layer_id in range(args.n_layers):
895
+ self.layers.append(Block(layer_id, args))
896
+ self.norm = RMSNorm(args.dim, self.norm_eps)
897
+ self.head = ParallelHead(args.vocab_size, args.dim, self.norm_eps, self.hc_eps)
898
+ self.mtp = torch.nn.ModuleList()
899
+ self.target_layer_ids = args.dspark_target_layer_ids
900
+ if args.dspark_block_size:
901
+ for layer_id in range(args.n_mtp_layers):
902
+ self.mtp.append(DSparkBlock(args.n_layers + layer_id, args))
903
+ self.mtp[-1].embed = self.embed
904
+ self.mtp[-1].head = self.head
905
+ self.hc_mult = hc_mult = args.hc_mult
906
+ hc_dim = hc_mult * args.dim
907
+ with set_dtype(torch.float32):
908
+ self.hc_head_fn = nn.Parameter(torch.empty(hc_mult, hc_dim))
909
+ self.hc_head_base = nn.Parameter(torch.empty(hc_mult))
910
+ self.hc_head_scale = nn.Parameter(torch.empty(1))
911
+
912
+ @torch.inference_mode()
913
+ def forward(self, input_ids: torch.Tensor, start_pos: int = 0):
914
+ h = self.embed(input_ids)
915
+ # Expand to hc_mult copies for Hyper-Connections
916
+ h = h.unsqueeze(2).repeat(1, 1, self.hc_mult, 1)
917
+ main_hiddens = []
918
+ for i, layer in enumerate(self.layers):
919
+ h = layer(h, start_pos, input_ids)
920
+ if i in self.target_layer_ids:
921
+ main_hiddens.append(h.mean(dim=2))
922
+ h = layer.hc_head(h, self.hc_head_fn, self.hc_head_scale, self.hc_head_base)
923
+ logits = self.head(self.norm(h))
924
+ output_ids = sample(logits, self.temperature)
925
+ main_hidden = torch.cat(main_hiddens, dim=-1) if main_hiddens else None
926
+ return output_ids, logits, main_hidden
927
+
928
+ @torch.inference_mode()
929
+ def forward_spec(self, input_ids: torch.Tensor, main_hidden: torch.Tensor, start_pos: int = 0):
930
+ h, main_x = self.mtp[0].forward_embed(main_hidden, input_ids)
931
+ for layer in self.mtp:
932
+ h = layer(h, start_pos, input_ids, main_x)
933
+ if start_pos == 0:
934
+ return
935
+ output_ids, logits, confidence = self.mtp[-1].forward_head(h, input_ids)
936
+ return output_ids, logits, confidence
937
+
938
+
939
+ def sample(logits, temperature: float = 1.0):
940
+ """Gumbel-max trick: equivalent to multinomial sampling but faster on GPU,
941
+ since it avoids the GPU-to-CPU sync in torch.multinomial."""
942
+ if temperature == 0:
943
+ return logits.argmax(dim=-1)
944
+ logits = logits / max(temperature, 1e-5)
945
+ probs = torch.softmax(logits, dim=-1, dtype=torch.float32)
946
+ return probs.div_(torch.empty_like(probs).exponential_(1)).argmax(dim=-1)
947
+
948
+
949
+ if __name__ == "__main__":
950
+ torch.set_default_dtype(torch.bfloat16)
951
+ torch.set_default_device("cuda")
952
+ torch.manual_seed(0)
953
+ args = ModelArgs(n_hash_layers=0, dspark_block_size=6, dspark_target_layer_ids=(5, 6))
954
+ x = torch.randint(0, args.vocab_size, (2, 150))
955
+ model = Transformer(args)
956
+
957
+ output_ids, logits, main_hidden = model(x[:, :128])
958
+ model.forward_spec(output_ids, main_hidden)
959
+ for i in range(128, 150):
960
+ output_ids, logits, main_hidden = model(x[:, i:i+1], i)
961
+ output_ids, logits, confidence = model.forward_spec(output_ids, main_hidden, i)
inference/requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ torch>=2.10.0
2
+ transformers>=5.0.0
3
+ safetensors>=0.7.0
4
+ fast_hadamard_transform
5
+ tilelang==0.1.8
model-00002-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7b7dc9e0988df87450cdb7ad587af86eee64d338ba842b4b879cb80426abfbf
3
+ size 3477095680
model-00003-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b9be54a4df83333ea6152cc6ffa29b60da30cdaf76685ef440e75090b307e01
3
+ size 3477095680
model-00005-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a72a4b8e740ac91e081bc471495cc515f9b6ad7c9e074aeaf6ed85c739f1cb48
3
+ size 3479543432
model-00008-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f577ef8822b26f9537a03fac43bb8882de7b9a27a0c30d5598848b75705a59a5
3
+ size 3496768264
model-00009-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95c832468e35098f98e6f49fa65f943e1ec5c75fe7f51fe74b3dc06f4cfa92f1
3
+ size 3479543432
model-00012-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:980f6c52e7f8ae9f1add554b71aee70cffa52c355c19655a21f2c6ed5c96ea48
3
+ size 3496770616
model-00013-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7e1633d31dc73089b7de1df99ee48833e3bf43a372bb2d6f954a74b8ad50a7d
3
+ size 3479545776
model-00014-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6595332e850eae914369a863965995db524b154705c2d3d2f8b9d698e18b42fe
3
+ size 3496770616
model-00018-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ac4228b6cf04be426c5f085d0a2301fdf3ebe9ab8b6ae1a1a06f3503d689fe2
3
+ size 3496770616
model-00019-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b12e3543e34e3da21a54c4343f80dd22fede1385f277130bcab355f9dcd6002
3
+ size 3479545776
model-00020-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffdf602bdbf7684cc05f7d3be39834bf657bd06c347777adeb3ccf890a9eefed
3
+ size 3496770616
model-00021-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd871676a1d22421c53b86f53c905ed01eea0f2f5346b486706a5a88b7abdd7d
3
+ size 3479545776
model-00026-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d289f5df025ab7e706e9bb84dd75d364cd6c00b40fe217b71316545a4c9b8f01
3
+ size 3496770616
model-00027-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1695245293d41cfc1c381d5e6d42e84bb004dc007780e6e2d12dca65bc85b82d
3
+ size 3479545776
model-00030-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75722ed386ea2a41af67b2ada5143cea7b676f635edfb39990d3e2e4fcb972a5
3
+ size 3496770616
model-00031-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3192dea02dec09f27fea569ae69eb3465c3c0f3f54916d5a4dd8dc358161747e
3
+ size 3479545776
model-00036-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcaace38f369ea4844dc70d27e12978c3bcb2d8b14984a45728028b1d75e6412
3
+ size 3496770616
model-00037-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cab746d1e2704a35983a3814b7db4e465f0ef45b9b16a78c2eed513976895759
3
+ size 3479545776
model-00040-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d29edb80dab048939aa49209b3d902ef768d85b263b9f518e2853d7704897c2
3
+ size 3496770616
model-00041-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:288302201822d35693518adf4a98ebb5171f8c1d72244cb14cac6acaede73562
3
+ size 3479545776
model-00046-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa1f773b958c9f20fa88365202d4538740da4f3c022397004073dbd23dec3426
3
+ size 3497041648
model-00047-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc88764bae2b04ef0c88ee78cb4570bfeefd1256b34c817cbb28ceabc888bef6
3
+ size 3470884200
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
quantization_config.json ADDED
@@ -0,0 +1,980 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "quant_method": "auto-round",
3
+ "packing_format": "auto_round:auto_gptq",
4
+ "bits": 4,
5
+ "group_size": 128,
6
+ "sym": true,
7
+ "data_type": "int",
8
+ "iters": 0,
9
+ "model_free": true,
10
+ "autoround_version": "0.15.0",
11
+ "extra_config": {
12
+ "wo_a": {
13
+ "bits": 16
14
+ },
15
+ "layers.0.attn.wo_a": {
16
+ "bits": 16,
17
+ "data_type": "float"
18
+ },
19
+ "layers.0.ffn.gate": {
20
+ "bits": 16,
21
+ "data_type": "float"
22
+ },
23
+ "layers.6.attn.compressor.wgate": {
24
+ "bits": 16,
25
+ "data_type": "float"
26
+ },
27
+ "layers.6.attn.compressor.wkv": {
28
+ "bits": 16,
29
+ "data_type": "float"
30
+ },
31
+ "layers.6.attn.indexer.compressor.wgate": {
32
+ "bits": 16,
33
+ "data_type": "float"
34
+ },
35
+ "layers.6.attn.indexer.compressor.wkv": {
36
+ "bits": 16,
37
+ "data_type": "float"
38
+ },
39
+ "layers.6.attn.indexer.weights_proj": {
40
+ "bits": 16,
41
+ "data_type": "float"
42
+ },
43
+ "layers.6.attn.wo_a": {
44
+ "bits": 16,
45
+ "data_type": "float"
46
+ },
47
+ "layers.6.ffn.gate": {
48
+ "bits": 16,
49
+ "data_type": "float"
50
+ },
51
+ "layers.5.attn.compressor.wgate": {
52
+ "bits": 16,
53
+ "data_type": "float"
54
+ },
55
+ "layers.5.attn.compressor.wkv": {
56
+ "bits": 16,
57
+ "data_type": "float"
58
+ },
59
+ "layers.5.attn.wo_a": {
60
+ "bits": 16,
61
+ "data_type": "float"
62
+ },
63
+ "layers.5.ffn.gate": {
64
+ "bits": 16,
65
+ "data_type": "float"
66
+ },
67
+ "layers.1.attn.wo_a": {
68
+ "bits": 16,
69
+ "data_type": "float"
70
+ },
71
+ "layers.1.ffn.gate": {
72
+ "bits": 16,
73
+ "data_type": "float"
74
+ },
75
+ "layers.7.attn.compressor.wgate": {
76
+ "bits": 16,
77
+ "data_type": "float"
78
+ },
79
+ "layers.7.attn.compressor.wkv": {
80
+ "bits": 16,
81
+ "data_type": "float"
82
+ },
83
+ "layers.7.attn.wo_a": {
84
+ "bits": 16,
85
+ "data_type": "float"
86
+ },
87
+ "layers.7.ffn.gate": {
88
+ "bits": 16,
89
+ "data_type": "float"
90
+ },
91
+ "layers.4.attn.compressor.wgate": {
92
+ "bits": 16,
93
+ "data_type": "float"
94
+ },
95
+ "layers.4.attn.compressor.wkv": {
96
+ "bits": 16,
97
+ "data_type": "float"
98
+ },
99
+ "layers.4.attn.indexer.compressor.wgate": {
100
+ "bits": 16,
101
+ "data_type": "float"
102
+ },
103
+ "layers.4.attn.indexer.compressor.wkv": {
104
+ "bits": 16,
105
+ "data_type": "float"
106
+ },
107
+ "layers.4.attn.indexer.weights_proj": {
108
+ "bits": 16,
109
+ "data_type": "float"
110
+ },
111
+ "layers.4.attn.wo_a": {
112
+ "bits": 16,
113
+ "data_type": "float"
114
+ },
115
+ "layers.4.ffn.gate": {
116
+ "bits": 16,
117
+ "data_type": "float"
118
+ },
119
+ "layers.3.attn.compressor.wgate": {
120
+ "bits": 16,
121
+ "data_type": "float"
122
+ },
123
+ "layers.3.attn.compressor.wkv": {
124
+ "bits": 16,
125
+ "data_type": "float"
126
+ },
127
+ "layers.3.attn.wo_a": {
128
+ "bits": 16,
129
+ "data_type": "float"
130
+ },
131
+ "layers.3.ffn.gate": {
132
+ "bits": 16,
133
+ "data_type": "float"
134
+ },
135
+ "layers.2.attn.compressor.wgate": {
136
+ "bits": 16,
137
+ "data_type": "float"
138
+ },
139
+ "layers.2.attn.compressor.wkv": {
140
+ "bits": 16,
141
+ "data_type": "float"
142
+ },
143
+ "layers.2.attn.indexer.compressor.wgate": {
144
+ "bits": 16,
145
+ "data_type": "float"
146
+ },
147
+ "layers.2.attn.indexer.compressor.wkv": {
148
+ "bits": 16,
149
+ "data_type": "float"
150
+ },
151
+ "layers.2.attn.indexer.weights_proj": {
152
+ "bits": 16,
153
+ "data_type": "float"
154
+ },
155
+ "layers.2.attn.wo_a": {
156
+ "bits": 16,
157
+ "data_type": "float"
158
+ },
159
+ "layers.2.ffn.gate": {
160
+ "bits": 16,
161
+ "data_type": "float"
162
+ },
163
+ "layers.8.attn.compressor.wgate": {
164
+ "bits": 16,
165
+ "data_type": "float"
166
+ },
167
+ "layers.8.attn.compressor.wkv": {
168
+ "bits": 16,
169
+ "data_type": "float"
170
+ },
171
+ "layers.8.attn.indexer.compressor.wgate": {
172
+ "bits": 16,
173
+ "data_type": "float"
174
+ },
175
+ "layers.8.attn.indexer.compressor.wkv": {
176
+ "bits": 16,
177
+ "data_type": "float"
178
+ },
179
+ "layers.8.attn.indexer.weights_proj": {
180
+ "bits": 16,
181
+ "data_type": "float"
182
+ },
183
+ "layers.8.attn.wo_a": {
184
+ "bits": 16,
185
+ "data_type": "float"
186
+ },
187
+ "layers.8.ffn.gate": {
188
+ "bits": 16,
189
+ "data_type": "float"
190
+ },
191
+ "layers.9.attn.compressor.wgate": {
192
+ "bits": 16,
193
+ "data_type": "float"
194
+ },
195
+ "layers.9.attn.compressor.wkv": {
196
+ "bits": 16,
197
+ "data_type": "float"
198
+ },
199
+ "layers.9.attn.wo_a": {
200
+ "bits": 16,
201
+ "data_type": "float"
202
+ },
203
+ "layers.9.ffn.gate": {
204
+ "bits": 16,
205
+ "data_type": "float"
206
+ },
207
+ "layers.10.attn.compressor.wgate": {
208
+ "bits": 16,
209
+ "data_type": "float"
210
+ },
211
+ "layers.10.attn.compressor.wkv": {
212
+ "bits": 16,
213
+ "data_type": "float"
214
+ },
215
+ "layers.10.attn.indexer.compressor.wgate": {
216
+ "bits": 16,
217
+ "data_type": "float"
218
+ },
219
+ "layers.10.attn.indexer.compressor.wkv": {
220
+ "bits": 16,
221
+ "data_type": "float"
222
+ },
223
+ "layers.10.attn.indexer.weights_proj": {
224
+ "bits": 16,
225
+ "data_type": "float"
226
+ },
227
+ "layers.10.attn.wo_a": {
228
+ "bits": 16,
229
+ "data_type": "float"
230
+ },
231
+ "layers.10.ffn.gate": {
232
+ "bits": 16,
233
+ "data_type": "float"
234
+ },
235
+ "layers.11.attn.compressor.wgate": {
236
+ "bits": 16,
237
+ "data_type": "float"
238
+ },
239
+ "layers.11.attn.compressor.wkv": {
240
+ "bits": 16,
241
+ "data_type": "float"
242
+ },
243
+ "layers.11.attn.wo_a": {
244
+ "bits": 16,
245
+ "data_type": "float"
246
+ },
247
+ "layers.11.ffn.gate": {
248
+ "bits": 16,
249
+ "data_type": "float"
250
+ },
251
+ "layers.12.attn.compressor.wgate": {
252
+ "bits": 16,
253
+ "data_type": "float"
254
+ },
255
+ "layers.12.attn.compressor.wkv": {
256
+ "bits": 16,
257
+ "data_type": "float"
258
+ },
259
+ "layers.12.attn.indexer.compressor.wgate": {
260
+ "bits": 16,
261
+ "data_type": "float"
262
+ },
263
+ "layers.12.attn.indexer.compressor.wkv": {
264
+ "bits": 16,
265
+ "data_type": "float"
266
+ },
267
+ "layers.12.attn.indexer.weights_proj": {
268
+ "bits": 16,
269
+ "data_type": "float"
270
+ },
271
+ "layers.12.attn.wo_a": {
272
+ "bits": 16,
273
+ "data_type": "float"
274
+ },
275
+ "layers.12.ffn.gate": {
276
+ "bits": 16,
277
+ "data_type": "float"
278
+ },
279
+ "layers.13.attn.compressor.wgate": {
280
+ "bits": 16,
281
+ "data_type": "float"
282
+ },
283
+ "layers.13.attn.compressor.wkv": {
284
+ "bits": 16,
285
+ "data_type": "float"
286
+ },
287
+ "layers.13.attn.wo_a": {
288
+ "bits": 16,
289
+ "data_type": "float"
290
+ },
291
+ "layers.13.ffn.gate": {
292
+ "bits": 16,
293
+ "data_type": "float"
294
+ },
295
+ "layers.15.attn.compressor.wgate": {
296
+ "bits": 16,
297
+ "data_type": "float"
298
+ },
299
+ "layers.15.attn.compressor.wkv": {
300
+ "bits": 16,
301
+ "data_type": "float"
302
+ },
303
+ "layers.15.attn.wo_a": {
304
+ "bits": 16,
305
+ "data_type": "float"
306
+ },
307
+ "layers.15.ffn.gate": {
308
+ "bits": 16,
309
+ "data_type": "float"
310
+ },
311
+ "layers.16.attn.compressor.wgate": {
312
+ "bits": 16,
313
+ "data_type": "float"
314
+ },
315
+ "layers.16.attn.compressor.wkv": {
316
+ "bits": 16,
317
+ "data_type": "float"
318
+ },
319
+ "layers.16.attn.indexer.compressor.wgate": {
320
+ "bits": 16,
321
+ "data_type": "float"
322
+ },
323
+ "layers.16.attn.indexer.compressor.wkv": {
324
+ "bits": 16,
325
+ "data_type": "float"
326
+ },
327
+ "layers.16.attn.indexer.weights_proj": {
328
+ "bits": 16,
329
+ "data_type": "float"
330
+ },
331
+ "layers.16.attn.wo_a": {
332
+ "bits": 16,
333
+ "data_type": "float"
334
+ },
335
+ "layers.16.ffn.gate": {
336
+ "bits": 16,
337
+ "data_type": "float"
338
+ },
339
+ "layers.14.attn.compressor.wgate": {
340
+ "bits": 16,
341
+ "data_type": "float"
342
+ },
343
+ "layers.14.attn.compressor.wkv": {
344
+ "bits": 16,
345
+ "data_type": "float"
346
+ },
347
+ "layers.14.attn.indexer.compressor.wgate": {
348
+ "bits": 16,
349
+ "data_type": "float"
350
+ },
351
+ "layers.14.attn.indexer.compressor.wkv": {
352
+ "bits": 16,
353
+ "data_type": "float"
354
+ },
355
+ "layers.14.attn.indexer.weights_proj": {
356
+ "bits": 16,
357
+ "data_type": "float"
358
+ },
359
+ "layers.14.attn.wo_a": {
360
+ "bits": 16,
361
+ "data_type": "float"
362
+ },
363
+ "layers.14.ffn.gate": {
364
+ "bits": 16,
365
+ "data_type": "float"
366
+ },
367
+ "layers.17.attn.compressor.wgate": {
368
+ "bits": 16,
369
+ "data_type": "float"
370
+ },
371
+ "layers.17.attn.compressor.wkv": {
372
+ "bits": 16,
373
+ "data_type": "float"
374
+ },
375
+ "layers.17.attn.wo_a": {
376
+ "bits": 16,
377
+ "data_type": "float"
378
+ },
379
+ "layers.17.ffn.gate": {
380
+ "bits": 16,
381
+ "data_type": "float"
382
+ },
383
+ "layers.18.attn.compressor.wgate": {
384
+ "bits": 16,
385
+ "data_type": "float"
386
+ },
387
+ "layers.18.attn.compressor.wkv": {
388
+ "bits": 16,
389
+ "data_type": "float"
390
+ },
391
+ "layers.18.attn.indexer.compressor.wgate": {
392
+ "bits": 16,
393
+ "data_type": "float"
394
+ },
395
+ "layers.18.attn.indexer.compressor.wkv": {
396
+ "bits": 16,
397
+ "data_type": "float"
398
+ },
399
+ "layers.18.attn.indexer.weights_proj": {
400
+ "bits": 16,
401
+ "data_type": "float"
402
+ },
403
+ "layers.18.attn.wo_a": {
404
+ "bits": 16,
405
+ "data_type": "float"
406
+ },
407
+ "layers.18.ffn.gate": {
408
+ "bits": 16,
409
+ "data_type": "float"
410
+ },
411
+ "layers.19.attn.compressor.wgate": {
412
+ "bits": 16,
413
+ "data_type": "float"
414
+ },
415
+ "layers.19.attn.compressor.wkv": {
416
+ "bits": 16,
417
+ "data_type": "float"
418
+ },
419
+ "layers.19.attn.wo_a": {
420
+ "bits": 16,
421
+ "data_type": "float"
422
+ },
423
+ "layers.19.ffn.gate": {
424
+ "bits": 16,
425
+ "data_type": "float"
426
+ },
427
+ "layers.24.attn.compressor.wgate": {
428
+ "bits": 16,
429
+ "data_type": "float"
430
+ },
431
+ "layers.24.attn.compressor.wkv": {
432
+ "bits": 16,
433
+ "data_type": "float"
434
+ },
435
+ "layers.24.attn.indexer.compressor.wgate": {
436
+ "bits": 16,
437
+ "data_type": "float"
438
+ },
439
+ "layers.24.attn.indexer.compressor.wkv": {
440
+ "bits": 16,
441
+ "data_type": "float"
442
+ },
443
+ "layers.24.attn.indexer.weights_proj": {
444
+ "bits": 16,
445
+ "data_type": "float"
446
+ },
447
+ "layers.24.attn.wo_a": {
448
+ "bits": 16,
449
+ "data_type": "float"
450
+ },
451
+ "layers.24.ffn.gate": {
452
+ "bits": 16,
453
+ "data_type": "float"
454
+ },
455
+ "layers.20.attn.compressor.wgate": {
456
+ "bits": 16,
457
+ "data_type": "float"
458
+ },
459
+ "layers.20.attn.compressor.wkv": {
460
+ "bits": 16,
461
+ "data_type": "float"
462
+ },
463
+ "layers.20.attn.indexer.compressor.wgate": {
464
+ "bits": 16,
465
+ "data_type": "float"
466
+ },
467
+ "layers.20.attn.indexer.compressor.wkv": {
468
+ "bits": 16,
469
+ "data_type": "float"
470
+ },
471
+ "layers.20.attn.indexer.weights_proj": {
472
+ "bits": 16,
473
+ "data_type": "float"
474
+ },
475
+ "layers.20.attn.wo_a": {
476
+ "bits": 16,
477
+ "data_type": "float"
478
+ },
479
+ "layers.20.ffn.gate": {
480
+ "bits": 16,
481
+ "data_type": "float"
482
+ },
483
+ "layers.21.attn.compressor.wgate": {
484
+ "bits": 16,
485
+ "data_type": "float"
486
+ },
487
+ "layers.21.attn.compressor.wkv": {
488
+ "bits": 16,
489
+ "data_type": "float"
490
+ },
491
+ "layers.21.attn.wo_a": {
492
+ "bits": 16,
493
+ "data_type": "float"
494
+ },
495
+ "layers.21.ffn.gate": {
496
+ "bits": 16,
497
+ "data_type": "float"
498
+ },
499
+ "layers.22.attn.compressor.wgate": {
500
+ "bits": 16,
501
+ "data_type": "float"
502
+ },
503
+ "layers.22.attn.compressor.wkv": {
504
+ "bits": 16,
505
+ "data_type": "float"
506
+ },
507
+ "layers.22.attn.indexer.compressor.wgate": {
508
+ "bits": 16,
509
+ "data_type": "float"
510
+ },
511
+ "layers.22.attn.indexer.compressor.wkv": {
512
+ "bits": 16,
513
+ "data_type": "float"
514
+ },
515
+ "layers.22.attn.indexer.weights_proj": {
516
+ "bits": 16,
517
+ "data_type": "float"
518
+ },
519
+ "layers.22.attn.wo_a": {
520
+ "bits": 16,
521
+ "data_type": "float"
522
+ },
523
+ "layers.22.ffn.gate": {
524
+ "bits": 16,
525
+ "data_type": "float"
526
+ },
527
+ "layers.23.attn.compressor.wgate": {
528
+ "bits": 16,
529
+ "data_type": "float"
530
+ },
531
+ "layers.23.attn.compressor.wkv": {
532
+ "bits": 16,
533
+ "data_type": "float"
534
+ },
535
+ "layers.23.attn.wo_a": {
536
+ "bits": 16,
537
+ "data_type": "float"
538
+ },
539
+ "layers.23.ffn.gate": {
540
+ "bits": 16,
541
+ "data_type": "float"
542
+ },
543
+ "layers.25.attn.compressor.wgate": {
544
+ "bits": 16,
545
+ "data_type": "float"
546
+ },
547
+ "layers.25.attn.compressor.wkv": {
548
+ "bits": 16,
549
+ "data_type": "float"
550
+ },
551
+ "layers.25.attn.wo_a": {
552
+ "bits": 16,
553
+ "data_type": "float"
554
+ },
555
+ "layers.25.ffn.gate": {
556
+ "bits": 16,
557
+ "data_type": "float"
558
+ },
559
+ "layers.26.attn.compressor.wgate": {
560
+ "bits": 16,
561
+ "data_type": "float"
562
+ },
563
+ "layers.26.attn.compressor.wkv": {
564
+ "bits": 16,
565
+ "data_type": "float"
566
+ },
567
+ "layers.26.attn.indexer.compressor.wgate": {
568
+ "bits": 16,
569
+ "data_type": "float"
570
+ },
571
+ "layers.26.attn.indexer.compressor.wkv": {
572
+ "bits": 16,
573
+ "data_type": "float"
574
+ },
575
+ "layers.26.attn.indexer.weights_proj": {
576
+ "bits": 16,
577
+ "data_type": "float"
578
+ },
579
+ "layers.26.attn.wo_a": {
580
+ "bits": 16,
581
+ "data_type": "float"
582
+ },
583
+ "layers.26.ffn.gate": {
584
+ "bits": 16,
585
+ "data_type": "float"
586
+ },
587
+ "layers.27.attn.compressor.wgate": {
588
+ "bits": 16,
589
+ "data_type": "float"
590
+ },
591
+ "layers.27.attn.compressor.wkv": {
592
+ "bits": 16,
593
+ "data_type": "float"
594
+ },
595
+ "layers.27.attn.wo_a": {
596
+ "bits": 16,
597
+ "data_type": "float"
598
+ },
599
+ "layers.27.ffn.gate": {
600
+ "bits": 16,
601
+ "data_type": "float"
602
+ },
603
+ "layers.28.attn.compressor.wgate": {
604
+ "bits": 16,
605
+ "data_type": "float"
606
+ },
607
+ "layers.28.attn.compressor.wkv": {
608
+ "bits": 16,
609
+ "data_type": "float"
610
+ },
611
+ "layers.28.attn.indexer.compressor.wgate": {
612
+ "bits": 16,
613
+ "data_type": "float"
614
+ },
615
+ "layers.28.attn.indexer.compressor.wkv": {
616
+ "bits": 16,
617
+ "data_type": "float"
618
+ },
619
+ "layers.28.attn.indexer.weights_proj": {
620
+ "bits": 16,
621
+ "data_type": "float"
622
+ },
623
+ "layers.28.attn.wo_a": {
624
+ "bits": 16,
625
+ "data_type": "float"
626
+ },
627
+ "layers.28.ffn.gate": {
628
+ "bits": 16,
629
+ "data_type": "float"
630
+ },
631
+ "layers.29.attn.compressor.wgate": {
632
+ "bits": 16,
633
+ "data_type": "float"
634
+ },
635
+ "layers.29.attn.compressor.wkv": {
636
+ "bits": 16,
637
+ "data_type": "float"
638
+ },
639
+ "layers.29.attn.wo_a": {
640
+ "bits": 16,
641
+ "data_type": "float"
642
+ },
643
+ "layers.29.ffn.gate": {
644
+ "bits": 16,
645
+ "data_type": "float"
646
+ },
647
+ "layers.31.attn.compressor.wgate": {
648
+ "bits": 16,
649
+ "data_type": "float"
650
+ },
651
+ "layers.31.attn.compressor.wkv": {
652
+ "bits": 16,
653
+ "data_type": "float"
654
+ },
655
+ "layers.31.attn.wo_a": {
656
+ "bits": 16,
657
+ "data_type": "float"
658
+ },
659
+ "layers.31.ffn.gate": {
660
+ "bits": 16,
661
+ "data_type": "float"
662
+ },
663
+ "layers.30.attn.compressor.wgate": {
664
+ "bits": 16,
665
+ "data_type": "float"
666
+ },
667
+ "layers.30.attn.compressor.wkv": {
668
+ "bits": 16,
669
+ "data_type": "float"
670
+ },
671
+ "layers.30.attn.indexer.compressor.wgate": {
672
+ "bits": 16,
673
+ "data_type": "float"
674
+ },
675
+ "layers.30.attn.indexer.compressor.wkv": {
676
+ "bits": 16,
677
+ "data_type": "float"
678
+ },
679
+ "layers.30.attn.indexer.weights_proj": {
680
+ "bits": 16,
681
+ "data_type": "float"
682
+ },
683
+ "layers.30.attn.wo_a": {
684
+ "bits": 16,
685
+ "data_type": "float"
686
+ },
687
+ "layers.30.ffn.gate": {
688
+ "bits": 16,
689
+ "data_type": "float"
690
+ },
691
+ "layers.32.attn.compressor.wgate": {
692
+ "bits": 16,
693
+ "data_type": "float"
694
+ },
695
+ "layers.32.attn.compressor.wkv": {
696
+ "bits": 16,
697
+ "data_type": "float"
698
+ },
699
+ "layers.32.attn.indexer.compressor.wgate": {
700
+ "bits": 16,
701
+ "data_type": "float"
702
+ },
703
+ "layers.32.attn.indexer.compressor.wkv": {
704
+ "bits": 16,
705
+ "data_type": "float"
706
+ },
707
+ "layers.32.attn.indexer.weights_proj": {
708
+ "bits": 16,
709
+ "data_type": "float"
710
+ },
711
+ "layers.32.attn.wo_a": {
712
+ "bits": 16,
713
+ "data_type": "float"
714
+ },
715
+ "layers.32.ffn.gate": {
716
+ "bits": 16,
717
+ "data_type": "float"
718
+ },
719
+ "layers.33.attn.compressor.wgate": {
720
+ "bits": 16,
721
+ "data_type": "float"
722
+ },
723
+ "layers.33.attn.compressor.wkv": {
724
+ "bits": 16,
725
+ "data_type": "float"
726
+ },
727
+ "layers.33.attn.wo_a": {
728
+ "bits": 16,
729
+ "data_type": "float"
730
+ },
731
+ "layers.33.ffn.gate": {
732
+ "bits": 16,
733
+ "data_type": "float"
734
+ },
735
+ "layers.35.attn.compressor.wgate": {
736
+ "bits": 16,
737
+ "data_type": "float"
738
+ },
739
+ "layers.35.attn.compressor.wkv": {
740
+ "bits": 16,
741
+ "data_type": "float"
742
+ },
743
+ "layers.35.attn.wo_a": {
744
+ "bits": 16,
745
+ "data_type": "float"
746
+ },
747
+ "layers.35.ffn.gate": {
748
+ "bits": 16,
749
+ "data_type": "float"
750
+ },
751
+ "layers.34.attn.compressor.wgate": {
752
+ "bits": 16,
753
+ "data_type": "float"
754
+ },
755
+ "layers.34.attn.compressor.wkv": {
756
+ "bits": 16,
757
+ "data_type": "float"
758
+ },
759
+ "layers.34.attn.indexer.compressor.wgate": {
760
+ "bits": 16,
761
+ "data_type": "float"
762
+ },
763
+ "layers.34.attn.indexer.compressor.wkv": {
764
+ "bits": 16,
765
+ "data_type": "float"
766
+ },
767
+ "layers.34.attn.indexer.weights_proj": {
768
+ "bits": 16,
769
+ "data_type": "float"
770
+ },
771
+ "layers.34.attn.wo_a": {
772
+ "bits": 16,
773
+ "data_type": "float"
774
+ },
775
+ "layers.34.ffn.gate": {
776
+ "bits": 16,
777
+ "data_type": "float"
778
+ },
779
+ "layers.37.attn.compressor.wgate": {
780
+ "bits": 16,
781
+ "data_type": "float"
782
+ },
783
+ "layers.37.attn.compressor.wkv": {
784
+ "bits": 16,
785
+ "data_type": "float"
786
+ },
787
+ "layers.37.attn.wo_a": {
788
+ "bits": 16,
789
+ "data_type": "float"
790
+ },
791
+ "layers.37.ffn.gate": {
792
+ "bits": 16,
793
+ "data_type": "float"
794
+ },
795
+ "layers.36.attn.compressor.wgate": {
796
+ "bits": 16,
797
+ "data_type": "float"
798
+ },
799
+ "layers.36.attn.compressor.wkv": {
800
+ "bits": 16,
801
+ "data_type": "float"
802
+ },
803
+ "layers.36.attn.indexer.compressor.wgate": {
804
+ "bits": 16,
805
+ "data_type": "float"
806
+ },
807
+ "layers.36.attn.indexer.compressor.wkv": {
808
+ "bits": 16,
809
+ "data_type": "float"
810
+ },
811
+ "layers.36.attn.indexer.weights_proj": {
812
+ "bits": 16,
813
+ "data_type": "float"
814
+ },
815
+ "layers.36.attn.wo_a": {
816
+ "bits": 16,
817
+ "data_type": "float"
818
+ },
819
+ "layers.36.ffn.gate": {
820
+ "bits": 16,
821
+ "data_type": "float"
822
+ },
823
+ "head": {
824
+ "bits": 16,
825
+ "data_type": "float"
826
+ },
827
+ "layers.38.attn.compressor.wgate": {
828
+ "bits": 16,
829
+ "data_type": "float"
830
+ },
831
+ "layers.38.attn.compressor.wkv": {
832
+ "bits": 16,
833
+ "data_type": "float"
834
+ },
835
+ "layers.38.attn.indexer.compressor.wgate": {
836
+ "bits": 16,
837
+ "data_type": "float"
838
+ },
839
+ "layers.38.attn.indexer.compressor.wkv": {
840
+ "bits": 16,
841
+ "data_type": "float"
842
+ },
843
+ "layers.38.attn.indexer.weights_proj": {
844
+ "bits": 16,
845
+ "data_type": "float"
846
+ },
847
+ "layers.38.attn.wo_a": {
848
+ "bits": 16,
849
+ "data_type": "float"
850
+ },
851
+ "layers.38.ffn.gate": {
852
+ "bits": 16,
853
+ "data_type": "float"
854
+ },
855
+ "layers.39.attn.compressor.wgate": {
856
+ "bits": 16,
857
+ "data_type": "float"
858
+ },
859
+ "layers.39.attn.compressor.wkv": {
860
+ "bits": 16,
861
+ "data_type": "float"
862
+ },
863
+ "layers.39.attn.wo_a": {
864
+ "bits": 16,
865
+ "data_type": "float"
866
+ },
867
+ "layers.39.ffn.gate": {
868
+ "bits": 16,
869
+ "data_type": "float"
870
+ },
871
+ "layers.40.attn.compressor.wgate": {
872
+ "bits": 16,
873
+ "data_type": "float"
874
+ },
875
+ "layers.40.attn.compressor.wkv": {
876
+ "bits": 16,
877
+ "data_type": "float"
878
+ },
879
+ "layers.40.attn.indexer.compressor.wgate": {
880
+ "bits": 16,
881
+ "data_type": "float"
882
+ },
883
+ "layers.40.attn.indexer.compressor.wkv": {
884
+ "bits": 16,
885
+ "data_type": "float"
886
+ },
887
+ "layers.40.attn.indexer.weights_proj": {
888
+ "bits": 16,
889
+ "data_type": "float"
890
+ },
891
+ "layers.40.attn.wo_a": {
892
+ "bits": 16,
893
+ "data_type": "float"
894
+ },
895
+ "layers.40.ffn.gate": {
896
+ "bits": 16,
897
+ "data_type": "float"
898
+ },
899
+ "layers.41.attn.compressor.wgate": {
900
+ "bits": 16,
901
+ "data_type": "float"
902
+ },
903
+ "layers.41.attn.compressor.wkv": {
904
+ "bits": 16,
905
+ "data_type": "float"
906
+ },
907
+ "layers.41.attn.wo_a": {
908
+ "bits": 16,
909
+ "data_type": "float"
910
+ },
911
+ "layers.41.ffn.gate": {
912
+ "bits": 16,
913
+ "data_type": "float"
914
+ },
915
+ "layers.42.attn.compressor.wgate": {
916
+ "bits": 16,
917
+ "data_type": "float"
918
+ },
919
+ "layers.42.attn.compressor.wkv": {
920
+ "bits": 16,
921
+ "data_type": "float"
922
+ },
923
+ "layers.42.attn.indexer.compressor.wgate": {
924
+ "bits": 16,
925
+ "data_type": "float"
926
+ },
927
+ "layers.42.attn.indexer.compressor.wkv": {
928
+ "bits": 16,
929
+ "data_type": "float"
930
+ },
931
+ "layers.42.attn.indexer.weights_proj": {
932
+ "bits": 16,
933
+ "data_type": "float"
934
+ },
935
+ "layers.42.attn.wo_a": {
936
+ "bits": 16,
937
+ "data_type": "float"
938
+ },
939
+ "layers.42.ffn.gate": {
940
+ "bits": 16,
941
+ "data_type": "float"
942
+ },
943
+ "mtp.0.attn.wo_a": {
944
+ "bits": 16,
945
+ "data_type": "float"
946
+ },
947
+ "mtp.0.ffn.gate": {
948
+ "bits": 16,
949
+ "data_type": "float"
950
+ },
951
+ "mtp.1.attn.wo_a": {
952
+ "bits": 16,
953
+ "data_type": "float"
954
+ },
955
+ "mtp.1.ffn.gate": {
956
+ "bits": 16,
957
+ "data_type": "float"
958
+ },
959
+ "mtp.2.attn.wo_a": {
960
+ "bits": 16,
961
+ "data_type": "float"
962
+ },
963
+ "mtp.2.confidence_head.proj": {
964
+ "bits": 16,
965
+ "data_type": "float"
966
+ },
967
+ "mtp.2.ffn.gate": {
968
+ "bits": 16,
969
+ "data_type": "float"
970
+ },
971
+ "mtp.2.markov_head.markov_w1": {
972
+ "bits": 16,
973
+ "data_type": "float"
974
+ },
975
+ "mtp.2.markov_head.markov_w2": {
976
+ "bits": 16,
977
+ "data_type": "float"
978
+ }
979
+ }
980
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_eos_token": false,
4
+ "bos_token": {
5
+ "__type": "AddedToken",
6
+ "content": "<|begin▁of▁sentence|>",
7
+ "lstrip": false,
8
+ "normalized": true,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "clean_up_tokenization_spaces": false,
13
+ "eos_token": {
14
+ "__type": "AddedToken",
15
+ "content": "<|end▁of▁sentence|>",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false
20
+ },
21
+ "legacy": true,
22
+ "model_max_length": 1048576,
23
+ "pad_token": {
24
+ "__type": "AddedToken",
25
+ "content": "<|end▁of▁sentence|>",
26
+ "lstrip": false,
27
+ "normalized": true,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ },
31
+ "sp_model_kwargs": {},
32
+ "unk_token": null,
33
+ "tokenizer_class": "PreTrainedTokenizerFast"
34
+ }