kiwi-array-cpu 0.2.47__py3-none-macosx_14_0_arm64.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.
@@ -0,0 +1,25 @@
1
+ from __future__ import annotations
2
+
3
+ from pathlib import Path
4
+
5
+ __version__ = "0.2.47"
6
+
7
+
8
+ def _package_root() -> Path:
9
+ return Path(__file__).resolve().parent
10
+
11
+
12
+ def runtime_descriptor() -> dict[str, object]:
13
+ root = _package_root()
14
+ return {
15
+ "name": "cpu",
16
+ "priority": 50,
17
+ "backend": "mlx",
18
+ "accelerator": "cpu",
19
+ "bin_dir": str(root / "bin"),
20
+ "native_dir": str(root / "native"),
21
+ "lib_dir": str(root / "lib"),
22
+ }
23
+
24
+
25
+ __all__ = ["__version__", "runtime_descriptor"]
Binary file
Binary file
Binary file
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: kiwi-array-cpu
3
+ Version: 0.2.47
4
+ Summary: MLX CPU native runtime payload for Kiwi Array.
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+
8
+ # kiwi-array-cpu
9
+
10
+ `kiwi-array-cpu` carries the MLX CPU/OpenBLAS native payload for `kiwi-array`,
11
+ including the real `kiwi` CLI, `libkiwi_bridge`, DuckDB, and MLX runtime
12
+ libraries.
@@ -0,0 +1,10 @@
1
+ kiwi_array_cpu/__init__.py,sha256=2uxnJ81I0TbDe02ENhnmMiETTRINXKRreH65_z34cxk,527
2
+ kiwi_array_cpu/bin/kiwi,sha256=IIvFHDyJMH56fuoltByVzSigPk-FDlvRobQbua-NvHE,2588200
3
+ kiwi_array_cpu/lib/libduckdb.dylib,sha256=3VJRivlh7AQRPQjLuLFpXrX5ckTvWlT76TvOa_yd8A8,112141664
4
+ kiwi_array_cpu/lib/libmlx.dylib,sha256=1t-PJYl9zm0BcsX2DQ0w7GPxcZ-ubXh7O-7BfjsH5Ao,20139984
5
+ kiwi_array_cpu/native/libkiwi_bridge.dylib,sha256=_asaZzrRtZxGq--SCdEfExyuqgZSdi3PLDjdWktcRac,2618776
6
+ kiwi_array_cpu-0.2.47.dist-info/METADATA,sha256=OfgsTm2KsCP33AX72EDWRwNIzJWfpZyeZOjtJCaRASg,361
7
+ kiwi_array_cpu-0.2.47.dist-info/WHEEL,sha256=IjHG6Sw94rMrTtb4jpo2tERipQ18kULC4hOv7U1u_9I,106
8
+ kiwi_array_cpu-0.2.47.dist-info/entry_points.txt,sha256=dPTNUrRza40QMDc_Ze_BGkBKAFscBoozRg-ykZm-cjA,62
9
+ kiwi_array_cpu-0.2.47.dist-info/top_level.txt,sha256=TeKyOkXcC1XqSDGwVBjCOgshIlpQ934VkpgDmXF9t3g,15
10
+ kiwi_array_cpu-0.2.47.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-macosx_14_0_arm64
5
+
@@ -0,0 +1,2 @@
1
+ [kiwi_array.runtimes]
2
+ cpu = kiwi_array_cpu:runtime_descriptor
@@ -0,0 +1 @@
1
+ kiwi_array_cpu