bigdl-core-cpp 2.6.0b20240908__py3-none-win_amd64.whl → 2.6.0b20240909.post0__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 (40) hide show
  1. bigdl/cpp/libs/common.lib +0 -0
  2. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ggml.dll +0 -0
  3. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/llama.dll +0 -0
  4. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ollama_llama_server.exe +0 -0
  5. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ggml.dll +0 -0
  6. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/llama.dll +0 -0
  7. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ollama_llama_server.exe +0 -0
  8. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ggml.dll +0 -0
  9. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/llama.dll +0 -0
  10. bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ollama_llama_server.exe +0 -0
  11. bigdl/cpp/libs/ggml.dll +0 -0
  12. bigdl/cpp/libs/llama-batched.exe +0 -0
  13. bigdl/cpp/libs/llama-bench.exe +0 -0
  14. bigdl/cpp/libs/llama-cli.exe +0 -0
  15. bigdl/cpp/libs/llama-embedding.exe +0 -0
  16. bigdl/cpp/libs/llama-gguf.exe +0 -0
  17. bigdl/cpp/libs/llama-llava-cli.exe +0 -0
  18. bigdl/cpp/libs/llama-lookup.exe +0 -0
  19. bigdl/cpp/libs/llama-ls-sycl-device.exe +0 -0
  20. bigdl/cpp/libs/llama-minicpmv-cli.exe +0 -0
  21. bigdl/cpp/libs/llama-perplexity.exe +0 -0
  22. bigdl/cpp/libs/llama-quantize.exe +0 -0
  23. bigdl/cpp/libs/llama-server.exe +0 -0
  24. bigdl/cpp/libs/llama-simple.exe +0 -0
  25. bigdl/cpp/libs/llama-speculative.exe +0 -0
  26. bigdl/cpp/libs/llama-tokenize.exe +0 -0
  27. bigdl/cpp/libs/llama.dll +0 -0
  28. bigdl/cpp/libs/llava_shared.dll +0 -0
  29. bigdl/cpp/libs/ollama.exe +0 -0
  30. bigdl_core_cpp-2.6.0b20240909.post0.data/scripts/init-llama-cpp.bat +24 -0
  31. bigdl_core_cpp-2.6.0b20240909.post0.data/scripts/init-llama-cpp.ps1 +13 -0
  32. bigdl_core_cpp-2.6.0b20240909.post0.data/scripts/init-ollama.bat +19 -0
  33. {bigdl_core_cpp-2.6.0b20240908.dist-info → bigdl_core_cpp-2.6.0b20240909.post0.dist-info}/METADATA +8 -8
  34. bigdl_core_cpp-2.6.0b20240909.post0.dist-info/RECORD +57 -0
  35. bigdl_core_cpp-2.6.0b20240908.dist-info/RECORD +0 -54
  36. {bigdl_core_cpp-2.6.0b20240908.data/scripts → bigdl/cpp/cli}/init-llama-cpp.bat +0 -0
  37. {bigdl_core_cpp-2.6.0b20240908.data/scripts → bigdl/cpp/cli}/init-llama-cpp.ps1 +0 -0
  38. {bigdl_core_cpp-2.6.0b20240908.data/scripts → bigdl/cpp/cli}/init-ollama.bat +0 -0
  39. {bigdl_core_cpp-2.6.0b20240908.dist-info → bigdl_core_cpp-2.6.0b20240909.post0.dist-info}/WHEEL +0 -0
  40. {bigdl_core_cpp-2.6.0b20240908.dist-info → bigdl_core_cpp-2.6.0b20240909.post0.dist-info}/top_level.txt +0 -0
