bigdl-core-cpp 2.5.0b20240702__py3-none-manylinux2010_x86_64.whl → 2.5.0b20240704__py3-none-manylinux2010_x86_64.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/convert-hf-to-gguf.py +4 -6
- bigdl/cpp/libs/baby-llama +0 -0
- bigdl/cpp/libs/batched +0 -0
- bigdl/cpp/libs/batched-bench +0 -0
- bigdl/cpp/libs/benchmark +0 -0
- bigdl/cpp/libs/embedding +0 -0
- bigdl/cpp/libs/export-lora +0 -0
- bigdl/cpp/libs/finetune +0 -0
- bigdl/cpp/libs/gguf +0 -0
- bigdl/cpp/libs/gritlm +0 -0
- bigdl/cpp/libs/imatrix +0 -0
- bigdl/cpp/libs/infill +0 -0
- bigdl/cpp/libs/llama-bench +0 -0
- bigdl/cpp/libs/llava-cli +0 -0
- bigdl/cpp/libs/lookahead +0 -0
- bigdl/cpp/libs/lookup +0 -0
- bigdl/cpp/libs/ls-sycl-device +0 -0
- bigdl/cpp/libs/main +0 -0
- bigdl/cpp/libs/ollama +0 -0
- bigdl/cpp/libs/parallel +0 -0
- bigdl/cpp/libs/perplexity +0 -0
- bigdl/cpp/libs/quantize +0 -0
- bigdl/cpp/libs/quantize-stats +0 -0
- bigdl/cpp/libs/save-load-state +0 -0
- bigdl/cpp/libs/server +0 -0
- bigdl/cpp/libs/simple +0 -0
- bigdl/cpp/libs/speculative +0 -0
- bigdl/cpp/libs/tokenize +0 -0
- bigdl/cpp/libs/train-text-from-scratch +0 -0
- {bigdl_core_cpp-2.5.0b20240702.dist-info → bigdl_core_cpp-2.5.0b20240704.dist-info}/METADATA +1 -1
- bigdl_core_cpp-2.5.0b20240704.dist-info/RECORD +50 -0
- bigdl_core_cpp-2.5.0b20240702.dist-info/RECORD +0 -50
- {bigdl_core_cpp-2.5.0b20240702.data → bigdl_core_cpp-2.5.0b20240704.data}/scripts/init-llama-cpp +0 -0
- {bigdl_core_cpp-2.5.0b20240702.data → bigdl_core_cpp-2.5.0b20240704.data}/scripts/init-ollama +0 -0
- {bigdl_core_cpp-2.5.0b20240702.dist-info → bigdl_core_cpp-2.5.0b20240704.dist-info}/WHEEL +0 -0
- {bigdl_core_cpp-2.5.0b20240702.dist-info → bigdl_core_cpp-2.5.0b20240704.dist-info}/top_level.txt +0 -0
bigdl/cpp/convert-hf-to-gguf.py
CHANGED
@@ -1610,13 +1610,11 @@ class MiniCPMModel(Model):
|
|
1610
1610
|
|
1611
1611
|
def _reverse_hf_permute(self, weights: Tensor, n_head: int, n_kv_head: int | None = None) -> Tensor:
|
1612
1612
|
if n_kv_head is not None and n_head != n_kv_head:
|
1613
|
-
n_head
|
1613
|
+
n_head = n_kv_head
|
1614
1614
|
|
1615
|
-
return (
|
1616
|
-
|
1617
|
-
|
1618
|
-
.reshape(weights.shape)
|
1619
|
-
)
|
1615
|
+
return (weights.reshape(n_head, 2, weights.shape[0] // n_head // 2, *weights.shape[1:])
|
1616
|
+
.swapaxes(1, 2)
|
1617
|
+
.reshape(weights.shape))
|
1620
1618
|
|
1621
1619
|
def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iterable[tuple[str, Tensor]]:
|
1622
1620
|
del bid # unused
|
bigdl/cpp/libs/baby-llama
CHANGED
Binary file
|
bigdl/cpp/libs/batched
CHANGED
Binary file
|
bigdl/cpp/libs/batched-bench
CHANGED
Binary file
|
bigdl/cpp/libs/benchmark
CHANGED
Binary file
|
bigdl/cpp/libs/embedding
CHANGED
Binary file
|
bigdl/cpp/libs/export-lora
CHANGED
Binary file
|
bigdl/cpp/libs/finetune
CHANGED
Binary file
|
bigdl/cpp/libs/gguf
CHANGED
Binary file
|
bigdl/cpp/libs/gritlm
CHANGED
Binary file
|
bigdl/cpp/libs/imatrix
CHANGED
Binary file
|
bigdl/cpp/libs/infill
CHANGED
Binary file
|
bigdl/cpp/libs/llama-bench
CHANGED
Binary file
|
bigdl/cpp/libs/llava-cli
CHANGED
Binary file
|
bigdl/cpp/libs/lookahead
CHANGED
Binary file
|
bigdl/cpp/libs/lookup
CHANGED
Binary file
|
bigdl/cpp/libs/ls-sycl-device
CHANGED
Binary file
|
bigdl/cpp/libs/main
CHANGED
Binary file
|
bigdl/cpp/libs/ollama
CHANGED
Binary file
|
bigdl/cpp/libs/parallel
CHANGED
Binary file
|
bigdl/cpp/libs/perplexity
CHANGED
Binary file
|
bigdl/cpp/libs/quantize
CHANGED
Binary file
|
bigdl/cpp/libs/quantize-stats
CHANGED
Binary file
|
bigdl/cpp/libs/save-load-state
CHANGED
Binary file
|
bigdl/cpp/libs/server
CHANGED
Binary file
|
bigdl/cpp/libs/simple
CHANGED
Binary file
|
bigdl/cpp/libs/speculative
CHANGED
Binary file
|
bigdl/cpp/libs/tokenize
CHANGED
Binary file
|
Binary file
|
@@ -0,0 +1,50 @@
|
|
1
|
+
bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
bigdl/cpp/convert-hf-to-gguf.py,sha256=VbKd1bvq0MX12aIv27-tySszWIHw1Mj4et8I_XsLOFM,126986
|
3
|
+
bigdl/cpp/convert.py,sha256=XMMcpfWHwEAAWzwLXe9mmJTU7cMvcyw8g2BFctfZnvI,69417
|
4
|
+
bigdl/cpp/cli/init-llama-cpp,sha256=qpIwMQc2Vb11fmovXFJKefp5iD1tQMfL8Ma7Y3Ebguk,400
|
5
|
+
bigdl/cpp/cli/init-ollama,sha256=5eg4DsWg87iysFRh7leawr6H47F_sHydwL5we6fUG6o,193
|
6
|
+
bigdl/cpp/gguf-py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
bigdl/cpp/gguf-py/gguf/__init__.py,sha256=Xr2OoA3yQ8Z5GcbGcppNQ4Tw9zKMzPxTD0iI6qm-SRc,172
|
8
|
+
bigdl/cpp/gguf-py/gguf/constants.py,sha256=WKonDaR_T0NlibX3p3mE4aDj0ohTjLVyGDnWdMHvOME,34361
|
9
|
+
bigdl/cpp/gguf-py/gguf/gguf.py,sha256=8MDu7a0JEXhLUv_tjhYqDrWubVNc41cFvBYZbkZZenI,478
|
10
|
+
bigdl/cpp/gguf-py/gguf/gguf_reader.py,sha256=ReWAZwL589DW_bKWix0LK2qaDWOj0r4jXPKBymoJ-B4,12028
|
11
|
+
bigdl/cpp/gguf-py/gguf/gguf_writer.py,sha256=kr3biGPsSq3nBEQ4uDIrKJ9zfYOdIRMLOQI4fS6lcpk,20945
|
12
|
+
bigdl/cpp/gguf-py/gguf/lazy.py,sha256=H7YCO73KFK_s1EZtO8-Cj98NJa7JaNPDaD6k1KeKBuA,9788
|
13
|
+
bigdl/cpp/gguf-py/gguf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
+
bigdl/cpp/gguf-py/gguf/quants.py,sha256=dI6JsSpaSzfdz7OwfqH1kvK98M_Ax8d6NMNYY5pyoQM,4354
|
15
|
+
bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=WmyVE4nXKyQbfX3_qW4vyFWYX-5xgK_FL7V9oKIf8lY,23425
|
16
|
+
bigdl/cpp/gguf-py/gguf/vocab.py,sha256=vsRrPQ6RafirhBmMp9h3YGZh_tqEjeg7S2hiLvMv7Ys,6847
|
17
|
+
bigdl/cpp/libs/baby-llama,sha256=J_-QN8sqCgMCbhGhkjGmdmtBpn_5lq_mpZVezKg7bWg,10688728
|
18
|
+
bigdl/cpp/libs/batched,sha256=VLJoHFMmVrm26p_ZRepbGjQdVfhpZ0lq7gTS-tNfP_Y,10613304
|
19
|
+
bigdl/cpp/libs/batched-bench,sha256=M9wLWoASAuYpvLj3GHHYZSpAk8Uo-kbWwvfUJljycdk,10617560
|
20
|
+
bigdl/cpp/libs/benchmark,sha256=QZ-KiTlk2Kqor2nIsDiMibBsQyuBWsd1sw5-kQZUF3s,1456400
|
21
|
+
bigdl/cpp/libs/embedding,sha256=VtUg7xnCRZg2MdOZUN-AFpeVI3K33rdSNV5kIFw-Dbc,10613440
|
22
|
+
bigdl/cpp/libs/export-lora,sha256=_Qxa69dQwJBDF5Kt3bGwhvBd311_WjqIMKrfaM9HQxU,8897656
|
23
|
+
bigdl/cpp/libs/finetune,sha256=x9DELdhnHYtxXw4LUvKf9C6GPP0zXUjT8OVL4ii4O1c,10729952
|
24
|
+
bigdl/cpp/libs/gguf,sha256=6expzxrd61tSy6LgmU2THIKac1lQpCoBFtLztFANQfA,8888816
|
25
|
+
bigdl/cpp/libs/gritlm,sha256=cJOhGOqU_Ji8IF8Ke0P3McGdSiFkH1h7ai0Ym3BY_Z8,10617832
|
26
|
+
bigdl/cpp/libs/imatrix,sha256=4L0-qhm6Doac5HmwrKPy0uXmqrl0l6zqrusjTHFCvDg,10641304
|
27
|
+
bigdl/cpp/libs/infill,sha256=172_rQODSlPoYcnXREcB6JQDttb3KDPHv3IumnY8yKA,10656024
|
28
|
+
bigdl/cpp/libs/llama-bench,sha256=VnERZOiivuM7Cu7lJ99xh0HkX2nEJidbNdHKYNpULmg,10706880
|
29
|
+
bigdl/cpp/libs/llava-cli,sha256=7bhJ2CMPnuu_TlHtt5lTcDuyeLghUT8pzEIo7LXqu4k,10931544
|
30
|
+
bigdl/cpp/libs/lookahead,sha256=YYe96yqiafbwstSWTnKTmKqfCW7XnLrljG6ylgbT6uY,10621672
|
31
|
+
bigdl/cpp/libs/lookup,sha256=Pd906lt8o4XcGx_fsu_A7JnuAuaNCC_OrSl5QkWSuiw,10645544
|
32
|
+
bigdl/cpp/libs/ls-sycl-device,sha256=on1t7fe4KbF6ekmOv5LA08eB5Dv2P07vdWMNoHme75k,8880464
|
33
|
+
bigdl/cpp/libs/main,sha256=lkSRyjTDphGxIF6MdKLChp91zEALPoxXrs9rST2cotY,10672824
|
34
|
+
bigdl/cpp/libs/ollama,sha256=UuQC2DoiAVwUrS4Se9hKLResAv2zIqtIbzzqX-W4yIE,44638912
|
35
|
+
bigdl/cpp/libs/parallel,sha256=kR_rzyR2jvUZotPhAjRwgC5_UHuVbPHQONDn-qOACkI,10630024
|
36
|
+
bigdl/cpp/libs/perplexity,sha256=wo3FR34Q570s0Yu9F-48YHLOuxdYT1rBiqy_B1PKnPo,10714384
|
37
|
+
bigdl/cpp/libs/quantize,sha256=kPLdw9IkTNWJAm578_Trf1fnoidNgtFuupN79GsRSLI,10639624
|
38
|
+
bigdl/cpp/libs/quantize-stats,sha256=483kxnZEB2on0QOM0fUOzrZ31yekZlsB8RegVNlVAjA,10153704
|
39
|
+
bigdl/cpp/libs/save-load-state,sha256=_1YwMDWGVIEYmWOV7Y7yWooEBtBuvC26nAwcPAFEeLU,10613576
|
40
|
+
bigdl/cpp/libs/server,sha256=zUknIQlEHoH3eVIV-MhEbqnUWqy697Qhj3IH_KMNbBE,11470792
|
41
|
+
bigdl/cpp/libs/simple,sha256=8YNgon5KwaUWY8rD7c1ZBdd_IZO-PRLul94Sgis__ME,10613304
|
42
|
+
bigdl/cpp/libs/speculative,sha256=cmhVGkumlOI3GUG0P_WEPHshnYJbSJOlKaISnfg40O4,10647688
|
43
|
+
bigdl/cpp/libs/tokenize,sha256=2nBCF2yoqx7nGJiVQfRda5fRk7dUA6T3uWhpbgnQ34Y,10613488
|
44
|
+
bigdl/cpp/libs/train-text-from-scratch,sha256=ltq6sJa2-uAVblFJzReIfD4ecIj3HscMcfMrGxp0Dl0,10713104
|
45
|
+
bigdl_core_cpp-2.5.0b20240704.data/scripts/init-llama-cpp,sha256=qpIwMQc2Vb11fmovXFJKefp5iD1tQMfL8Ma7Y3Ebguk,400
|
46
|
+
bigdl_core_cpp-2.5.0b20240704.data/scripts/init-ollama,sha256=5eg4DsWg87iysFRh7leawr6H47F_sHydwL5we6fUG6o,193
|
47
|
+
bigdl_core_cpp-2.5.0b20240704.dist-info/METADATA,sha256=KV4452MTXjH7-EDyCOAa_Vn-TzvjRF03XxN8l0NmsUs,650
|
48
|
+
bigdl_core_cpp-2.5.0b20240704.dist-info/WHEEL,sha256=GHycjhgos9e5ojAyWZiFxz9HM8k84hAls6WqrsH8row,109
|
49
|
+
bigdl_core_cpp-2.5.0b20240704.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
|
50
|
+
bigdl_core_cpp-2.5.0b20240704.dist-info/RECORD,,
|
@@ -1,50 +0,0 @@
|
|
1
|
-
bigdl/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
bigdl/cpp/convert-hf-to-gguf.py,sha256=UUIkBBSF75Uo5OiVwXVAuiLx3WXwZlXXL6tYgZ7IQhk,127002
|
3
|
-
bigdl/cpp/convert.py,sha256=XMMcpfWHwEAAWzwLXe9mmJTU7cMvcyw8g2BFctfZnvI,69417
|
4
|
-
bigdl/cpp/cli/init-llama-cpp,sha256=qpIwMQc2Vb11fmovXFJKefp5iD1tQMfL8Ma7Y3Ebguk,400
|
5
|
-
bigdl/cpp/cli/init-ollama,sha256=5eg4DsWg87iysFRh7leawr6H47F_sHydwL5we6fUG6o,193
|
6
|
-
bigdl/cpp/gguf-py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
bigdl/cpp/gguf-py/gguf/__init__.py,sha256=Xr2OoA3yQ8Z5GcbGcppNQ4Tw9zKMzPxTD0iI6qm-SRc,172
|
8
|
-
bigdl/cpp/gguf-py/gguf/constants.py,sha256=WKonDaR_T0NlibX3p3mE4aDj0ohTjLVyGDnWdMHvOME,34361
|
9
|
-
bigdl/cpp/gguf-py/gguf/gguf.py,sha256=8MDu7a0JEXhLUv_tjhYqDrWubVNc41cFvBYZbkZZenI,478
|
10
|
-
bigdl/cpp/gguf-py/gguf/gguf_reader.py,sha256=ReWAZwL589DW_bKWix0LK2qaDWOj0r4jXPKBymoJ-B4,12028
|
11
|
-
bigdl/cpp/gguf-py/gguf/gguf_writer.py,sha256=kr3biGPsSq3nBEQ4uDIrKJ9zfYOdIRMLOQI4fS6lcpk,20945
|
12
|
-
bigdl/cpp/gguf-py/gguf/lazy.py,sha256=H7YCO73KFK_s1EZtO8-Cj98NJa7JaNPDaD6k1KeKBuA,9788
|
13
|
-
bigdl/cpp/gguf-py/gguf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
bigdl/cpp/gguf-py/gguf/quants.py,sha256=dI6JsSpaSzfdz7OwfqH1kvK98M_Ax8d6NMNYY5pyoQM,4354
|
15
|
-
bigdl/cpp/gguf-py/gguf/tensor_mapping.py,sha256=WmyVE4nXKyQbfX3_qW4vyFWYX-5xgK_FL7V9oKIf8lY,23425
|
16
|
-
bigdl/cpp/gguf-py/gguf/vocab.py,sha256=vsRrPQ6RafirhBmMp9h3YGZh_tqEjeg7S2hiLvMv7Ys,6847
|
17
|
-
bigdl/cpp/libs/baby-llama,sha256=yIHp78KcUEgTgb3LQYxe42-qsU4QBblKNyaYa77GA9w,10688728
|
18
|
-
bigdl/cpp/libs/batched,sha256=MWt_auZG-viMO2CKaLGuFFMC2f8p7FXVWFi1CVMCn3M,10613304
|
19
|
-
bigdl/cpp/libs/batched-bench,sha256=VrMwXKnaIlTgUUTJiIbEfsHUm_EX3-sdN3fphLKSV8w,10617560
|
20
|
-
bigdl/cpp/libs/benchmark,sha256=GtBt_uh0RZr1HCBm1LoMHyD-TlC6MGylJ_etHi5D24s,1456400
|
21
|
-
bigdl/cpp/libs/embedding,sha256=1uE7iVpSPS1PwGgdKB0yvR3J_dlkpvgm7Xo3GJyRdjk,10613440
|
22
|
-
bigdl/cpp/libs/export-lora,sha256=PYWPRXhWSMon2lj9jsuYzW94tnwAiH8weBVhsacfhkQ,8897656
|
23
|
-
bigdl/cpp/libs/finetune,sha256=e_n4dVQY0M0l9bqCRsUUxNlJfTFzUkF-4U1rYCP9pUw,10729952
|
24
|
-
bigdl/cpp/libs/gguf,sha256=Bl0zIUwYxSIH30nTnExU1oQlvQsowMMLZvltzf64z9U,8888816
|
25
|
-
bigdl/cpp/libs/gritlm,sha256=Oet9pkgBirCLy6R-AwV5rSVo5t6MSRpJO6udNMFWKyg,10617832
|
26
|
-
bigdl/cpp/libs/imatrix,sha256=21pgsFqTzdgOyYlmB-Melsh5JhAB7yub_3wQBp0pumQ,10641304
|
27
|
-
bigdl/cpp/libs/infill,sha256=CNRCXtJthdrw-LWoL5vm9QypzAZyxOC0VH4WBDLWRQ0,10651928
|
28
|
-
bigdl/cpp/libs/llama-bench,sha256=i0iu87xk9wzxrRWKkBHUIp85Pb9Bpk1UEUweTD8ziYE,10706880
|
29
|
-
bigdl/cpp/libs/llava-cli,sha256=GDI1mMWhebja9KNO7W7l5hBit0TcFtZCwpb-KQ2qwYI,10931544
|
30
|
-
bigdl/cpp/libs/lookahead,sha256=pZm9MWCjRYwR5Mjz3aV3-PoTgBgDj2mkOH53vfTn4xw,10621672
|
31
|
-
bigdl/cpp/libs/lookup,sha256=0P642hrap2I57e0nQVTam2mDMq9OYWYeNCbsIPdiAu4,10645544
|
32
|
-
bigdl/cpp/libs/ls-sycl-device,sha256=WWdViq6vnERg4L7SLBdw300Uvh1e0HSzInIASdDEoG4,8880464
|
33
|
-
bigdl/cpp/libs/main,sha256=9Xu6VyuMm0HVVqAj6S8mzZSAxDQAg7uizJC-Vohg_jc,10672824
|
34
|
-
bigdl/cpp/libs/ollama,sha256=SKeZshDfGCQPpbclOHZnb0u0JwepidnTAWjWSnBZCzI,44638920
|
35
|
-
bigdl/cpp/libs/parallel,sha256=u_5B60jC5yQUC3EB26RwoxYULOUMFUz59ApLjyloxB8,10630024
|
36
|
-
bigdl/cpp/libs/perplexity,sha256=4psfQMIN93SuV4gvFI6IT9o0-CvNu8PPANuISUA9wGU,10714384
|
37
|
-
bigdl/cpp/libs/quantize,sha256=hgVZt6DeBblmjPkiQut8IOoiT1dj45CwqSnfx4Krkuo,10639624
|
38
|
-
bigdl/cpp/libs/quantize-stats,sha256=BJ-NdDmr5Yz4egzUEzKoAiZe-P1XpldCQMd2QBliVMY,10153704
|
39
|
-
bigdl/cpp/libs/save-load-state,sha256=U9z1zfO1NW0gVHF9Qc1va4LdHD28Vzy-1ygbqM1BtZg,10613576
|
40
|
-
bigdl/cpp/libs/server,sha256=rC96ZnF8dWbu_w6Wr6hw_2c7SBikI7t5aq2pBIjTn1A,11470792
|
41
|
-
bigdl/cpp/libs/simple,sha256=jN7LA8wIy4Gd-coyeMXUvYyKHnErcM7VurYzNfizkkE,10609208
|
42
|
-
bigdl/cpp/libs/speculative,sha256=7DCo9bOoryGTI4Y8d_t-ztKwNOwODGeA153khNPc9nY,10647688
|
43
|
-
bigdl/cpp/libs/tokenize,sha256=Xh0Z3AqzWQ6Y_rqJiM0ppEVTUO1tDVIVYdQZmlRoFCk,10613488
|
44
|
-
bigdl/cpp/libs/train-text-from-scratch,sha256=Qv6H8aRyXTlL4aAz0tLDg8ncBjoimoiHROZaPDZF0oU,10713104
|
45
|
-
bigdl_core_cpp-2.5.0b20240702.data/scripts/init-llama-cpp,sha256=qpIwMQc2Vb11fmovXFJKefp5iD1tQMfL8Ma7Y3Ebguk,400
|
46
|
-
bigdl_core_cpp-2.5.0b20240702.data/scripts/init-ollama,sha256=5eg4DsWg87iysFRh7leawr6H47F_sHydwL5we6fUG6o,193
|
47
|
-
bigdl_core_cpp-2.5.0b20240702.dist-info/METADATA,sha256=AbZ65qzI1nJGJgLeJvIC4Yqo1CoZ2UvcUBkPryuP2ZA,650
|
48
|
-
bigdl_core_cpp-2.5.0b20240702.dist-info/WHEEL,sha256=GHycjhgos9e5ojAyWZiFxz9HM8k84hAls6WqrsH8row,109
|
49
|
-
bigdl_core_cpp-2.5.0b20240702.dist-info/top_level.txt,sha256=iGuLfZARD_qANcIMfy0tbbrC3EtCg6BSiH8icc3dLWs,6
|
50
|
-
bigdl_core_cpp-2.5.0b20240702.dist-info/RECORD,,
|
{bigdl_core_cpp-2.5.0b20240702.data → bigdl_core_cpp-2.5.0b20240704.data}/scripts/init-llama-cpp
RENAMED
File without changes
|
{bigdl_core_cpp-2.5.0b20240702.data → bigdl_core_cpp-2.5.0b20240704.data}/scripts/init-ollama
RENAMED
File without changes
|
File without changes
|
{bigdl_core_cpp-2.5.0b20240702.dist-info → bigdl_core_cpp-2.5.0b20240704.dist-info}/top_level.txt
RENAMED
File without changes
|