bigdl-core-cpp 2.5.0b20240409__py3-none-win_amd64.whl → 2.5.0b20240411__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/baby-llama.exe +0 -0
- bigdl/cpp/libs/batched-bench.exe +0 -0
- bigdl/cpp/libs/batched.exe +0 -0
- bigdl/cpp/libs/beam-search.exe +0 -0
- bigdl/cpp/libs/benchmark.exe +0 -0
- bigdl/cpp/libs/convert-llama2c-to-ggml.exe +0 -0
- bigdl/cpp/libs/embedding.exe +0 -0
- bigdl/cpp/libs/export-lora.exe +0 -0
- bigdl/cpp/libs/finetune.exe +0 -0
- bigdl/cpp/libs/gguf.exe +0 -0
- bigdl/cpp/libs/gritlm.exe +0 -0
- bigdl/cpp/libs/imatrix.exe +0 -0
- bigdl/cpp/libs/infill.exe +0 -0
- bigdl/cpp/libs/llama-bench.exe +0 -0
- bigdl/cpp/libs/llava-cli.exe +0 -0
- bigdl/cpp/libs/lookahead.exe +0 -0
- bigdl/cpp/libs/lookup.exe +0 -0
- bigdl/cpp/libs/ls-sycl-device.exe +0 -0
- bigdl/cpp/libs/main.exe +0 -0
- bigdl/cpp/libs/ollama.exe +0 -0
- bigdl/cpp/libs/parallel.exe +0 -0
- bigdl/cpp/libs/passkey.exe +0 -0
- bigdl/cpp/libs/perplexity.exe +0 -0
- bigdl/cpp/libs/q8dot.exe +0 -0
- bigdl/cpp/libs/quantize-stats.exe +0 -0
- bigdl/cpp/libs/quantize.exe +0 -0
- bigdl/cpp/libs/save-load-state.exe +0 -0
- bigdl/cpp/libs/server.exe +0 -0
- bigdl/cpp/libs/simple.exe +0 -0
- bigdl/cpp/libs/speculative.exe +0 -0
- bigdl/cpp/libs/tokenize.exe +0 -0
- bigdl/cpp/libs/train-text-from-scratch.exe +0 -0
- bigdl/cpp/libs/vdot.exe +0 -0
- {bigdl_core_cpp-2.5.0b20240409.data → bigdl_core_cpp-2.5.0b20240411.data}/scripts/init-llama-cpp.bat +3 -1
- bigdl_core_cpp-2.5.0b20240411.data/scripts/init-ollama.bat +10 -0
- {bigdl_core_cpp-2.5.0b20240409.dist-info → bigdl_core_cpp-2.5.0b20240411.dist-info}/METADATA +1 -1
- bigdl_core_cpp-2.5.0b20240411.dist-info/RECORD +42 -0
- bigdl_core_cpp-2.5.0b20240409.dist-info/RECORD +0 -40
- {bigdl_core_cpp-2.5.0b20240409.data → bigdl_core_cpp-2.5.0b20240411.data}/scripts/init-llama-cpp.ps1 +0 -0
- {bigdl_core_cpp-2.5.0b20240409.dist-info → bigdl_core_cpp-2.5.0b20240411.dist-info}/WHEEL +0 -0
- {bigdl_core_cpp-2.5.0b20240409.dist-info → bigdl_core_cpp-2.5.0b20240411.dist-info}/top_level.txt +0 -0
bigdl/cpp/libs/baby-llama.exe
CHANGED
Binary file
|
bigdl/cpp/libs/batched-bench.exe
CHANGED
Binary file
|
bigdl/cpp/libs/batched.exe
CHANGED
Binary file
|
bigdl/cpp/libs/beam-search.exe
CHANGED
Binary file
|
bigdl/cpp/libs/benchmark.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/embedding.exe
CHANGED
Binary file
|
bigdl/cpp/libs/export-lora.exe
CHANGED
Binary file
|
bigdl/cpp/libs/finetune.exe
CHANGED
Binary file
|
bigdl/cpp/libs/gguf.exe
CHANGED
Binary file
|
bigdl/cpp/libs/gritlm.exe
CHANGED
Binary file
|
bigdl/cpp/libs/imatrix.exe
CHANGED
Binary file
|
bigdl/cpp/libs/infill.exe
CHANGED
Binary file
|
bigdl/cpp/libs/llama-bench.exe
CHANGED
Binary file
|
bigdl/cpp/libs/llava-cli.exe
CHANGED
Binary file
|
bigdl/cpp/libs/lookahead.exe
CHANGED
Binary file
|
bigdl/cpp/libs/lookup.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/main.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/parallel.exe
CHANGED
Binary file
|
bigdl/cpp/libs/passkey.exe
CHANGED
Binary file
|
bigdl/cpp/libs/perplexity.exe
CHANGED
Binary file
|
bigdl/cpp/libs/q8dot.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/quantize.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/server.exe
CHANGED
Binary file
|
bigdl/cpp/libs/simple.exe
CHANGED
Binary file
|
bigdl/cpp/libs/speculative.exe
CHANGED
Binary file
|
bigdl/cpp/libs/tokenize.exe
CHANGED
Binary file
|
Binary file
|
bigdl/cpp/libs/vdot.exe
CHANGED
Binary file
|
@@ -0,0 +1,10 @@
|
|
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
|
+
|
10
|
+
mklink "%target_path%" "%source_path%"
|
@@ -0,0 +1,42 @@
|
|
1
|
+
bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
bigdl/cpp/convert.py,sha256=oQmsJ9rVoQXSeXOfy2bfsmSUVCFg9g-jEZtP-mSnt-E,60930
|
3
|
+
bigdl/cpp/libs/baby-llama.exe,sha256=WSLBP3cVQS9XuJNo7dctDgkC84wUw4ReaICIV2f8g7Q,3707904
|
4
|
+
bigdl/cpp/libs/batched-bench.exe,sha256=c7HsV5OUxuJDmxank2uKLWIZiyxi8GmcAZw4Vv28Z18,4521984
|
5
|
+
bigdl/cpp/libs/batched.exe,sha256=Tpux2ydNUIUYoU3NR6fKEykyp1DdnZ3CWsR8IiMMrWQ,4551168
|
6
|
+
bigdl/cpp/libs/beam-search.exe,sha256=tPQuOBmyFQaC14Bj_9Hiz1VNB8dDE36pc0qaXjiUnuw,4566016
|
7
|
+
bigdl/cpp/libs/benchmark.exe,sha256=QgOFhZ2iMeI9vjeS0yEnWkmQa5D9BYS6QUJALPsTvqA,573952
|
8
|
+
bigdl/cpp/libs/convert-llama2c-to-ggml.exe,sha256=1eZQzJlRffGI-sy9V2aBnNcrsIcMMWwjSqS-kxSD9_0,311296
|
9
|
+
bigdl/cpp/libs/embedding.exe,sha256=IXYl8Ue-3Ul-lqowxRporPiDZgM8ZKMnglBLZL9RGQw,4688896
|
10
|
+
bigdl/cpp/libs/export-lora.exe,sha256=b1k6MHHxAIxHHB6CDgd6U64nmG-gjLXfNd5k5d7JtqI,3486208
|
11
|
+
bigdl/cpp/libs/finetune.exe,sha256=CEpjEOn0-8GQGBNbTIobQyuPgKlpvOWaCnZ7s2fekJA,4638720
|
12
|
+
bigdl/cpp/libs/gguf.exe,sha256=DdF9sidPkmwSHYOfUpFqYEOthGur2zilNlf2savxFy8,3457536
|
13
|
+
bigdl/cpp/libs/gritlm.exe,sha256=1IXa21_WwkezxWjA-PVEDDKeFafGCceVeZ2KNR1JQbU,4651520
|
14
|
+
bigdl/cpp/libs/imatrix.exe,sha256=PMgMr0f3Jr0Qk-r5WvqvsrXXANLrpm8RCwPg9JP-L1U,4678144
|
15
|
+
bigdl/cpp/libs/infill.exe,sha256=11RruUweZBpElg8eW-4WCZ6XxACwzuHx7PW633HlkMg,4840960
|
16
|
+
bigdl/cpp/libs/llama-bench.exe,sha256=3_VEpCT5MAGsPu4MM0MunJrRAPh1vLNP2Qjt9lmgd1I,4644352
|
17
|
+
bigdl/cpp/libs/llava-cli.exe,sha256=4klwprn2ONvO3iljeIRWvGGz4sR4r6F7r_618VrorM4,4927488
|
18
|
+
bigdl/cpp/libs/lookahead.exe,sha256=6nyGfyRZHMiiqqjfJ4kobrkYIik0ixcci44YYW7-foM,4767232
|
19
|
+
bigdl/cpp/libs/lookup.exe,sha256=ZBwSV0HBkujqBIMLMQn8QXZHQuD7oPWRS5LabXgZm2I,4800512
|
20
|
+
bigdl/cpp/libs/ls-sycl-device.exe,sha256=kE0xGCxtec8eh9OTxNzYc8udr6V-9EU1xKklRyPSWHY,3481600
|
21
|
+
bigdl/cpp/libs/main.exe,sha256=IJkjIa_lNCN4zFDlUSeZbFQSeebL9onz5XBArleDBLA,4886016
|
22
|
+
bigdl/cpp/libs/ollama.exe,sha256=oK1_BF1dI4h7xTftO7eoKSzFqhtHI0r9iHXRs4fCg_k,61173588
|
23
|
+
bigdl/cpp/libs/parallel.exe,sha256=XdBD519TPqicGMbj-ZvygI8RvH6X30A3559lAEnNI4w,4784640
|
24
|
+
bigdl/cpp/libs/passkey.exe,sha256=JLoGKbBwgSo4Dz_6s7liFAiSggUA9zqRQZGp7G6hJxc,4542976
|
25
|
+
bigdl/cpp/libs/perplexity.exe,sha256=y2sHo4rlPKHfjY-Sf9VN7BZfdUluRcb-LJqGqC7vYOM,4820992
|
26
|
+
bigdl/cpp/libs/q8dot.exe,sha256=Q7dGwuDNAxi1o2lyMwrXgMmNkLbMchsYSi69gKVrJYs,239616
|
27
|
+
bigdl/cpp/libs/quantize-stats.exe,sha256=84Tpf_BNl-GPqJcKJsaQbakpp7XZq8meA-EtxjyiXYw,4481536
|
28
|
+
bigdl/cpp/libs/quantize.exe,sha256=mdGY3GrBo1hQJv7PjdIRHdvt6xgXgZvv3EYlHG9gtVE,3878400
|
29
|
+
bigdl/cpp/libs/save-load-state.exe,sha256=-D4UYAMXYKEl_NvOTsnD2B2OpeFnJSucaYj5goTf6yU,4678144
|
30
|
+
bigdl/cpp/libs/server.exe,sha256=YwFK2kHd1qNXafHBBh8XxU-yScsxNUJ18zU1XDx7B88,6067712
|
31
|
+
bigdl/cpp/libs/simple.exe,sha256=LYCoTtSPTLUlBsNCH2c77SkNGRdZgc7SgihMXjfgtoM,4526592
|
32
|
+
bigdl/cpp/libs/speculative.exe,sha256=7JFdEL9_wusge5K03xoPfoc8sNHoQTL9-BBSjTpgFWk,4792832
|
33
|
+
bigdl/cpp/libs/tokenize.exe,sha256=TEscge565XGdmfwHuvWZ_EEewP2aIkfxPKEIWjNY8Nw,4472320
|
34
|
+
bigdl/cpp/libs/train-text-from-scratch.exe,sha256=wUSuu2XwMdPMx7jxdHapisEKcISVnosFx_B_sHKzC7E,4619776
|
35
|
+
bigdl/cpp/libs/vdot.exe,sha256=znUG40njHyHoJJN-deoMrGT-rxBsoSRf59bwAQ3H6Yc,241664
|
36
|
+
bigdl_core_cpp-2.5.0b20240411.data/scripts/init-llama-cpp.bat,sha256=YwEFZi-zywLZcqIulfYYqMDZHhazrYsfAwLL8tTRQYE,442
|
37
|
+
bigdl_core_cpp-2.5.0b20240411.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
|
38
|
+
bigdl_core_cpp-2.5.0b20240411.data/scripts/init-ollama.bat,sha256=OVX62Q7KH67z6rQrgQUwEc19E3eiAH-8HAIycDmySYc,350
|
39
|
+
bigdl_core_cpp-2.5.0b20240411.dist-info/METADATA,sha256=UqdZcs2WxCTaoWyVybsXyXk9YkQ7K6ZFvHMJzFjkoXY,658
|
40
|
+
bigdl_core_cpp-2.5.0b20240411.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
|
41
|
+
bigdl_core_cpp-2.5.0b20240411.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
|
42
|
+
bigdl_core_cpp-2.5.0b20240411.dist-info/RECORD,,
|
@@ -1,40 +0,0 @@
|
|
1
|
-
bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
bigdl/cpp/convert.py,sha256=oQmsJ9rVoQXSeXOfy2bfsmSUVCFg9g-jEZtP-mSnt-E,60930
|
3
|
-
bigdl/cpp/libs/baby-llama.exe,sha256=0IKGrNXRpQpX5-5Hh0NWGj1kykRETxzU-ogiw5GzLGo,3707904
|
4
|
-
bigdl/cpp/libs/batched-bench.exe,sha256=FVsBlHgxdRWAv-BYGrysgSmKQCoCtUG2WTqNM7y83OY,4521984
|
5
|
-
bigdl/cpp/libs/batched.exe,sha256=ocjs68UT8CcJ2p0QrZo2ug7Of_KSAdi1FnE8mAoVZ1s,4551168
|
6
|
-
bigdl/cpp/libs/beam-search.exe,sha256=hSyHPtIqyKU1q6EzImYDKp8o-ROvFr5VzK4hDPs-y3U,4566016
|
7
|
-
bigdl/cpp/libs/benchmark.exe,sha256=l1rImt9IeD91dVq0lKm1FxMI7roQEJK2xD6dzAftZCA,573952
|
8
|
-
bigdl/cpp/libs/convert-llama2c-to-ggml.exe,sha256=rh_TR6VdwCrVIhim_lJufEvNmOg2mNSVa38bAeFkvUA,311296
|
9
|
-
bigdl/cpp/libs/embedding.exe,sha256=ZfbA4zRVc7zX6t2wow-aSqeJdFHc0lS26wB1yD2j1_w,4688896
|
10
|
-
bigdl/cpp/libs/export-lora.exe,sha256=B6Oh4-uyZRil4wSvhKcvy70_FNeA7HIhT4GDy5I4DVU,3486208
|
11
|
-
bigdl/cpp/libs/finetune.exe,sha256=2CudUJqeIfs5D3_MLYRCZlDOhWDZW82MphhinZM7NGs,4638720
|
12
|
-
bigdl/cpp/libs/gguf.exe,sha256=1SQmKR4HIwR3LDkEu-eLU4qXkKJuoRO8k5cgDCFq_jA,3457536
|
13
|
-
bigdl/cpp/libs/gritlm.exe,sha256=DjEyW987Q_fW9SyEYoa7VWFairDfQXFSmXJ38VVH9e0,4651520
|
14
|
-
bigdl/cpp/libs/imatrix.exe,sha256=b2sxa1oGghwiJuMUSDVlklqhHuq1eP46bgsxYsB7SMg,4678144
|
15
|
-
bigdl/cpp/libs/infill.exe,sha256=T2kT_Mejr7kDXG95CJTtGHUXGn_A4u7HaBwvX4yaEHU,4840960
|
16
|
-
bigdl/cpp/libs/llama-bench.exe,sha256=guruR3XRV2bcWXMywv91Uryk6ZbHwQs_Llpi40n-hHY,4644352
|
17
|
-
bigdl/cpp/libs/llava-cli.exe,sha256=0jU17PYWEt0_FdTnj8Phkn63QkYhpP_c74RNAOt7Vdg,4927488
|
18
|
-
bigdl/cpp/libs/lookahead.exe,sha256=w_DbgJi64yvXuFeKjzG3Ni2MyV1xAQa9T3vtbqkjK0w,4767232
|
19
|
-
bigdl/cpp/libs/lookup.exe,sha256=La-4XNsD197ZNPv5SE8mC-VlAfC-SU248AVedpLRXc8,4800512
|
20
|
-
bigdl/cpp/libs/ls-sycl-device.exe,sha256=yB8XTrchlxX4XxPqoSMOPu3OO2MIyimtQUl1ZMpjseg,3481600
|
21
|
-
bigdl/cpp/libs/main.exe,sha256=zdXnMwjsgqrBgD8ZysvCzAnBohpCG97EznU1rT31n2E,4886016
|
22
|
-
bigdl/cpp/libs/parallel.exe,sha256=XJ255XfI2ZECb9oIFVxL104NFINqCK5h3U2d86lrDHs,4784640
|
23
|
-
bigdl/cpp/libs/passkey.exe,sha256=gYd4D0_05PvFIe1cGm8vxKNAVR29fQrqHcIA1DP-Zco,4542976
|
24
|
-
bigdl/cpp/libs/perplexity.exe,sha256=XyjgmLuRLsSdIt4T6u_6gOIpdjmRuWXqV3QdKrwRK2g,4820992
|
25
|
-
bigdl/cpp/libs/q8dot.exe,sha256=_Wj6sdfucNIzFOZk8Das7BQpOAkFCkAIm-E-YLkWcPI,239616
|
26
|
-
bigdl/cpp/libs/quantize-stats.exe,sha256=DPvuR7ndqPor3R0Y1VFlkspUVqJsxDS2h-iTAJW-DKE,4481536
|
27
|
-
bigdl/cpp/libs/quantize.exe,sha256=xsKGjqvJlcphXDbc4SHP0mWWZbmDwqZ2HSrk4K__Ak8,3878400
|
28
|
-
bigdl/cpp/libs/save-load-state.exe,sha256=V2WU7rlNdkWjiVYBhBAGfkFx5t4V6PkT0kKmfY-M-R4,4678144
|
29
|
-
bigdl/cpp/libs/server.exe,sha256=wTNehXIaEvBsHlLHfou9ITViJM0QYKtsnDWy5ACtqAU,6067712
|
30
|
-
bigdl/cpp/libs/simple.exe,sha256=lF-Fdpmb4Tv3rVRHZh7ge4BktlBhfvx64JyfW009puA,4526592
|
31
|
-
bigdl/cpp/libs/speculative.exe,sha256=IfdE7b_MSYLKzJPgvSeLdVIvo-blf_ztVfs6qzvJYcc,4792832
|
32
|
-
bigdl/cpp/libs/tokenize.exe,sha256=JaBMuEfL9DEUeqj2ycCkl5oR3TJJ9Q_8H6qSSVSiw9g,4472320
|
33
|
-
bigdl/cpp/libs/train-text-from-scratch.exe,sha256=EDZfsmJcqjTcTPLo_tObaoz-sx4mi7jIyEGBvMG5JVw,4619776
|
34
|
-
bigdl/cpp/libs/vdot.exe,sha256=ySUh1kErb5clTYNyghqaJUDDkpt_2qQ_Oxqyk4ol4fU,241664
|
35
|
-
bigdl_core_cpp-2.5.0b20240409.data/scripts/init-llama-cpp.bat,sha256=d2hDRiKnJx-MqDpcv2-dMVJkDVzake2YjpF7tcioCxM,397
|
36
|
-
bigdl_core_cpp-2.5.0b20240409.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
|
37
|
-
bigdl_core_cpp-2.5.0b20240409.dist-info/METADATA,sha256=R006Oxh9ekot_5sWQHoSl_m71St5YIhyI39PsX8FyAo,658
|
38
|
-
bigdl_core_cpp-2.5.0b20240409.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
|
39
|
-
bigdl_core_cpp-2.5.0b20240409.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
|
40
|
-
bigdl_core_cpp-2.5.0b20240409.dist-info/RECORD,,
|
{bigdl_core_cpp-2.5.0b20240409.data → bigdl_core_cpp-2.5.0b20240411.data}/scripts/init-llama-cpp.ps1
RENAMED
File without changes
|
File without changes
|
{bigdl_core_cpp-2.5.0b20240409.dist-info → bigdl_core_cpp-2.5.0b20240411.dist-info}/top_level.txt
RENAMED
File without changes
|