bigdl-core-cpp 2.5.0b20240527__py3-none-win_amd64.whl → 2.5.0b20240528__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. bigdl/cpp/convert-hf-to-gguf.py +1363 -338
  2. bigdl/cpp/convert.py +199 -52
  3. bigdl/cpp/gguf-py/gguf/__init__.py +2 -0
  4. bigdl/cpp/gguf-py/gguf/constants.py +102 -28
  5. bigdl/cpp/gguf-py/gguf/gguf_reader.py +9 -5
  6. bigdl/cpp/gguf-py/gguf/gguf_writer.py +36 -11
  7. bigdl/cpp/gguf-py/gguf/lazy.py +236 -0
  8. bigdl/cpp/gguf-py/gguf/quants.py +123 -0
  9. bigdl/cpp/gguf-py/gguf/tensor_mapping.py +28 -1
  10. bigdl/cpp/gguf-py/gguf/vocab.py +3 -3
  11. bigdl/cpp/libs/baby-llama.exe +0 -0
  12. bigdl/cpp/libs/batched-bench.exe +0 -0
  13. bigdl/cpp/libs/batched.exe +0 -0
  14. bigdl/cpp/libs/beam-search.exe +0 -0
  15. bigdl/cpp/libs/benchmark.exe +0 -0
  16. bigdl/cpp/libs/common.lib +0 -0
  17. bigdl/cpp/libs/convert-llama2c-to-ggml.exe +0 -0
  18. bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu/ollama_llama_server.exe +0 -0
  19. bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu_avx/ollama_llama_server.exe +0 -0
  20. bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu_avx2/ollama_llama_server.exe +0 -0
  21. bigdl/cpp/libs/embedding.exe +0 -0
  22. bigdl/cpp/libs/export-lora.exe +0 -0
  23. bigdl/cpp/libs/finetune.exe +0 -0
  24. bigdl/cpp/libs/ggml_shared.dll +0 -0
  25. bigdl/cpp/libs/gguf.exe +0 -0
  26. bigdl/cpp/libs/gritlm.exe +0 -0
  27. bigdl/cpp/libs/imatrix.exe +0 -0
  28. bigdl/cpp/libs/infill.exe +0 -0
  29. bigdl/cpp/libs/llama-bench.exe +0 -0
  30. bigdl/cpp/libs/llama.dll +0 -0
  31. bigdl/cpp/libs/llava-cli.exe +0 -0
  32. bigdl/cpp/libs/llava_shared.dll +0 -0
  33. bigdl/cpp/libs/lookahead.exe +0 -0
  34. bigdl/cpp/libs/lookup.exe +0 -0
  35. bigdl/cpp/libs/ls-sycl-device.exe +0 -0
  36. bigdl/cpp/libs/main.exe +0 -0
  37. bigdl/cpp/libs/ollama.exe +0 -0
  38. bigdl/cpp/libs/parallel.exe +0 -0
  39. bigdl/cpp/libs/passkey.exe +0 -0
  40. bigdl/cpp/libs/perplexity.exe +0 -0
  41. bigdl/cpp/libs/q8dot.exe +0 -0
  42. bigdl/cpp/libs/quantize-stats.exe +0 -0
  43. bigdl/cpp/libs/quantize.exe +0 -0
  44. bigdl/cpp/libs/save-load-state.exe +0 -0
  45. bigdl/cpp/libs/server.exe +0 -0
  46. bigdl/cpp/libs/simple.exe +0 -0
  47. bigdl/cpp/libs/speculative.exe +0 -0
  48. bigdl/cpp/libs/tokenize.exe +0 -0
  49. bigdl/cpp/libs/train-text-from-scratch.exe +0 -0
  50. bigdl/cpp/libs/vdot.exe +0 -0
  51. {bigdl_core_cpp-2.5.0b20240527.dist-info → bigdl_core_cpp-2.5.0b20240528.dist-info}/METADATA +1 -1
  52. bigdl_core_cpp-2.5.0b20240528.dist-info/RECORD +61 -0
  53. bigdl_core_cpp-2.5.0b20240527.dist-info/RECORD +0 -59
  54. {bigdl_core_cpp-2.5.0b20240527.data → bigdl_core_cpp-2.5.0b20240528.data}/scripts/init-llama-cpp.bat +0 -0
  55. {bigdl_core_cpp-2.5.0b20240527.data → bigdl_core_cpp-2.5.0b20240528.data}/scripts/init-llama-cpp.ps1 +0 -0
  56. {bigdl_core_cpp-2.5.0b20240527.data → bigdl_core_cpp-2.5.0b20240528.data}/scripts/init-ollama.bat +0 -0
  57. {bigdl_core_cpp-2.5.0b20240527.dist-info → bigdl_core_cpp-2.5.0b20240528.dist-info}/WHEEL +0 -0
  58. {bigdl_core_cpp-2.5.0b20240527.dist-info → bigdl_core_cpp-2.5.0b20240528.dist-info}/top_level.txt +0 -0
