bigdl-core-cpp 2.6.0b20241211__py3-none-win_amd64.whl → 2.6.0b20241213__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.
- bigdl/cpp/libs/common.lib +0 -0
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ollama_llama_server.exe +0 -0
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ollama_llama_server.exe +0 -0
- bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ollama_llama_server.exe +0 -0
- bigdl/cpp/libs/ggml.dll +0 -0
- bigdl/cpp/libs/libc++.dll +0 -0
- bigdl/cpp/libs/llama-batched.exe +0 -0
- bigdl/cpp/libs/llama-bench.exe +0 -0
- bigdl/cpp/libs/llama-cli.exe +0 -0
- bigdl/cpp/libs/llama-embedding.exe +0 -0
- bigdl/cpp/libs/llama-gguf.exe +0 -0
- bigdl/cpp/libs/llama-llava-cli.exe +0 -0
- bigdl/cpp/libs/llama-lookup.exe +0 -0
- bigdl/cpp/libs/llama-ls-sycl-device.exe +0 -0
- bigdl/cpp/libs/llama-minicpmv-cli.exe +0 -0
- bigdl/cpp/libs/llama-perplexity.exe +0 -0
- bigdl/cpp/libs/llama-quantize.exe +0 -0
- bigdl/cpp/libs/llama-server.exe +0 -0
- bigdl/cpp/libs/llama-simple.exe +0 -0
- bigdl/cpp/libs/llama-speculative.exe +0 -0
- bigdl/cpp/libs/llama-tokenize.exe +0 -0
- bigdl/cpp/libs/llama.dll +0 -0
- bigdl/cpp/libs/llava_shared.dll +0 -0
- bigdl/cpp/libs/ollama.exe +0 -0
- bigdl_core_cpp-2.6.0b20241213.data/scripts/init-ollama.bat +16 -0
- {bigdl_core_cpp-2.6.0b20241211.dist-info → bigdl_core_cpp-2.6.0b20241213.dist-info}/METADATA +2 -1
- bigdl_core_cpp-2.6.0b20241213.dist-info/RECORD +49 -0
- {bigdl_core_cpp-2.6.0b20241211.dist-info → bigdl_core_cpp-2.6.0b20241213.dist-info}/WHEEL +1 -1
- bigdl_core_cpp-2.6.0b20241211.data/scripts/init-ollama.bat +0 -19
- bigdl_core_cpp-2.6.0b20241211.dist-info/RECORD +0 -45
- {bigdl_core_cpp-2.6.0b20241211.data → bigdl_core_cpp-2.6.0b20241213.data}/scripts/init-llama-cpp.bat +0 -0
- {bigdl_core_cpp-2.6.0b20241211.data → bigdl_core_cpp-2.6.0b20241213.data}/scripts/init-llama-cpp.ps1 +0 -0
- {bigdl_core_cpp-2.6.0b20241211.dist-info → bigdl_core_cpp-2.6.0b20241213.dist-info}/top_level.txt +0 -0
bigdl/cpp/libs/common.lib
CHANGED
Binary file
|
Binary file
|
Binary file
|
bigdl/cpp/libs/ggml.dll
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/llama-batched.exe
CHANGED
Binary file
|
bigdl/cpp/libs/llama-bench.exe
CHANGED
Binary file
|
bigdl/cpp/libs/llama-cli.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/llama-gguf.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/llama-lookup.exe
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
bigdl/cpp/libs/llama-server.exe
CHANGED
Binary file
|
bigdl/cpp/libs/llama-simple.exe
CHANGED
Binary file
|
Binary file
|
Binary file
|
bigdl/cpp/libs/llama.dll
CHANGED
Binary file
|
bigdl/cpp/libs/llava_shared.dll
CHANGED
Binary file
|
bigdl/cpp/libs/ollama.exe
CHANGED
Binary file
|
@@ -0,0 +1,16 @@
|
|
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
|
+
|
8
|
+
:: Create symlinks for DLLs and EXE
|
9
|
+
for %%f in (ollama.exe llama.dll ggml.dll llava_shared.dll libc++.dll) do (
|
10
|
+
if exist "%cd%\%%f" del /f "%cd%\%%f"
|
11
|
+
mklink "%cd%\%%f" "%lib_dir%\%%f"
|
12
|
+
)
|
13
|
+
|
14
|
+
:: Create symlink for dist directory
|
15
|
+
if exist "%cd%\dist" rmdir /s /q "%cd%\dist"
|
16
|
+
mklink /D "%cd%\dist" "%lib_dir%\dist"
|
{bigdl_core_cpp-2.6.0b20241211.dist-info → bigdl_core_cpp-2.6.0b20241213.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: bigdl-core-cpp
|
3
|
-
Version: 2.6.
|
3
|
+
Version: 2.6.0b20241213
|
4
4
|
Summary: Large Language Model Develop Toolkit
|
5
5
|
Author: BigDL Authors
|
6
6
|
License: Apache License, Version 2.0
|
@@ -15,3 +15,4 @@ Requires-Dist: sentencepiece~=0.1.98
|
|
15
15
|
Requires-Dist: accelerate==0.33.0
|
16
16
|
Requires-Dist: protobuf<5.0.0,>=4.21.0
|
17
17
|
Requires-Dist: gguf>=0.1.0
|
18
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
bigdl/cpp/convert_hf_to_gguf.py,sha256=QcBpqyIsrqLlLFwCp0Z8M3IzMobHygjQY0ZgvFoF_u0,207430
|
3
|
+
bigdl/cpp/convert_hf_to_gguf_update.py,sha256=O1NH13YPWT9Af778goJOg8pccbrc5cOgwYcPOIOqYq0,16612
|
4
|
+
bigdl/cpp/convert_llama_ggml_to_gguf.py,sha256=0dKjRhmFzvWV4e-cuLmaeW14JrWUtZwerBmz8mYyMvI,19556
|
5
|
+
bigdl/cpp/convert_lora_to_gguf.py,sha256=qBJSMA_w3cIN_Mi5pNsi4zI1P5GYIeRi4nZPTpAs8QQ,15461
|
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=8_u4WadRGm7XeN0hxaIzDUgGajyUdHB4XsbslumYS2U,58733
|
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=tHtbF0ogWwfclKCvO7VyGKoJuCieFrrBx-vVpnruoQA,37092
|
12
|
+
bigdl/cpp/gguf-py/gguf/lazy.py,sha256=YIYxGBWD-oKXU4HOvpHs9eiEn81HUgeSmt1mmHJlbdM,8814
|
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=2z6vcK-kBefqZbYNmSEVmdZF_tXHeVb5NC6jCbBdgKc,62040
|
16
|
+
bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=oW7E5hnCWy7IeiQeN0v7xoLWeSatDUgEmKq_ZYlLV8s,35299
|
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=vvyOqplbdpNm63nRHX8NBLTdr4-bH-grOtR2FzDi-3s,4208038
|
20
|
+
bigdl/cpp/libs/ggml.dll,sha256=VWk3lmQGlz38Poe8aPOvAqoaojM3mYcz73t5KpH-UFQ,6219264
|
21
|
+
bigdl/cpp/libs/libc++.dll,sha256=U0TVK2WfFQIJPP6Bz9SeJmgskm2iqZWJorx_DGdfKIw,1561600
|
22
|
+
bigdl/cpp/libs/llama-batched.exe,sha256=1dfisRaQc629qgwFeVsAJ4_a9CJczMh0Fksmy7nKPKc,838656
|
23
|
+
bigdl/cpp/libs/llama-bench.exe,sha256=6fL_lSj443gIVXNduqAotcmkJ3L_xcKz787ivVnefvM,290304
|
24
|
+
bigdl/cpp/libs/llama-cli.exe,sha256=lYNyC0gU89wMUiFPf-h2mEYNPz18wpyUsRrLG4tFs_A,930816
|
25
|
+
bigdl/cpp/libs/llama-embedding.exe,sha256=P_NpdVI_G632H9BPi5OtWD_IPODqOBZPAKx2-XuVkTY,862720
|
26
|
+
bigdl/cpp/libs/llama-gguf.exe,sha256=ICKhRncDAnRr0vsUcfrXpAaL8T4U8RsXkJsF3msnkVQ,66560
|
27
|
+
bigdl/cpp/libs/llama-llava-cli.exe,sha256=aqNx9zF4xCHWiBQS7iUbHc5uc_IN5Yjx-_K4wthRzz0,1090560
|
28
|
+
bigdl/cpp/libs/llama-lookup.exe,sha256=hLeJLtenxREw_HK3g5U2UtU4Q1qJxKMANNHzlAkmJaA,895488
|
29
|
+
bigdl/cpp/libs/llama-ls-sycl-device.exe,sha256=_7F66CzaOSxg9hgB6hkkVaJsdQuLn3wnY3jxO5l4eUk,10240
|
30
|
+
bigdl/cpp/libs/llama-minicpmv-cli.exe,sha256=nWVTB4o7lfB9r8JPqBRhm2Xy2iQ49X1SADphU2MxoIc,1088512
|
31
|
+
bigdl/cpp/libs/llama-perplexity.exe,sha256=D66GoiE2hY3RvkJ-04rRib_UksWcd3KOZ_uCkKwSX-I,998912
|
32
|
+
bigdl/cpp/libs/llama-quantize.exe,sha256=mH0hCNlsMtc4e06FaI2YQuPqobj4PjAfZGrkcemvUik,139264
|
33
|
+
bigdl/cpp/libs/llama-server.exe,sha256=aYL28LKeCkeS7JzYBdSUzzEJszeUFqYtN8ICjuuiTV4,1962496
|
34
|
+
bigdl/cpp/libs/llama-simple.exe,sha256=Fptlz0NzByGB0WxJ7ZAnsw0n5T_uLzWyvZLZ8QAEEUA,834048
|
35
|
+
bigdl/cpp/libs/llama-speculative.exe,sha256=lFY9Bsdjzi16jcAJrXRBGokuZFKWcOIcoxZ52ulMH48,898048
|
36
|
+
bigdl/cpp/libs/llama-tokenize.exe,sha256=8NH52e2CJ2jMMSOlu9my_phpz_gDn8hTLTi98bTbyK4,102400
|
37
|
+
bigdl/cpp/libs/llama.dll,sha256=2fErOERdwXDLYBtZ7NiuycD6PqIKgHhxy8OO0VLfHwE,2471424
|
38
|
+
bigdl/cpp/libs/llava_shared.dll,sha256=q9kKTEyhDTjHjWN-iTqWxgJPpHTulxppnIBxEU3t1wA,369152
|
39
|
+
bigdl/cpp/libs/ollama.exe,sha256=WzyX9WeMA7wh5yYcWYwuB_UjwSEro6UHKG-CHkbJ_bU,63590400
|
40
|
+
bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu/ollama_llama_server.exe,sha256=v4j1GegFZ5_LCmNxwOXpP2wuhNWNS7pdBquKRzO177E,6257664
|
41
|
+
bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx/ollama_llama_server.exe,sha256=tNHGlDIraE9AYmn8CCN5bQmsx-pze1pzW9wNVytWrPg,6257664
|
42
|
+
bigdl/cpp/libs/dist/windows-amd64/lib/ollama/runners/cpu_avx2/ollama_llama_server.exe,sha256=er1LQGMHN1K1WzWTreayvaAW1ncofz02s2B2kDDvIaI,6257664
|
43
|
+
bigdl_core_cpp-2.6.0b20241213.data/scripts/init-llama-cpp.bat,sha256=U0h6RifZxL3GGJp-0dxdZapQIvXUATSj644CURJL-lg,751
|
44
|
+
bigdl_core_cpp-2.6.0b20241213.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
|
45
|
+
bigdl_core_cpp-2.6.0b20241213.data/scripts/init-ollama.bat,sha256=Z8A1eV1iHln5KBKOLlEx3HWlg2uknl4Zl2X2xbp-jHE,559
|
46
|
+
bigdl_core_cpp-2.6.0b20241213.dist-info/METADATA,sha256=ULRIls77Jr8GBB48IPXZmuOxTZPi1KTowKdU5wOFsLk,654
|
47
|
+
bigdl_core_cpp-2.6.0b20241213.dist-info/WHEEL,sha256=37evyuMEjsyAveQX40iT43Lz7iWGYiYX5J9a6lEUCNg,97
|
48
|
+
bigdl_core_cpp-2.6.0b20241213.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
|
49
|
+
bigdl_core_cpp-2.6.0b20241213.dist-info/RECORD,,
|
@@ -1,19 +0,0 @@
|
|
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,45 +0,0 @@
|
|
1
|
-
bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
bigdl/cpp/convert_hf_to_gguf.py,sha256=QcBpqyIsrqLlLFwCp0Z8M3IzMobHygjQY0ZgvFoF_u0,207430
|
3
|
-
bigdl/cpp/convert_hf_to_gguf_update.py,sha256=O1NH13YPWT9Af778goJOg8pccbrc5cOgwYcPOIOqYq0,16612
|
4
|
-
bigdl/cpp/convert_llama_ggml_to_gguf.py,sha256=0dKjRhmFzvWV4e-cuLmaeW14JrWUtZwerBmz8mYyMvI,19556
|
5
|
-
bigdl/cpp/convert_lora_to_gguf.py,sha256=qBJSMA_w3cIN_Mi5pNsi4zI1P5GYIeRi4nZPTpAs8QQ,15461
|
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=8_u4WadRGm7XeN0hxaIzDUgGajyUdHB4XsbslumYS2U,58733
|
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=tHtbF0ogWwfclKCvO7VyGKoJuCieFrrBx-vVpnruoQA,37092
|
12
|
-
bigdl/cpp/gguf-py/gguf/lazy.py,sha256=YIYxGBWD-oKXU4HOvpHs9eiEn81HUgeSmt1mmHJlbdM,8814
|
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=2z6vcK-kBefqZbYNmSEVmdZF_tXHeVb5NC6jCbBdgKc,62040
|
16
|
-
bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=oW7E5hnCWy7IeiQeN0v7xoLWeSatDUgEmKq_ZYlLV8s,35299
|
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=KiEclGjWr4Re-koAlu_EJ0dx_eJWOZ_-cxynqjEhiMs,4205058
|
20
|
-
bigdl/cpp/libs/ggml.dll,sha256=ZYnnmLc1Ncyn3rDEJrW6LwWYLHU_Obz80O3TGukLZIs,6219776
|
21
|
-
bigdl/cpp/libs/llama-batched.exe,sha256=YiRTTJYU5HzIBRSABWfUsouCYZbUO8A33BJ-sZMN7NM,838656
|
22
|
-
bigdl/cpp/libs/llama-bench.exe,sha256=sCqTPsHULyNLaelX2zsJf5eytVUFTJ0CGIQqhCjbKxA,290304
|
23
|
-
bigdl/cpp/libs/llama-cli.exe,sha256=CfOwSxxDB9Mnjmv3f--NcQ8o8mnJNn35oIpAiMboAwI,929280
|
24
|
-
bigdl/cpp/libs/llama-embedding.exe,sha256=25gJuxi33L9YGz6rqJaB-RwNrPoKJV7TmqkpiFD5D3w,860672
|
25
|
-
bigdl/cpp/libs/llama-gguf.exe,sha256=i9_oh1DcUMvQeYo6vJVxha_clodUD2cmGiLiEajco5w,66560
|
26
|
-
bigdl/cpp/libs/llama-llava-cli.exe,sha256=Qz63VFbVJos_YcBOJ9lZmz4ls4_WOkb-Ja4Zbxl5qwg,1091072
|
27
|
-
bigdl/cpp/libs/llama-lookup.exe,sha256=Xu6BHMpzrXd0KCqbIsxd2v1wYG0tVYl3BQMzCedus74,893952
|
28
|
-
bigdl/cpp/libs/llama-ls-sycl-device.exe,sha256=n3r_ttydRhyAfwo9pXZC3Cx81ffJZJg5Iu9R9ObkM-w,10240
|
29
|
-
bigdl/cpp/libs/llama-minicpmv-cli.exe,sha256=nzshnx0yvRmS8vf4JQcdllN5gnE55yXEKcDvRlVZoc4,1089024
|
30
|
-
bigdl/cpp/libs/llama-perplexity.exe,sha256=2PImsgokgDW2koGU61FADV5BnUhlBAbzZ153bde7aZ4,997376
|
31
|
-
bigdl/cpp/libs/llama-quantize.exe,sha256=Zx5Nofwfm9ITX-b1X2ka9VB8oEeTDcq9FLIUKAB9A6I,139264
|
32
|
-
bigdl/cpp/libs/llama-server.exe,sha256=_DEZ1za1cqW7lg9FqeTf7UMUc-QOVmuvAKaYxyMkDJY,1960960
|
33
|
-
bigdl/cpp/libs/llama-simple.exe,sha256=9CI4Y7tfoXn0zOkUGtNJXcouLpxqqyYdyYKkypxMPUU,834048
|
34
|
-
bigdl/cpp/libs/llama-speculative.exe,sha256=yAFNeNEpxzSEbrEqRZlG9b2h975tGyYWlwOO3GvAmew,896512
|
35
|
-
bigdl/cpp/libs/llama-tokenize.exe,sha256=445caGydC-Tof4OX9xfyYUItyKrCE6dTZJ8mWpb8CFc,102400
|
36
|
-
bigdl/cpp/libs/llama.dll,sha256=na9ZxrYLqG3CmutTL7SCFF__kt2MbbCOQOG-YkWwo6M,2471936
|
37
|
-
bigdl/cpp/libs/llava_shared.dll,sha256=Rxxf-Mq63MDfas2omN-A8Y4Fjk06GmmcaGc1uD69a3g,369152
|
38
|
-
bigdl/cpp/libs/ollama.exe,sha256=8IcEJkzPcoE0r3K2sAacTX6aVfvKI-xu-1ysEOQ8yJA,64879199
|
39
|
-
bigdl_core_cpp-2.6.0b20241211.data/scripts/init-llama-cpp.bat,sha256=U0h6RifZxL3GGJp-0dxdZapQIvXUATSj644CURJL-lg,751
|
40
|
-
bigdl_core_cpp-2.6.0b20241211.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
|
41
|
-
bigdl_core_cpp-2.6.0b20241211.data/scripts/init-ollama.bat,sha256=2rScaP2-_yWuAnc86NyX-i6pg7BxjvLc96Kt7HuvQVM,603
|
42
|
-
bigdl_core_cpp-2.6.0b20241211.dist-info/METADATA,sha256=eNkNqvxgOYJelp2IlQ17j-t19SmJf1pcKGmQfhyXaBw,652
|
43
|
-
bigdl_core_cpp-2.6.0b20241211.dist-info/WHEEL,sha256=z8gukVdnGwjcwo0VnsfJMrhPu5QJT68VcMWmAgvAufw,97
|
44
|
-
bigdl_core_cpp-2.6.0b20241211.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
|
45
|
-
bigdl_core_cpp-2.6.0b20241211.dist-info/RECORD,,
|
{bigdl_core_cpp-2.6.0b20241211.data → bigdl_core_cpp-2.6.0b20241213.data}/scripts/init-llama-cpp.bat
RENAMED
File without changes
|
{bigdl_core_cpp-2.6.0b20241211.data → bigdl_core_cpp-2.6.0b20241213.data}/scripts/init-llama-cpp.ps1
RENAMED
File without changes
|
{bigdl_core_cpp-2.6.0b20241211.dist-info → bigdl_core_cpp-2.6.0b20241213.dist-info}/top_level.txt
RENAMED
File without changes
|