bigdl/cpp/libs/common.lib CHANGED
Binary file
bigdl/cpp/libs/ggml.dll CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
bigdl/cpp/libs/llama.dll CHANGED
Binary file
Binary file
bigdl/cpp/libs/ollama.exe CHANGED
Binary file
@@ -0,0 +1,24 @@
1
+ @echo off
2
+ for /f "delims=" %%i in ('python -c "import bigdl.cpp; print(bigdl.cpp.__file__)"') do set "cpp_file=%%i"
3
+ for %%a in ("%cpp_file%") do set "cpp_dir=%%~dpa"
4
+
5
+ set "cpp_dir=%cpp_dir:~0,-1%"
6
+ set "lib_dir=%cpp_dir%\libs"
7
+ set "destination_folder=%cd%"
8
+
9
+ pushd "%lib_dir%"
10
+ for %%f in (*) do (
11
+ if not "%%f"=="ollama.exe" (
12
+ if exist "%destination_folder%\%%~nxf" (
13
+ del /f "%destination_folder%\%%~nxf"
14
+ )
15
+ mklink "%destination_folder%\%%~nxf" "%%~ff"
16
+ )
17
+ )
18
+ popd
19
+
20
+ copy "%cpp_dir%\convert_hf_to_gguf.py" .
21
+ copy "%cpp_dir%\convert_hf_to_gguf_update.py" .
22
+ copy "%cpp_dir%\convert_llama_ggml_to_gguf.py" .
23
+ copy "%cpp_dir%\convert_lora_to_gguf.py" .
24
+ xcopy /E /I "%cpp_dir%\gguf-py\" .\gguf-py
@@ -0,0 +1,13 @@
1
+ $cpp_dir = (Split-Path -Parent (python -c "import bigdl.cpp;print(bigdl.cpp.__file__)"))
2
+ $lib_dir = Join-Path $cpp_dir "libs"
3
+ $destinationFolder = Get-Location
4
+
5
+ $files = Get-ChildItem -Path $lib_dir -File
6
+
7
+ foreach ($file in $files){
8
+ $linkPath = Join-Path -Path $destinationFolder -ChildPath $file.Name
9
+ New-Item -ItemType SymbolicLink -Path $linkPath -Target $file.FullName
10
+ }
11
+
12
+ $convert_path = Join-Path $cpp_dir "convert.py"
13
+ Copy-Item $convert_path -Destination $destinationFolder
@@ -0,0 +1,19 @@
1
+ @echo off
2
+ for /f "delims=" %%i in ('python -c "import bigdl.cpp; print(bigdl.cpp.__file__)"') do set "cpp_file=%%i"
3
+ for %%a in ("%cpp_file%") do set "cpp_dir=%%~dpa"
4
+
5
+ set "cpp_dir=%cpp_dir:~0,-1%"
6
+ set "lib_dir=%cpp_dir%\libs"
7
+ set "source_path=%lib_dir%\ollama.exe"
8
+ set "target_path=%cd%\ollama.exe"
9
+ set "source_dist_dir=%lib_dir%\dist"
10
+ set "target_dist_dir=%cd%\dist"
11
+
12
+ if exist "%target_path%" (
13
+ del /f "%target_path%"
14
+ )
15
+ mklink "%target_path%" "%source_path%"
16
+ if exist "%target_dist_dir%" (
17
+ rmdir /s /q "%target_dist_dir%"
18
+ )
19
+ mklink /D "%target_dist_dir%" "%source_dist_dir%"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bigdl-core-cpp
3
- Version: 2.6.0b20240908
3
+ Version: 2.6.0b20240909.post0
4
4
  Summary: Large Language Model Develop Toolkit
5
5
  Author: BigDL Authors
6
6
  License: Apache License, Version 2.0
@@ -8,11 +8,11 @@ Classifier: License :: OSI Approved :: Apache Software License
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.9
10
10
  Classifier: Programming Language :: Python :: Implementation :: CPython