Binary file
Binary file
Binary file
Binary file
Binary file
bigdl/cpp/libs/gguf.exe CHANGED
Binary file
bigdl/cpp/libs/gritlm.exe CHANGED
Binary file
Binary file
bigdl/cpp/libs/infill.exe CHANGED
Binary file
Binary file
bigdl/cpp/libs/llama.dll CHANGED
Binary file
Binary file
Binary file
Binary file
bigdl/cpp/libs/lookup.exe CHANGED
Binary file
Binary file
bigdl/cpp/libs/main.exe CHANGED
Binary file
bigdl/cpp/libs/ollama.exe CHANGED
Binary file
Binary file
Binary file
Binary file
bigdl/cpp/libs/q8dot.exe CHANGED
Binary file
Binary file
Binary file
Binary file
bigdl/cpp/libs/server.exe CHANGED
Binary file
bigdl/cpp/libs/simple.exe CHANGED
Binary file
Binary file
Binary file
Binary file
bigdl/cpp/libs/vdot.exe CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bigdl-core-cpp
3
- Version: 2.5.0b20240527
3
+ Version: 2.5.0b20240528
4
4
  Summary: Large Language Model Develop Toolkit
5
5
  Author: BigDL Authors
6
6
  License: Apache License, Version 2.0
@@ -0,0 +1,61 @@
1
+ bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ bigdl/cpp/convert-hf-to-gguf.py,sha256=w0fNQ1Ym2kU2mpLE5-QM07-hZxJUh8YBLzd9zrjiBvo,191351
3
+ bigdl/cpp/convert.py,sha256=AAjyH5aqwEFkChWzwUUYTpqOfUnbdx8uNtDka-rP9Vw,71131
4
+ bigdl/cpp/gguf-py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ bigdl/cpp/gguf-py/gguf/__init__.py,sha256=ElxJmWjDws0hVFf-tjFcxQhDDPD2xNqUkf6KpEfsbsQ,179
6
+ bigdl/cpp/gguf-py/gguf/constants.py,sha256=tpxMAsUIYaEXWSXMjLyAnnJGV1aZ1lCis_loHYrmYw0,35394
7
+ bigdl/cpp/gguf-py/gguf/gguf.py,sha256=QpLc-xU055W2d7CEFvJp2gLIfGO63bdM24ZndZCH6rw,493
8
+ bigdl/cpp/gguf-py/gguf/gguf_reader.py,sha256=lMSPWOF9GIb13nhN6Au4PnnNTXe2Lc9l92Sbve5ECs8,12324
9
+ bigdl/cpp/gguf-py/gguf/gguf_writer.py,sha256=4aHWBXXpYiHThDDd7569FuD7AdwxkqnvGmGnTOjPFNU,21499
10
+ bigdl/cpp/gguf-py/gguf/lazy.py,sha256=5VCg0xsteUMdIKY9PLyB6ID4TsapFJreb-y-t7Uk2HA,10024
11
+ bigdl/cpp/gguf-py/gguf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ bigdl/cpp/gguf-py/gguf/quants.py,sha256=KrA_NtxRSfYq9PQVn9qn9X6pIXFJa0E1hziheYNolp0,4477
13
+ bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=2FYGq1gZ3oy9P_Z82L47lxMsokseC5DSKDwtyTNxiZI,23888
14
+ bigdl/cpp/gguf-py/gguf/vocab.py,sha256=0_n5lD3w2skafTJGQOZaP3mo4Wh_CNXJVuoe6FmX8-E,7012
15
+ bigdl/cpp/libs/baby-llama.exe,sha256=CxArTNlfrNXZELkTGgvmgINcUkJRLqCWO8xr0ahEjQw,200192
16
+ bigdl/cpp/libs/batched-bench.exe,sha256=HnPvVSEBRFi-eoIH4_2eEcT-XwSUdz7JZnqiECnz04k,206848
17
+ bigdl/cpp/libs/batched.exe,sha256=PpfUe4CrczAPp8hTEy_fT3ZypBWEhBEcWcb9p27AlMg,208896
18
+ bigdl/cpp/libs/beam-search.exe,sha256=F6ZKdYYNA2xuc17hFjNfNo-ykuh6pHc9PTQaSlIcK30,214528
19
+ bigdl/cpp/libs/benchmark.exe,sha256=v4F8Z-B38uPkrWcvrnC8EvMTdEpPjpn73uPvKMjzs_w,74240
20
+ bigdl/cpp/libs/common.lib,sha256=nbJD0ay3XrgxAEFAbn7pySHly6IbKiUiEi9wwUfD2n8,3330124
21
+ bigdl/cpp/libs/convert-llama2c-to-ggml.exe,sha256=gQ3ntOHo48lnxjgY1Q5sOXODw0ON1pKEa0kmBv2Gty0,126464
22
+ bigdl/cpp/libs/embedding.exe,sha256=5IEfmOtAsjmTYEyHeuFStPpdH_I3dLRdEpLRscI8xvI,644096
23
+ bigdl/cpp/libs/export-lora.exe,sha256=SuwI7ovBbl-dhVrmvqDs3DGiq4Rxqu7va6h0yf982gM,90112
24
+ bigdl/cpp/libs/finetune.exe,sha256=RA-4pXTtI97KygkJ8416iuRBfiiphDCREedPZEoqJhI,302592
25
+ bigdl/cpp/libs/ggml_shared.dll,sha256=djIy9-Dv-2emNY3imgIlqARY93otOO08t9MLE4sX778,4309504
26
+ bigdl/cpp/libs/gguf.exe,sha256=KP4iTUiHZnuqs-oJfWLFubj7euJHdlNnUQHt3wC2Q9w,3846144
27
+ bigdl/cpp/libs/gritlm.exe,sha256=spnIlG2MK7c02e3fxcf-seUYjoK-1PDWZqi3v4Q8d28,638464
28
+ bigdl/cpp/libs/imatrix.exe,sha256=WOj3Af-gVE2kOqQtjJxXVf8rD50PntkuZADEJNJuWLE,676352
29
+ bigdl/cpp/libs/infill.exe,sha256=IRjX-PV-yLTFpnxUNLK1GJHgcMkyLGQojT2eA3olnDY,733184
30
+ bigdl/cpp/libs/llama-bench.exe,sha256=_6hf3nphqW3poBN77k_9HhiiXY-7M20upesBy4v6jEI,336384
31
+ bigdl/cpp/libs/llama.dll,sha256=JyfyDYKK0iN4uYKeSPfVW9aIbFck6vckwQSNmhSPV2Q,5879296
32
+ bigdl/cpp/libs/llava-cli.exe,sha256=AypNBD1JbgKNPA9FXF0oBfJDBVT5_SCtuwzCa5QPcWw,921600
33
+ bigdl/cpp/libs/llava_shared.dll,sha256=K9tDnv3Blb8Rf6uluVLLdzHKQsYHOvnqmXjUtryegnI,4577280
34
+ bigdl/cpp/libs/lookahead.exe,sha256=dUE109kV5kNqDeWFm8jLJ-spWc6oI_yZwrUKZVyQ-gU,684032
35
+ bigdl/cpp/libs/lookup.exe,sha256=Hsn0RUjjTe2Qahg2-nyLWixFNHJnsaLWn4mfvvMbaPo,718336
36
+ bigdl/cpp/libs/ls-sycl-device.exe,sha256=WgoobT9X0uNyCUYdMRL0-Sh53bO8b6B536_ZS3vo1Jg,10240
37
+ bigdl/cpp/libs/main.exe,sha256=FVj-nGosisYnpfW8gdQp2CEGcdZZu2J0VSptK1Z55_I,764416
38
+ bigdl/cpp/libs/ollama.exe,sha256=18wCJcVzIXsAJCzX0n9nM13557ZRNuMM8_rdZv-Pz7c,64162978
39
+ bigdl/cpp/libs/parallel.exe,sha256=8SmMCVdXeiVZlYU9N9W5PqECtz5wbmqetJ4C7umyGdA,701440
40
+ bigdl/cpp/libs/passkey.exe,sha256=_OHOa2Dg39Lj2nu1FDbDqqJFE86Ntv1kefvyPWniprI,216064
41
+ bigdl/cpp/libs/perplexity.exe,sha256=oGwZHxqbhw27auCRvCVBiv5Sd_hE9oZEd5ZbOtMu82A,782336
42
+ bigdl/cpp/libs/q8dot.exe,sha256=hMeq3g80vsfMjWj-8vyXzZO8kVc9WsPSTRpZVsKVLEA,53760
43
+ bigdl/cpp/libs/quantize-stats.exe,sha256=RrM2ekpqJNqY7WYHFgbnLhNq_K0YeHiut85A9-TU7e0,130048
44
+ bigdl/cpp/libs/quantize.exe,sha256=OmCx4Ez523Sss_sojRX0vwgtNpRH7mz2ouVBj28Zeac,235520
45
+ bigdl/cpp/libs/save-load-state.exe,sha256=TjuwQV5YPITPQ82X3vjvaIPQ8zlb8OggG7UcVMYlAsg,636416
46
+ bigdl/cpp/libs/server.exe,sha256=DX85qkxyhl--mK4cXSrEQL3ClBtqNGQOzt6CwKEYRoU,1731584
47
+ bigdl/cpp/libs/simple.exe,sha256=P-StwGNsKcTJ0LbhV_KFK4hXyoWdBIk3htvuo9o_ogc,202752
48
+ bigdl/cpp/libs/speculative.exe,sha256=T17rcAAfv6QGZAranR3tioIfxIrwWfAmR3Jx2EQ9WIw,709632
49
+ bigdl/cpp/libs/tokenize.exe,sha256=qDU495I4ar0dfY0ReOhZCeriW-lmkjoBKjIhrQy_gsU,203264
50
+ bigdl/cpp/libs/train-text-from-scratch.exe,sha256=fj3Ywg2GaX6_PyORYEEeoZEpB-tknoYY59y8aB5L1Bo,283648
51
+ bigdl/cpp/libs/vdot.exe,sha256=lpmW1Y7W0UdBXXyGv7YgOfzfx-h7nvVER8mrx5YXeT8,56320
52
+ bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu/ollama_llama_server.exe,sha256=9cCfa-9gPZkUQH4WBip5h0QNb1D6pUSp2jfHMWDBQbg,6575104
53
+ bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu_avx/ollama_llama_server.exe,sha256=ATUMlNyiNLJQdqRXSqGFsfoJu82WmJDxsUt5z5HeRcE,6575104
54
+ bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu_avx2/ollama_llama_server.exe,sha256=uYToXxFL09w1Q6_L1H9Imu7j4RprXgoerQEl5HhHpc0,6575104
55
+ bigdl_core_cpp-2.5.0b20240528.data/scripts/init-llama-cpp.bat,sha256=13AgSYRyzk6hlSz11dPyCMJeSoW9z8PZ9l85E_5GWxs,528
56
+ bigdl_core_cpp-2.5.0b20240528.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
57
+ bigdl_core_cpp-2.5.0b20240528.data/scripts/init-ollama.bat,sha256=I2em4AnSSMq7LX3IRI3QR9w3UY2y2Y8zXQkpL09-G7w,472
58
+ bigdl_core_cpp-2.5.0b20240528.dist-info/METADATA,sha256=uzuW-sIl4bLQKbNOq42i22K7b85RFhvtFQHfatN5ejE,668
59
+ bigdl_core_cpp-2.5.0b20240528.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
60
+ bigdl_core_cpp-2.5.0b20240528.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
61
+ bigdl_core_cpp-2.5.0b20240528.dist-info/RECORD,,
@@ -1,59 +0,0 @@
1
- bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- bigdl/cpp/convert-hf-to-gguf.py,sha256=67U2K3ix3i1lps7L57-qiTVu5-VvJQbAXcan4aU0KT4,146672
3
- bigdl/cpp/convert.py,sha256=OPDsmbVairx1s6ftM-G8MhUpPpEwvF48yS8HhOB7_j4,65023
4
- bigdl/cpp/gguf-py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- bigdl/cpp/gguf-py/gguf/__init__.py,sha256=2eyRnO5rS0WNuzL_N159IRA66ybYkisoSETMSM-tGBQ,135
6
- bigdl/cpp/gguf-py/gguf/constants.py,sha256=ovAbNrRVlAchqxDpHU3Cey24Kcq6pEmFTmOu_ZZ71ng,32165
7
- bigdl/cpp/gguf-py/gguf/gguf.py,sha256=QpLc-xU055W2d7CEFvJp2gLIfGO63bdM24ZndZCH6rw,493
8
- bigdl/cpp/gguf-py/gguf/gguf_reader.py,sha256=e-yzOSzsKjOfaCzXQ8QsJjBIypdqFdI5NO9tCS3VUZk,12081
9
- bigdl/cpp/gguf-py/gguf/gguf_writer.py,sha256=TM3UeO9d7Y3_uB3GikB4iqZt0uJw7OydijnUEoiFYAA,20496
10
- bigdl/cpp/gguf-py/gguf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=CxeOv5ncOICvskNibM1AFs24QUI6N3n_trU0Dvy8wu8,22290
12
- bigdl/cpp/gguf-py/gguf/vocab.py,sha256=YiWxOW4ta0R3OI2CWeF3o7RIvJA6O0jQ9fxHnartxvU,6955
13
- bigdl/cpp/libs/baby-llama.exe,sha256=dSLilX0EccEDePCe4MSG09SmAIhnvwn7cO8_-bcmO5w,199680
14
- bigdl/cpp/libs/batched-bench.exe,sha256=i_TUaK7CU-w7g4CQBJc8yRadojs59RJVMj0yC338HuY,206336
15
- bigdl/cpp/libs/batched.exe,sha256=96ZH_arDEJXcWOqhcBPtBP0Wqcly57NnbVfKYOLFDq8,208896
16
- bigdl/cpp/libs/beam-search.exe,sha256=s-Sq7oWDm4BdZOJ7y70F1Ki5sFjPRmkqazU9wsYeyVo,214016
17
- bigdl/cpp/libs/benchmark.exe,sha256=VHr2rPUZT1IU11RNfxJAHoHlpreeLGe3AbNI_ctE55o,74240
18
- bigdl/cpp/libs/common.lib,sha256=rs-x2mONYEPpu8Sc-OPKfatdnCyNUCVZrozjgGGMPpg,3215104
19
- bigdl/cpp/libs/convert-llama2c-to-ggml.exe,sha256=v1x6Dr1_63ZCKDh3p0Svd_h8d7e8hVPGZYAzQQhQ7Lc,126464
20
- bigdl/cpp/libs/embedding.exe,sha256=b1I5A_n0WFoDO7wFAqIZAyJ3j2nHaHTlOPnR1UlSgg4,629248
21
- bigdl/cpp/libs/export-lora.exe,sha256=Ag5OCmfpNKS5EX_N79tUAGo4OxsvPriqChpE-ZWYcoA,90112
22
- bigdl/cpp/libs/finetune.exe,sha256=Ph0trCm_jg9eDeH-mHQgHI39ZRGs1qtKHWyRmLbVv_Y,302592
23
- bigdl/cpp/libs/ggml_shared.dll,sha256=XpvxE_PIk3npafbl54X2QJfXDTWvbqxL-cai7yK7Npc,4301824
24
- bigdl/cpp/libs/gguf.exe,sha256=X5JlWT73zB0HS4RGOgnPUxfl0NYGaLUdJXDOvxm1mfA,3839488
25
- bigdl/cpp/libs/gritlm.exe,sha256=ZbBAS1fat5KIeLFcmPa2QzBqtQEx2fAHFihFNL1FNOs,623616
26
- bigdl/cpp/libs/imatrix.exe,sha256=nQLSiB0XxNX-neVEiV2-umhgxAEFjMlYvY0o939F0XE,661504
27
- bigdl/cpp/libs/infill.exe,sha256=JTjiGEJD1s_Y3efX6UaQxu7YJmOH0_PUzY5Mm20A4JI,728064
28
- bigdl/cpp/libs/llama-bench.exe,sha256=jJ6QPzWt3sKH-HYSqo2E7Ny1vtxWIqAj6N7uGUPczII,331264
29
- bigdl/cpp/libs/llama.dll,sha256=JuTVeeRoCIrUeDpNYdffES8vTHCE-RRIpilO3znlH4Y,5794816
30
- bigdl/cpp/libs/llava-cli.exe,sha256=u15zIpuGdi2LgMUqHhI-cvF5tfibixNIQuo2u8myEUM,909824
31
- bigdl/cpp/libs/llava_shared.dll,sha256=sKOdFK4UV6R1ofGVBJ61MTRdUJM2FOQw1BMppS8LS5U,4571136
32
- bigdl/cpp/libs/lookahead.exe,sha256=0S9gGqZqsGbRndHAAC92SRmc1T8NazbcrJGKT4OjqbU,669696
33
- bigdl/cpp/libs/lookup.exe,sha256=JMlsebQ4eRU8OHQ6P6Eg81KGIuFp7H4Cetcs_MogwNA,703488
34
- bigdl/cpp/libs/ls-sycl-device.exe,sha256=v-lkdI_wzoAbLtV5N7hf5YqWRC9vs5vz74C74Va210w,10240
35
- bigdl/cpp/libs/main.exe,sha256=wAp4NDrVBsI6_SRLEDhPK3i72fcKL6FCHAip5Vppvy8,759296
36
- bigdl/cpp/libs/ollama.exe,sha256=RuSetjsbWFnKHf2An8B27SS66ELS7UBs9wmrw9298f8,63379180
37
- bigdl/cpp/libs/parallel.exe,sha256=eQqlSedH8wbx6WFKJLut0p8aiQ1IUbH8Pw_6vG-8N24,686592
38
- bigdl/cpp/libs/passkey.exe,sha256=MOStxS9LRBxeYYuxoHS9MrrvWjgWR-IMyS9lGNdLjuQ,216064
39
- bigdl/cpp/libs/perplexity.exe,sha256=57ZN5rQSps2HyX0BTLz4KFc0IF61REKKjZ5CSyLIbYk,775168
40
- bigdl/cpp/libs/q8dot.exe,sha256=KsPJjlC2AjOOVfGU8LQtksj-B-7AhFm1smA6CguDxBg,53760
41
- bigdl/cpp/libs/quantize-stats.exe,sha256=42NBKFn-iv-UbkLJ6bcngXkVd8wldRw-caWSZe9ldzg,130048
42
- bigdl/cpp/libs/quantize.exe,sha256=DkkoA9nP-gwBjczQOTMNi_7auev-Sbk4w7neTKoLqVo,235008
43
- bigdl/cpp/libs/save-load-state.exe,sha256=yrg0Xo94SawizVDC_Lol8ule_nhIdfRc_IzDbM7gOcE,622080
44
- bigdl/cpp/libs/server.exe,sha256=TuP4tis15MPBtGnP5UkQ4hIuCk7AYcki4EcP89ObSp0,1679360
45
- bigdl/cpp/libs/simple.exe,sha256=fLDCj-lTn26tB2NW1GwgUSbkGbOnMttKSAzhU0ya7mA,202240
46
- bigdl/cpp/libs/speculative.exe,sha256=uN6z1ZMS-dJNE6JYe81H93_dQWP2PCMQMVU8C8cWhak,695808
47
- bigdl/cpp/libs/tokenize.exe,sha256=fOgvh41RevLCZJaGSHwVCHRtRTC0w8kgAEdzrFK3QFY,181760
48
- bigdl/cpp/libs/train-text-from-scratch.exe,sha256=JwYFZPwjAEooYLI4X3hIz4rLi7CinRWOvIFAukQo0Mc,283136
49
- bigdl/cpp/libs/vdot.exe,sha256=3SCRm2ldT_GLiT5Lb15QzaC7MwKxwg-Dxojqx9nXLm4,56320
50
- bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu/ollama_llama_server.exe,sha256=kiJQ1H1wNeY-8wVncekR9n594QY6BKRFJB33DxoItnA,6494208
51
- bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu_avx/ollama_llama_server.exe,sha256=fKjnByH-KRS9EihkmJ5sFjaB1SM-r5XiVmiepjNwCsE,6494208
52
- bigdl/cpp/libs/dist/windows-amd64/ollama_runners/cpu_avx2/ollama_llama_server.exe,sha256=b4BuYEOStXSlmMeHR8fC2ZBBsFXxnfE2iu9wsqYX2vY,6494208
53
- bigdl_core_cpp-2.5.0b20240527.data/scripts/init-llama-cpp.bat,sha256=13AgSYRyzk6hlSz11dPyCMJeSoW9z8PZ9l85E_5GWxs,528
54
- bigdl_core_cpp-2.5.0b20240527.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
55
- bigdl_core_cpp-2.5.0b20240527.data/scripts/init-ollama.bat,sha256=I2em4AnSSMq7LX3IRI3QR9w3UY2y2Y8zXQkpL09-G7w,472
56
- bigdl_core_cpp-2.5.0b20240527.dist-info/METADATA,sha256=Pwe4h9eb0jUQo-cU5jAADDKX1Hv-O6Josf4BC5pzKUQ,668
57
- bigdl_core_cpp-2.5.0b20240527.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
58
- bigdl_core_cpp-2.5.0b20240527.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
59
- bigdl_core_cpp-2.5.0b20240527.dist-info/RECORD,,