File tree
10 files changed
+201
-120
lines changed- 3rdparty
- scripts
- site/_includes
- web
10 files changed
+201
-120
lines changedLines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
2 |
| - | |
3 |
| - | |
4 | 1 |
| |
5 | 2 |
| |
6 | 3 |
| |
| 4 | + | |
| 5 | + | |
| 6 | + |
Lines changed: 0 additions & 1 deletion
This file was deleted.
Submodule tokenizers-cpp added at a3fd734
- .gitignore-1
- .gitmodules+3-3
- 3rdparty/sentencepiece-js-1
- 3rdparty/tokenizers-cpp+1
- 3rdparty/tokenizers-cpp/CMakeLists.txt-81
- 3rdparty/tokenizers-cpp/Cargo.toml-13
- 3rdparty/tokenizers-cpp/src/lib.rs-187
- 3rdparty/tokenizers-cpp/tokenizers.h-101
- CMakeLists.txt+13-27
- README.md+47-1
- android/MLCChat/app/src/main/java/ai/mlc/mlcchat/LLMChat.java+2-6
- android/MLCChat/app/src/main/jni/Android.mk+8-1
- android/README.md+17-22
- android/prepare_libs.sh+1-1
- build.py+161-54
- cpp/README.md+30
- cpp/cli_main.cc+113-97
- cpp/llm_chat.cc+442-335
- cpp/llm_chat.h+6-4
- ios/MLCChat.xcodeproj/project.pbxproj+5-3
- ios/MLCChat/LLMChat.mm+7-14
- ios/README.md+143-48
- ios/prepare_libs.sh+8-7
- ios/prepare_params.sh+9-5
- log_db/RedPajama-INCITE-Chat-3B-v1/database_tuning_record.json-36
- log_db/redpajama-3b-q4f16/database_tuning_record.json+35
- log_db/redpajama-3b-q4f16/database_workload.json+30-31
- log_db/redpajama-3b-q4f32/database_tuning_record.json+30
- log_db/redpajama-3b-q4f32/database_workload.json+30
- mlc_llm/conversation.py+53-16
- mlc_llm/dispatch/gpt_neox/__init__.py+7-1
- mlc_llm/dispatch/gpt_neox/dolly_v2_3b.py+2-2
- mlc_llm/dispatch/gpt_neox/redpajama_incite_chat_3b_v1.py+972
- mlc_llm/dispatch/gpt_neox/redpajama_incite_chat_3b_v1_mod.py+722
- mlc_llm/dispatch/gpt_neox/redpajama_incite_chat_3b_v1_tune.py+1.0k
- mlc_llm/dispatch/gpt_neox/redpajama_q4f32.py+840
- mlc_llm/dispatch/gpt_neox/redpajama_q4f32_mod.py+577
- mlc_llm/dispatch/gpt_neox/redpajama_q4f32_tune.py+743
- mlc_llm/relax_model/commons.py+23
- mlc_llm/relax_model/gpt_neox.py+60-44
- mlc_llm/relax_model/llama.py+46-22
- mlc_llm/relax_model/modules.py+25-5
- mlc_llm/relax_model/moss.py+103-84
- mlc_llm/transform/decode_matmul_ewise.py+18-8
- mlc_llm/transform/quantization.py+5-1
- mlc_llm/transform/transpose_matmul.py+18-8
- mlc_llm/tuning.py+229-36
- mlc_llm/utils.py+24-30
- tests/chat.py+7-3
- tests/debug/compare_lib.py+5-3
- tests/evaluate.py+3-2
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 |
| - | |
| 26 | + | |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
|
Lines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 |
| - | |
| 18 | + | |
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
| 23 | + | |
24 | 24 |
| |
25 |
| - | |
26 |
| - | |
| 25 | + | |
| 26 | + | |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
|
Lines changed: 20 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
6 |
| - | |
7 |
| - | |
8 |
| - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
9 | 13 |
| |
10 |
| - | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
11 | 17 |
| |
12 | 18 |
| |
13 | 19 |
| |
14 | 20 |
| |
15 | 21 |
| |
16 | 22 |
| |
17 | 23 |
| |
18 |
| - | |
19 |
| - | |
20 |
| - | |
21 |
| - | |
22 |
| - | |
23 | 24 |
| |
24 |
| - | |
| 25 | + | |
25 | 26 |
| |
26 | 27 |
| |
27 | 28 |
| |
28 |
| - | |
| 29 | + | |
29 | 30 |
| |
30 |
| - | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
31 | 39 |
| |
32 | 40 |
| |
33 | 41 |
| |
|
Lines changed: 4 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
| 3 | + | |
| 4 | + | |
4 | 5 |
| |
5 | 6 |
| |
6 |
| - | |
| 7 | + | |
| 8 | + | |
7 | 9 |
| |
8 | 10 |
|
Lines changed: 20 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
6 |
| - | |
7 |
| - | |
8 |
| - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
9 | 13 |
| |
10 |
| - | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
11 | 17 |
| |
12 | 18 |
| |
13 | 19 |
| |
14 | 20 |
| |
15 | 21 |
| |
16 | 22 |
| |
17 | 23 |
| |
18 |
| - | |
19 |
| - | |
20 |
| - | |
21 |
| - | |
22 |
| - | |
23 | 24 |
| |
24 |
| - | |
| 25 | + | |
25 | 26 |
| |
26 | 27 |
| |
27 | 28 |
| |
28 |
| - | |
| 29 | + | |
29 | 30 |
| |
30 |
| - | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
31 | 39 |
| |
32 | 40 |
| |
33 | 41 |
| |
|
0 commit comments