11
- Requires-Dist: torch==2.2.0
12
- Requires-Dist: numpy==1.26.4
13
- Requires-Dist: transformers==4.44.2
14
- Requires-Dist: sentencepiece~=0.1.98
15
- Requires-Dist: accelerate==0.33.0
16
- Requires-Dist: protobuf<5.0.0,>=4.21.0
17
- Requires-Dist: gguf>=0.1.0
11
+ Requires-Dist: torch ==2.2.0
12
+ Requires-Dist: numpy ==1.26.4
13
+ Requires-Dist: transformers ==4.44.2
14
+ Requires-Dist: sentencepiece ~=0.1.98
15
+ Requires-Dist: accelerate ==0.33.0
16
+ Requires-Dist: protobuf <5.0.0,>=4.21.0
17
+ Requires-Dist: gguf >=0.1.0
18
18
 
@@ -0,0 +1,57 @@
1
+ bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ bigdl/cpp/convert_hf_to_gguf.py,sha256=5DxO33LLwJX4aYpWMwTTTvnZd2JinTWatBwnW54A8iQ,189773
3
+ bigdl/cpp/convert_hf_to_gguf_update.py,sha256=pKKPaDe8Dhsvcu_ofSPVEgZ6Ojgk8P9bmDIFi1Hm7lo,15503
4
+ bigdl/cpp/convert_llama_ggml_to_gguf.py,sha256=VyHM3jMYwzM5uQByh-W2DKHEXiwQDk8RBonpdbBL5l8,19734
5
+ bigdl/cpp/convert_lora_to_gguf.py,sha256=bc-D5-lINVo6SXrt-Lws8wdWeIfwcdA7GBptP3MttcM,14775
6
+ bigdl/cpp/cli/init-llama-cpp.bat,sha256=U0h6RifZxL3GGJp-0dxdZapQIvXUATSj644CURJL-lg,751
7
+ bigdl/cpp/cli/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
8
+ bigdl/cpp/cli/init-ollama.bat,sha256=2rScaP2-_yWuAnc86NyX-i6pg7BxjvLc96Kt7HuvQVM,603
9
+ bigdl/cpp/gguf-py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ bigdl/cpp/gguf-py/gguf/__init__.py,sha256=h5GWs6SMXYR8giWZ7MTZzAc3hYsIJF-HAkdxtgXLOPo,228
11
+ bigdl/cpp/gguf-py/gguf/constants.py,sha256=J1dMukNMfNKF_yEbjvOSQpYODfifY05TwdiTQqHw27E,50556
12
+ bigdl/cpp/gguf-py/gguf/gguf.py,sha256=V5jY968TEJn6GJHVdjzH0_aIkZ1QC967vPdHDKDoxZw,491
13
+ bigdl/cpp/gguf-py/gguf/gguf_reader.py,sha256=N3LnQQ30t-S0U85-EvZZzIBfHzo0XuyFVUltdg7Sj3c,12680
14
+ bigdl/cpp/gguf-py/gguf/gguf_writer.py,sha256=VZneSoXRxmxCFP55CMIqBws4XgboeC8sJeGNoMHy6Uc,35976
15
+ bigdl/cpp/gguf-py/gguf/lazy.py,sha256=kckbqp8tj7NMkDNwePxwI_1WxK6qH5pMk9p7Lu8cj6A,8816
16
+ bigdl/cpp/gguf-py/gguf/metadata.py,sha256=wtquhynkyH8R7m3zxgeSUe2bnaekJi6HoCMiYJfJBmk,26232
17
+ bigdl/cpp/gguf-py/gguf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ bigdl/cpp/gguf-py/gguf/quants.py,sha256=8broI4A53_Zbd8nQ-a6Qcw2TY4T8XgqHhHFq-J6E9eY,58524
19
+ bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=V2UiBqnPVfFeOK_sg9JY6mXqOLBhCsHGJy7kPHn5jMQ,31548
20
+ bigdl/cpp/gguf-py/gguf/utility.py,sha256=LAwLstUlosYQ1oX9LlJZ-1uCmwyNtOFcJfXpkLnju0k,3003
21
+ bigdl/cpp/gguf-py/gguf/vocab.py,sha256=FtNcm8M5aX9RIr6rRR6UXsUlKMagRUC2xnIWb-xu6rI,19511
22
+ bigdl/cpp/libs/common.lib,sha256=tV5AVRWPMLXYteXJNAPMAKcJbvlx_C7qoILmYeaJzCA,4057602
23
+ bigdl/cpp/libs/ggml.dll,sha256=p_HkZYWBMB7ZSNemZnJplSoJAKpSPvfSxkqQZSvw4Fs,5221888
24
+ bigdl/cpp/libs/llama-batched.exe,sha256=FLJpCX-0UJ4yzCud2edFfO4yII92lzG4iPNEGx6st4U,770560
25
+ bigdl/cpp/libs/llama-bench.exe,sha256=medeonfW7-Sp8s9adq97oBWkZ7tOkYNR9ADkZROje_Q,336896
26
+ bigdl/cpp/libs/llama-cli.exe,sha256=h7_D1EBI0k8mgG6qG7gGnXqiZaq7O63B_yrt_ZZwBBg,906240
27
+ bigdl/cpp/libs/llama-embedding.exe,sha256=rNX7A7Us3PPCmuR8MXOyhrQlh4_PumpqGa8eViiGClI,785408
28
+ bigdl/cpp/libs/llama-gguf.exe,sha256=z2UeuneXjT5iNmOVtYCXk4bDubFASjI_6Bw7fr2kTn4,66560
29
+ bigdl/cpp/libs/llama-llava-cli.exe,sha256=_6_Anz8ufWi6w0VD85NrGBB_ex6Ce7NsHSjR5TAvs_g,1090048
30
+ bigdl/cpp/libs/llama-lookup.exe,sha256=6z-10xr91paSA_osPrmpxf3uypcFxvDjqlvftO681z8,851968
31
+ bigdl/cpp/libs/llama-ls-sycl-device.exe,sha256=JpGzkpqOuwqSKJ-11xvRaANvh9_FI1lG3bezeXfEmwY,10240
32
+ bigdl/cpp/libs/llama-minicpmv-cli.exe,sha256=u1xlWjLi5Bq6MiZUTdkTkBKujHqT5ZJtyycj8Q5ZYYY,1081856
33
+ bigdl/cpp/libs/llama-perplexity.exe,sha256=NK3HrZ7pvddnm_eN2iksGIOAEGpY21pWBCb_FV3lm6c,915456
34
+ bigdl/cpp/libs/llama-quantize.exe,sha256=m3KgLpiiMdQ3m7xlgo9sPBo1c60ULXKTowzxBZzwbEY,227840
35
+ bigdl/cpp/libs/llama-server.exe,sha256=zi13HxR2O_BV4u7vgkofIi7r69w-wp1b_8MmrsHbvIo,2143744
36
+ bigdl/cpp/libs/llama-simple.exe,sha256=IGqcSHWsCRdrAonGgU3VY7kUQAMGGKdu0seoJ9ZIOXQ,763392
37
+ bigdl/cpp/libs/llama-speculative.exe,sha256=fWhe_5p6nMyueIhaZdMx-wZq2crpxmQD7vuGa3OOUXg,849920
38
+ bigdl/cpp/libs/llama-tokenize.exe,sha256=paHeYUzd4yY9etv-6sES8YPXIJA2XWC3STjy8NPgUbY,200704
39
+ bigdl/cpp/libs/llama.dll,sha256=W9lIPd4Rv48zJrheU5FO7xxYCwmqapbBCBxzviqv2i4,2204672
40
+ bigdl/cpp/libs/llava_shared.dll,sha256=SYqUyjSoTKHc_ICJhljz-Op1j-ezp9IxrfWBku-PrGA,403968
41
+ bigdl/cpp/libs/ollama.exe,sha256=ng4bHXqxZ9rxatMEwZxYjwwVf2LaSOscgh2YKELFM-E,65485874
42
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ggml.dll,sha256=vmwiW5L1hj8OBNMXP8H6HFhQtc6PAnAjJ0aW0l0vI60,5179904
43
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/llama.dll,sha256=OO4vvotn2RpUz9cVQ94MqmF2Opexf9j_PyoVZBxRPXk,2205696
44
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ollama_llama_server.exe,sha256=P6SSMoCxIlk6x9WN9gARO5BiZ-2Z_Qmyv5esDvrAheg,1375744
45
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ggml.dll,sha256=nGF5OgtFHPetDXBQOjg1RaXxFmypJMweCxc00tvZ0sY,5179904
46
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/llama.dll,sha256=tw5GeXdNlMfhjPxyKFEZ_YNKBs-esB7EVz2NzyG3hAY,2205696
47
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ollama_llama_server.exe,sha256=WyhE5taM2ZNJesh9cnfggV-IsHDHBi8qKljfxwEGq-Y,1375744
48
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ggml.dll,sha256=mJrT4Vg7CUDbtGNtkJnDk6bsbUxfGnOXW3m1gzk6UjM,5179904
49
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/llama.dll,sha256=BbS-x9bLyHu1DhXzKsO6Q5kVKUzEsgPIvzlZZDVuAFg,2205696
50
+ bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ollama_llama_server.exe,sha256=9bQh9sRmVu4R1orTCQU2DyOK4nkSay13Xr2shCMWzgg,1375744
51
+ bigdl_core_cpp-2.6.0b20240909.post0.data/scripts/init-llama-cpp.bat,sha256=U0h6RifZxL3GGJp-0dxdZapQIvXUATSj644CURJL-lg,751
52
+ bigdl_core_cpp-2.6.0b20240909.post0.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
53
+ bigdl_core_cpp-2.6.0b20240909.post0.data/scripts/init-ollama.bat,sha256=2rScaP2-_yWuAnc86NyX-i6pg7BxjvLc96Kt7HuvQVM,603
54
+ bigdl_core_cpp-2.6.0b20240909.post0.dist-info/METADATA,sha256=gC3CR-j2jDNsDzDK6Fvv8XVxjlYlOSiFLMnGYfeG1w0,667
55
+ bigdl_core_cpp-2.6.0b20240909.post0.dist-info/WHEEL,sha256=87BRyezC8KnrcMI_z4tCzFYC3DxpD7TAVunwk556SAc,97
56
+ bigdl_core_cpp-2.6.0b20240909.post0.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
57
+ bigdl_core_cpp-2.6.0b20240909.post0.dist-info/RECORD,,
@@ -1,54 +0,0 @@
1
- bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- bigdl/cpp/convert_hf_to_gguf.py,sha256=5DxO33LLwJX4aYpWMwTTTvnZd2JinTWatBwnW54A8iQ,189773
3
- bigdl/cpp/convert_hf_to_gguf_update.py,sha256=pKKPaDe8Dhsvcu_ofSPVEgZ6Ojgk8P9bmDIFi1Hm7lo,15503
4
- bigdl/cpp/convert_llama_ggml_to_gguf.py,sha256=VyHM3jMYwzM5uQByh-W2DKHEXiwQDk8RBonpdbBL5l8,19734
5
- bigdl/cpp/convert_lora_to_gguf.py,sha256=bc-D5-lINVo6SXrt-Lws8wdWeIfwcdA7GBptP3MttcM,14775
6
- bigdl/cpp/gguf-py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- bigdl/cpp/gguf-py/gguf/__init__.py,sha256=h5GWs6SMXYR8giWZ7MTZzAc3hYsIJF-HAkdxtgXLOPo,228
8
- bigdl/cpp/gguf-py/gguf/constants.py,sha256=J1dMukNMfNKF_yEbjvOSQpYODfifY05TwdiTQqHw27E,50556
9
- bigdl/cpp/gguf-py/gguf/gguf.py,sha256=V5jY968TEJn6GJHVdjzH0_aIkZ1QC967vPdHDKDoxZw,491
10
- bigdl/cpp/gguf-py/gguf/gguf_reader.py,sha256=N3LnQQ30t-S0U85-EvZZzIBfHzo0XuyFVUltdg7Sj3c,12680
11
- bigdl/cpp/gguf-py/gguf/gguf_writer.py,sha256=VZneSoXRxmxCFP55CMIqBws4XgboeC8sJeGNoMHy6Uc,35976
12
- bigdl/cpp/gguf-py/gguf/lazy.py,sha256=kckbqp8tj7NMkDNwePxwI_1WxK6qH5pMk9p7Lu8cj6A,8816
13
- bigdl/cpp/gguf-py/gguf/metadata.py,sha256=wtquhynkyH8R7m3zxgeSUe2bnaekJi6HoCMiYJfJBmk,26232
14
- bigdl/cpp/gguf-py/gguf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- bigdl/cpp/gguf-py/gguf/quants.py,sha256=8broI4A53_Zbd8nQ-a6Qcw2TY4T8XgqHhHFq-J6E9eY,58524
16
- bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=V2UiBqnPVfFeOK_sg9JY6mXqOLBhCsHGJy7kPHn5jMQ,31548
17
- bigdl/cpp/gguf-py/gguf/utility.py,sha256=LAwLstUlosYQ1oX9LlJZ-1uCmwyNtOFcJfXpkLnju0k,3003
18
- bigdl/cpp/gguf-py/gguf/vocab.py,sha256=FtNcm8M5aX9RIr6rRR6UXsUlKMagRUC2xnIWb-xu6rI,19511
19
- bigdl/cpp/libs/common.lib,sha256=oWwRMaq4QYET32nC2HxN_SOR7Tx_EldB7ITSDe-RWyM,4097652
20
- bigdl/cpp/libs/ggml.dll,sha256=VzuheQfL2hhXOSIRNTfMVbOnhpIIvdqwrjt64j6Ew6I,6389760
21
- bigdl/cpp/libs/llama-batched.exe,sha256=z3R9f6dBYDA4CB1LdgeJVQTlAgmAUv5LrnR93uk-U9M,778240
22
- bigdl/cpp/libs/llama-bench.exe,sha256=IzlGQdrr5P0Do4kSYlQHgfDri6ZXwyxb2CA23VxI2wg,311808
23
- bigdl/cpp/libs/llama-cli.exe,sha256=VRXLOPvmKcLGpgjvTRjAVusR_IrMGQe8R5Pjg6aivNg,915456
24
- bigdl/cpp/libs/llama-embedding.exe,sha256=Rm4YAuDdfYsjtFS_8ofe2tEKoD1MLBz29NO5I-7zxu4,793600
25
- bigdl/cpp/libs/llama-gguf.exe,sha256=btDsYm3oJi7a6OnAHoxPoVSmTE5k-n4Y69IETyOIt4I,64512
26
- bigdl/cpp/libs/llama-llava-cli.exe,sha256=pk1othcoFC_z1OVuPBo8pds4OScNXpkgboRBYmjXIx0,1106944
27
- bigdl/cpp/libs/llama-lookup.exe,sha256=CAAG4mIuO2KgcC5oek453JRZIKz1Bxh3zlxc9ukVWj4,860672
28
- bigdl/cpp/libs/llama-ls-sycl-device.exe,sha256=rT_lGZiSN_sRz2apD1DCDzoqRmmDh8uC1h4CnsB6Xww,10240
29
- bigdl/cpp/libs/llama-minicpmv-cli.exe,sha256=-r1JYAShaZTwIX2Cmo9a6h33eljkSur8fdNAA8hOgkg,1099264
30
- bigdl/cpp/libs/llama-perplexity.exe,sha256=S80M94rG5cLV4VfmT--OOt6vXTqptugTrrpl5MVBtQQ,921600
31
- bigdl/cpp/libs/llama-quantize.exe,sha256=5F62I0F7TxKba8mZJ3esClexk4Zm14eQi1GKOtS3pB0,204288
32
- bigdl/cpp/libs/llama-server.exe,sha256=G0FDf2StatBC1w3lQf2svh8uSAMV1D_q9_q9S1z71Wo,2110464
33
- bigdl/cpp/libs/llama-simple.exe,sha256=9C5T_lzW7XpOfH99BHp_Zmb3cb3aa_56lkW_1Fv99S8,771584
34
- bigdl/cpp/libs/llama-speculative.exe,sha256=eCHTeixsUObaaTjfVJLksrah21TOInQ01R_9mtP1p6c,856576
35
- bigdl/cpp/libs/llama-tokenize.exe,sha256=bxds0wQ9NAV9fhZC-K-NziOse_9JNxxB4Rw08MDLMb4,174080
36
- bigdl/cpp/libs/llama.dll,sha256=yv4ctGupW25q1fELG67wAeJRPAb0wSAvjZV4u2Qr_7E,2160640
37
- bigdl/cpp/libs/llava_shared.dll,sha256=qnYFDNUN9nGENnwyU1pcjV89ZTpVxOmRJ4I12Kjiyow,414208
38
- bigdl/cpp/libs/ollama.exe,sha256=aH3bgXhTg8kYQx97xSZ0OrjbNsFhWGVFrJ6v_Thy0ug,65492018
39
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ggml.dll,sha256=9mzByTj57wI87iIfslLEAYRN_C1V_Jq08hoFswEwlVM,6354944
40
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/llama.dll,sha256=fQOlp4E8-RiZMHSw-5uF_1YpNHs0M-zFOY3OuF0Q5TQ,2161152
41
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ollama_llama_server.exe,sha256=hVJct5DOBtcwvoiD33smPubtzC_6izYDM9NvziT3xoM,1360896
42
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ggml.dll,sha256=Ivh-2yIVB4aFEUckbFuValv6wARtAleyn-6dBKn51GY,6354944
43
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/llama.dll,sha256=215AFHlKz2-xMmjHUVEYf4EPDUqbmiY7wXVoBF45pA8,2161152
44
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ollama_llama_server.exe,sha256=I56CzEQoaqKKqqDXXCQn4CTsCdSvEVCZwyxZMU2Fx-s,1360896
45
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ggml.dll,sha256=YOLXL_5yryNMjZ5p1R9hBA3jysXZrVkoC50b8Cg4j4k,6354944
46
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/llama.dll,sha256=jcVCBt0V2Y61DRejUw6uOd7UkHkUKDoQwOOY6JVP_yU,2161152
47
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ollama_llama_server.exe,sha256=7B5sOA9lhhstuY_PjEp5wuNT-GrdUg-K-JbWZiAy0XE,1360896
48
- bigdl_core_cpp-2.6.0b20240908.data/scripts/init-llama-cpp.bat,sha256=U0h6RifZxL3GGJp-0dxdZapQIvXUATSj644CURJL-lg,751
49
- bigdl_core_cpp-2.6.0b20240908.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
50
- bigdl_core_cpp-2.6.0b20240908.data/scripts/init-ollama.bat,sha256=2rScaP2-_yWuAnc86NyX-i6pg7BxjvLc96Kt7HuvQVM,603
51
- bigdl_core_cpp-2.6.0b20240908.dist-info/METADATA,sha256=1dUP0OfGWhsVZ7XVhi0secIAeK63CHZO7-T-H0YR6Ms,654
52
- bigdl_core_cpp-2.6.0b20240908.dist-info/WHEEL,sha256=87BRyezC8KnrcMI_z4tCzFYC3DxpD7TAVunwk556SAc,97
53
- bigdl_core_cpp-2.6.0b20240908.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
54
- bigdl_core_cpp-2.6.0b20240908.dist-info/RECORD,,