aspctu commited on
Commit
56383ea
·
verified ·
1 Parent(s): 7fcadb2

Upload folder using huggingface_hub

Browse files
Files changed (10) hide show
  1. .gitattributes +8 -0
  2. config.json +112 -0
  3. rank0.engine +3 -0
  4. rank1.engine +3 -0
  5. rank2.engine +3 -0
  6. rank3.engine +3 -0
  7. rank4.engine +3 -0
  8. rank5.engine +3 -0
  9. rank6.engine +3 -0
  10. rank7.engine +3 -0
.gitattributes CHANGED
@@ -33,3 +33,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ rank0.engine filter=lfs diff=lfs merge=lfs -text
37
+ rank1.engine filter=lfs diff=lfs merge=lfs -text
38
+ rank2.engine filter=lfs diff=lfs merge=lfs -text
39
+ rank3.engine filter=lfs diff=lfs merge=lfs -text
40
+ rank4.engine filter=lfs diff=lfs merge=lfs -text
41
+ rank5.engine filter=lfs diff=lfs merge=lfs -text
42
+ rank6.engine filter=lfs diff=lfs merge=lfs -text
43
+ rank7.engine filter=lfs diff=lfs merge=lfs -text
config.json ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "0.9.0.dev2024022000",
3
+ "pretrained_config": {
4
+ "architecture": "MixtralForCausalLM",
5
+ "dtype": "float16",
6
+ "logits_dtype": "float32",
7
+ "vocab_size": 32000,
8
+ "max_position_embeddings": 32768,
9
+ "hidden_size": 4096,
10
+ "num_hidden_layers": 32,
11
+ "num_attention_heads": 32,
12
+ "num_key_value_heads": 8,
13
+ "head_size": 128,
14
+ "hidden_act": "swiglu",
15
+ "intermediate_size": 14336,
16
+ "norm_epsilon": 1e-05,
17
+ "position_embedding_type": "rope_gpt_neox",
18
+ "use_prompt_tuning": false,
19
+ "use_parallel_embedding": false,
20
+ "embedding_sharding_dim": 0,
21
+ "share_embedding_table": false,
22
+ "mapping": {
23
+ "world_size": 8,
24
+ "tp_size": 8,
25
+ "pp_size": 1
26
+ },
27
+ "kv_dtype": "float16",
28
+ "max_lora_rank": 64,
29
+ "rotary_base": 1000000.0,
30
+ "rotary_scaling": null,
31
+ "moe_num_experts": 8,
32
+ "moe_top_k": 2,
33
+ "moe_tp_mode": 1,
34
+ "moe_normalization_mode": 1,
35
+ "enable_pos_shift": false,
36
+ "dense_context_fmha": false,
37
+ "lora_target_modules": null,
38
+ "hf_modules_to_trtllm_modules": {
39
+ "q_proj": "attn_q",
40
+ "k_proj": "attn_k",
41
+ "v_proj": "attn_v",
42
+ "o_proj": "attn_dense",
43
+ "gate_proj": "mlp_h_to_4h",
44
+ "down_proj": "mlp_4h_to_h",
45
+ "up_proj": "mlp_gate"
46
+ },
47
+ "trtllm_modules_to_hf_modules": {
48
+ "attn_q": "q_proj",
49
+ "attn_k": "k_proj",
50
+ "attn_v": "v_proj",
51
+ "attn_dense": "o_proj",
52
+ "mlp_h_to_4h": "gate_proj",
53
+ "mlp_4h_to_h": "down_proj",
54
+ "mlp_gate": "up_proj"
55
+ },
56
+ "disable_weight_only_quant_plugin": false,
57
+ "mlp_bias": false,
58
+ "attn_bias": false,
59
+ "quantization": {
60
+ "quant_algo": null,
61
+ "kv_cache_quant_algo": null,
62
+ "group_size": 128,
63
+ "has_zero_point": false,
64
+ "pre_quant_scale": false,
65
+ "exclude_modules": null,
66
+ "sq_use_plugin": false
67
+ }
68
+ },
69
+ "build_config": {
70
+ "max_input_len": 4000,
71
+ "max_output_len": 1000,
72
+ "max_batch_size": 32,
73
+ "max_beam_width": 1,
74
+ "max_num_tokens": 128000,
75
+ "max_prompt_embedding_table_size": 0,
76
+ "gather_context_logits": false,
77
+ "gather_generation_logits": false,
78
+ "strongly_typed": false,
79
+ "builder_opt": null,
80
+ "profiling_verbosity": "layer_names_only",
81
+ "enable_debug_output": false,
82
+ "max_draft_len": 0,
83
+ "plugin_config": {
84
+ "bert_attention_plugin": "float16",
85
+ "gpt_attention_plugin": "float16",
86
+ "gemm_plugin": "float16",
87
+ "smooth_quant_gemm_plugin": null,
88
+ "identity_plugin": null,
89
+ "layernorm_quantization_plugin": null,
90
+ "rmsnorm_quantization_plugin": null,
91
+ "nccl_plugin": "float16",
92
+ "lookup_plugin": null,
93
+ "lora_plugin": null,
94
+ "weight_only_groupwise_quant_matmul_plugin": null,
95
+ "weight_only_quant_matmul_plugin": null,
96
+ "quantize_per_token_plugin": false,
97
+ "quantize_tensor_plugin": false,
98
+ "moe_plugin": "float16",
99
+ "context_fmha": true,
100
+ "context_fmha_fp32_acc": false,
101
+ "paged_kv_cache": true,
102
+ "remove_input_padding": true,
103
+ "use_custom_all_reduce": true,
104
+ "multi_block_mode": false,
105
+ "enable_xqa": true,
106
+ "attention_qk_half_accumulation": false,
107
+ "tokens_per_block": 128,
108
+ "use_paged_context_fmha": false,
109
+ "use_context_fmha_for_generation": false
110
+ }
111
+ }
112
+ }
rank0.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c788b10bbf1e7fc208755f79de0996423d6a7f68d9e59258b86cb0aa7003e599
3
+ size 11910698012
rank1.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e318354c22268b74953008a44dcb19f9afc38293181e919c18e5df65a99240f
3
+ size 11910699596
rank2.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:385e9d02247e8800b70a35e2319eb04e0021b487733a16372460b734dc36d88f
3
+ size 11910698012
rank3.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5456e0a0af135e9912021439c6bf822265242bfb12c1f16ebc7feecb8126f336
3
+ size 11910698012
rank4.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f4fbf06628d5ecc36bf4890c445097cbd0d0529a7d259fd158a2f70386d7d59
3
+ size 11910698012
rank5.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19442cbb066adc8a18f813b7c2bd61dd20d5236d3ea70c7969be4cb2f4f1bd02
3
+ size 11910723428
rank6.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:690c52fef8f4a954d8b65b394790ed78ab96b08f273a98d37bd262bafbbaad2a
3
+ size 11910725012
rank7.engine ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea347ac4b6523fd9c75181e1ee1c46608a7048b9b00e4ed78d13d3c5f2be05eb
3
+ size 11910723428