bigdl-core-cpp 2.5.0b20240317__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/__init__.py +0 -0
  2. bigdl/cpp/convert.py +1468 -0
  3. bigdl/cpp/libs/baby-llama.exe +0 -0
  4. bigdl/cpp/libs/batched-bench.exe +0 -0
  5. bigdl/cpp/libs/batched.exe +0 -0
  6. bigdl/cpp/libs/beam-search.exe +0 -0
  7. bigdl/cpp/libs/benchmark.exe +0 -0
  8. bigdl/cpp/libs/convert-llama2c-to-ggml.exe +0 -0
  9. bigdl/cpp/libs/embedding.exe +0 -0
  10. bigdl/cpp/libs/export-lora.exe +0 -0
  11. bigdl/cpp/libs/finetune.exe +0 -0
  12. bigdl/cpp/libs/gguf.exe +0 -0
  13. bigdl/cpp/libs/gritlm.exe +0 -0
  14. bigdl/cpp/libs/imatrix.exe +0 -0
  15. bigdl/cpp/libs/infill.exe +0 -0
  16. bigdl/cpp/libs/llama-bench.exe +0 -0
  17. bigdl/cpp/libs/llava-cli.exe +0 -0
  18. bigdl/cpp/libs/lookahead.exe +0 -0
  19. bigdl/cpp/libs/lookup.exe +0 -0
  20. bigdl/cpp/libs/ls-sycl-device.exe +0 -0
  21. bigdl/cpp/libs/main.exe +0 -0
  22. bigdl/cpp/libs/parallel.exe +0 -0
  23. bigdl/cpp/libs/passkey.exe +0 -0
  24. bigdl/cpp/libs/perplexity.exe +0 -0
  25. bigdl/cpp/libs/q8dot.exe +0 -0
  26. bigdl/cpp/libs/quantize-stats.exe +0 -0
  27. bigdl/cpp/libs/quantize.exe +0 -0
  28. bigdl/cpp/libs/save-load-state.exe +0 -0
  29. bigdl/cpp/libs/server.exe +0 -0
  30. bigdl/cpp/libs/simple.exe +0 -0
  31. bigdl/cpp/libs/speculative.exe +0 -0
  32. bigdl/cpp/libs/tokenize.exe +0 -0
  33. bigdl/cpp/libs/train-text-from-scratch.exe +0 -0
  34. bigdl/cpp/libs/vdot.exe +0 -0
  35. bigdl_core_cpp-2.5.0b20240317.data/scripts/init-llama-cpp.bat +15 -0
  36. bigdl_core_cpp-2.5.0b20240317.data/scripts/init-llama-cpp.ps1 +13 -0
  37. bigdl_core_cpp-2.5.0b20240317.dist-info/METADATA +18 -0
  38. bigdl_core_cpp-2.5.0b20240317.dist-info/RECORD +40 -0
  39. bigdl_core_cpp-2.5.0b20240317.dist-info/WHEEL +5 -0
  40. bigdl_core_cpp-2.5.0b20240317.dist-info/top_level.txt +1 -0
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
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
@@ -0,0 +1,15 @@
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
+ mklink "%destination_folder%\%%~nxf" "%%~ff"
12
+ )
13
+ popd
14
+
15
+ copy "%cpp_dir%\convert.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,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: bigdl-core-cpp
3
+ Version: 2.5.0b20240317
4
+ Summary: Large Language Model Develop Toolkit
5
+ Author: BigDL Authors
6
+ License: Apache License, Version 2.0
7
+ Classifier: License :: OSI Approved :: Apache Software License
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: Implementation :: CPython
11
+ Requires-Dist: numpy ==1.26.4
12
+ Requires-Dist: transformers ==4.36.0
13
+ Requires-Dist: sentencepiece
14
+ Requires-Dist: tokenizers ==0.15.2
15
+ Requires-Dist: accelerate ==0.21.0
16
+ Requires-Dist: protobuf <5.0.0,>=4.21.0
17
+ Requires-Dist: gguf >=0.1.0
18
+
@@ -0,0 +1,40 @@
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=6m_2I81myxu15mSJ97wToJe94NEuwwGaqETBq2Gpio8,3274752
4
+ bigdl/cpp/libs/batched-bench.exe,sha256=Nq6YpVlTH8cqO0-zBMq8vVSC-TuSN3dguEQItRfnn2o,3902464
5
+ bigdl/cpp/libs/batched.exe,sha256=V8T8Nu0Gg8Iu4s8sRnRRzdnj408Xy46zA61r4OQ4ujg,3930624
6
+ bigdl/cpp/libs/beam-search.exe,sha256=Bd2kFxNCVTZkrU9Jt-L5Q7Zpso2UBuQ8CyIL7e7jLOo,3935232
7
+ bigdl/cpp/libs/benchmark.exe,sha256=GYxP-VGfXDTeWs1gcTroTsA9575mXs_WsuE6Tf71k-g,3123712
8
+ bigdl/cpp/libs/convert-llama2c-to-ggml.exe,sha256=TmXDalGIgTGACT1_YoqzTWofDeY05Q-ODR9wIDhBmfI,3082752
9
+ bigdl/cpp/libs/embedding.exe,sha256=xdT4bIyxFy00eprdi8AC1TXr463-6tBjJn-VB_mzQNc,4064256
10
+ bigdl/cpp/libs/export-lora.exe,sha256=kMgDrkhf136B557yvVXcWmpE_ntHZpI4G7XtilrL8DU,3079168
11
+ bigdl/cpp/libs/finetune.exe,sha256=wIArrvt83NhAL5JMMHFwqJORN-2AFtFPBnbzlo0YK14,4020736
12
+ bigdl/cpp/libs/gguf.exe,sha256=HrpiQUK0MILuahRHD10MEXno0QqZ1RNxHPOqRee5LZM,3051008
13
+ bigdl/cpp/libs/gritlm.exe,sha256=-uxaC4-1l66ZuvrcuzEMHsaW1_BO0OrFU6mcvjkC2qY,4037120
14
+ bigdl/cpp/libs/imatrix.exe,sha256=XrtBY3pAA0YJKrPFAAIj4NyP-ZaIOjR6tjkeqwQEjHw,4064256
15
+ bigdl/cpp/libs/infill.exe,sha256=PeuhUov0LiAsKh3Yj5BwLO_cy0Wy4qFc2hjqAzVbNqk,4215296
16
+ bigdl/cpp/libs/llama-bench.exe,sha256=PCwhA0Xc5yOEqgR44bXnfg0WCZicenyvlEdO_L0_xPQ,4026880
17
+ bigdl/cpp/libs/llava-cli.exe,sha256=Jmm5-L6Jd0ccuU5S4lZthcwx9cNGkUPlhpkNw5Yw3pk,4311040
18
+ bigdl/cpp/libs/lookahead.exe,sha256=PDpSj1i1kZkdQB1MVO7EVpF8SIxfI8iUHerlkL8ZYrM,4142592
19
+ bigdl/cpp/libs/lookup.exe,sha256=NS0HFxA2ouW7D5E0UDDMfw4DRF2nQYNL-2uOK3R5TUo,4136960
20
+ bigdl/cpp/libs/ls-sycl-device.exe,sha256=66g1FZUlxqbPqsmobf4lGTbC0n56vc1KeDDh7iUynxU,3023872
21
+ bigdl/cpp/libs/main.exe,sha256=FD7OwDltJutIUZcCBGMWlcAsbKyW-EBbd1NFxGA6K2g,4258304
22
+ bigdl/cpp/libs/parallel.exe,sha256=fOriJ5s_mTqGWXUer7MDjjSGXy_aXbiEe3mbBf8_kS0,4159488
23
+ bigdl/cpp/libs/passkey.exe,sha256=MjodjP7pu5sXmNdxrr4g1ohaTHEOrACDxvj1MTLs3yg,3922944
24
+ bigdl/cpp/libs/perplexity.exe,sha256=bFQgvUKn1HUBA4UfOF6v4S1mGIvtdoMi-YuYpP66eP0,4195840
25
+ bigdl/cpp/libs/q8dot.exe,sha256=XdHPCdgsvaAcIDJV73JAGfO3AvWBUZn0jJrrWBEJI2o,2980864
26
+ bigdl/cpp/libs/quantize-stats.exe,sha256=Rq_24C9GH9Mm2EkP5qxHgf9BSFfI8j4QDp4YNgCqeCo,3865088
27
+ bigdl/cpp/libs/quantize.exe,sha256=HjmWwgX5NF_vI0GwB7f6XsdP4vfQHTCv6euI0JvpvkY,3416576
28
+ bigdl/cpp/libs/save-load-state.exe,sha256=6Mp2E0uMvjNGK0rmJoHPV_GRvvPJRAbLVNIpq8hBpqE,4052992
29
+ bigdl/cpp/libs/server.exe,sha256=NirsMcTHPFpuNadbeiltWzkWiJbMvHSrD8DCBusNwjo,5190656
30
+ bigdl/cpp/libs/simple.exe,sha256=S17cvsyxk_pE9v4w9m4eUM-xzXV6tpT585xxkJLC6hY,3905536
31
+ bigdl/cpp/libs/speculative.exe,sha256=Syq6TRY0UA0opOnJO2b0FJfAoNN4Q45poFXQCq1gKWQ,4168704
32
+ bigdl/cpp/libs/tokenize.exe,sha256=rod5NwiGTOgOu3HQ9fD4OMSU_V5DSVcEIovtlDkv-1Y,3853824
33
+ bigdl/cpp/libs/train-text-from-scratch.exe,sha256=AdfYxkHcSd2jwqgSM9oxm6PeSKpxqIR2FwURrI1H2l0,4001280
34
+ bigdl/cpp/libs/vdot.exe,sha256=02sZmjwDtb9pf1APf55rQuhzYcvzPxn-M83umdlHiQA,2982912
35
+ bigdl_core_cpp-2.5.0b20240317.data/scripts/init-llama-cpp.bat,sha256=d2hDRiKnJx-MqDpcv2-dMVJkDVzake2YjpF7tcioCxM,397
36
+ bigdl_core_cpp-2.5.0b20240317.data/scripts/init-llama-cpp.ps1,sha256=JFOylLxO4MKpllHhdbPuJ1xHi9azxDpzdJns8JtZpkU,501
37
+ bigdl_core_cpp-2.5.0b20240317.dist-info/METADATA,sha256=KB3ZxhK451Xir9G1WSMYj67n9p1nEGJgA80RReIniSA,658
38
+ bigdl_core_cpp-2.5.0b20240317.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
39
+ bigdl_core_cpp-2.5.0b20240317.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
40
+ bigdl_core_cpp-2.5.0b20240317.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-win_amd64
5
+