xoscar 0.7.10__cp311-cp311-macosx_11_0_arm64.whl → 0.7.11__cp311-cp311-macosx_11_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.
Potentially problematic release.
This version of xoscar might be problematic. Click here for more details.
- xoscar/_utils.cpython-311-darwin.so +0 -0
- xoscar/backends/message.cpython-311-darwin.so +0 -0
- xoscar/context.cpython-311-darwin.so +0 -0
- xoscar/core.cpython-311-darwin.so +0 -0
- xoscar/serialization/core.cpython-311-darwin.so +0 -0
- xoscar/serialization/mlx.py +11 -9
- {xoscar-0.7.10.dist-info → xoscar-0.7.11.dist-info}/METADATA +1 -1
- {xoscar-0.7.10.dist-info → xoscar-0.7.11.dist-info}/RECORD +10 -10
- {xoscar-0.7.10.dist-info → xoscar-0.7.11.dist-info}/WHEEL +0 -0
- {xoscar-0.7.10.dist-info → xoscar-0.7.11.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
xoscar/serialization/mlx.py
CHANGED
|
@@ -40,25 +40,27 @@ dtype_map = {
|
|
|
40
40
|
class MLXSerislizer(Serializer):
|
|
41
41
|
@buffered
|
|
42
42
|
def serial(self, obj: "mx.array", context: dict): # type: ignore
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
43
|
+
ravel_obj = obj.reshape(-1).view(mx.uint8)
|
|
44
|
+
mv = memoryview(ravel_obj)
|
|
45
|
+
header = dict(
|
|
46
|
+
shape=obj.shape, format=mv.format, dtype=str(obj.dtype).rsplit(".", 1)[-1]
|
|
47
|
+
)
|
|
48
|
+
if not mv.c_contiguous:
|
|
49
|
+
# NOTE: we only consider c contiguous here,
|
|
50
|
+
# MLX has no way to create f contiguous arrays.
|
|
48
51
|
mv = memoryview(bytes(mv))
|
|
49
52
|
return (header,), [mv], True
|
|
50
53
|
|
|
51
54
|
def deserial(self, serialized: tuple, context: dict, subs: List[Any]):
|
|
52
55
|
header = serialized[0]
|
|
53
|
-
shape, format = header["shape"], header["format"]
|
|
56
|
+
shape, format, dtype = header["shape"], header["format"], header["dtype"]
|
|
54
57
|
mv = memoryview(subs[0])
|
|
55
58
|
if mv.format != format:
|
|
56
59
|
dtype = dtype_map.get(format, np.uint8)
|
|
57
60
|
np_arr = np.frombuffer(mv, dtype=dtype).reshape(shape) # parse
|
|
58
61
|
mv = memoryview(np_arr) # recreate memoryview
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
return mx.array(mv)
|
|
62
|
+
ravel_array = mx.array(mv)
|
|
63
|
+
return ravel_array.view(getattr(mx, dtype)).reshape(shape)
|
|
62
64
|
|
|
63
65
|
|
|
64
66
|
if mx is not None:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
xoscar-0.7.
|
|
2
|
-
xoscar-0.7.
|
|
3
|
-
xoscar-0.7.
|
|
4
|
-
xoscar-0.7.
|
|
1
|
+
xoscar-0.7.11.dist-info/RECORD,,
|
|
2
|
+
xoscar-0.7.11.dist-info/WHEEL,sha256=1Yl4xfCXx_BC0nXnlbd5xfzR2RyoNx_gSIEdv2OLRuM,137
|
|
3
|
+
xoscar-0.7.11.dist-info/top_level.txt,sha256=vYlqqY4Nys8Thm1hePIuUv8eQePdULVWMmt7lXtX_ZA,21
|
|
4
|
+
xoscar-0.7.11.dist-info/METADATA,sha256=PDSZhxwM8g2RzmkuPLu6aynwy5WrFKV1jyv8XVkUY_4,9135
|
|
5
5
|
xoscar/_utils.pyx,sha256=frgVQ5xGp92jBKc4PsPmjOlVsXlKeHWtTOAMfHmBaII,7380
|
|
6
|
-
xoscar/_utils.cpython-311-darwin.so,sha256=
|
|
6
|
+
xoscar/_utils.cpython-311-darwin.so,sha256=fFwnPg9jX9DDEN1b3xhaDo35T4JUFkszN0NnJlXv4IU,170672
|
|
7
7
|
xoscar/backend.py,sha256=is436OPkZfSpQXaoqTRVta5eoye_pp45RFgCstAk2hU,1850
|
|
8
8
|
xoscar/core.pxd,sha256=I_C2ka7XryyGnnAVXUVm8xfS1gtIrCs6X-9rswgOcUU,1317
|
|
9
9
|
xoscar/_version.py,sha256=ClSPrUjgGRGHIkVMQV9XQnkQ-n0akJMnq_rh819nqFE,23719
|
|
@@ -14,11 +14,11 @@ xoscar/constants.py,sha256=QHHSREw6uWBBjQDCFqlNfTvBZgniJPGy42KSIsR8Fqw,787
|
|
|
14
14
|
xoscar/__init__.py,sha256=sy7Wtn2EuQZI0I4Az_MfsBVZm4G0DRj46qRyExgmnJk,1622
|
|
15
15
|
xoscar/api.py,sha256=zxNqOjGiTIKuAip9WJ0LOoM7yevD6P5rb-sLynpZ2Zo,14648
|
|
16
16
|
xoscar/utils.py,sha256=MaKiW4Vphwhh8c0yoqN8G8hbJr1zXgpf49EdvmGc1ZU,16500
|
|
17
|
-
xoscar/context.cpython-311-darwin.so,sha256=
|
|
17
|
+
xoscar/context.cpython-311-darwin.so,sha256=E_xLJqSemB3musT0V35VzQRjERk7HubTFbZo9sQxwlI,213456
|
|
18
18
|
xoscar/debug.py,sha256=9Z8SgE2WaKYQcyDo-5-DxEJQ533v7kWjrvCd28pSx3E,5069
|
|
19
19
|
xoscar/libcpp.pxd,sha256=DJqBxLFOKL4iRr9Kale5UH3rbvPRD1x5bTSOPHFpz9I,1147
|
|
20
20
|
xoscar/context.pyx,sha256=8CdgPnWcE9eOp3N600WgDQ03MCi8P73eUOGcfV7Zksg,10942
|
|
21
|
-
xoscar/core.cpython-311-darwin.so,sha256=
|
|
21
|
+
xoscar/core.cpython-311-darwin.so,sha256=SUILonk8WjQHiMypnknxWLVphvRhfBeX-uwE8txCbds,413112
|
|
22
22
|
xoscar/errors.py,sha256=wBlQOKsXf0Fc4skN39tDie0YZT-VIAuLNRgoDl2pZcA,1241
|
|
23
23
|
xoscar/core.pyx,sha256=phN-yYV0A0QI8WFi2jCu0nc4CnShTepfDi0V7ZrLYPY,22092
|
|
24
24
|
xoscar/driver.py,sha256=498fowtJr6b3FE8FIOA_Tc1Vwx88nfZw7p0FxrML0h4,1372
|
|
@@ -46,10 +46,10 @@ xoscar/serialization/numpy.py,sha256=5Kem87CvpJmzUMp3QHk4WeHU30FoQWTJJP2SwIcaQG0
|
|
|
46
46
|
xoscar/serialization/cuda.py,sha256=iFUEnN4SiquBIhyieyOrfw3TnKnW-tU_vYgqOxO_DrA,3758
|
|
47
47
|
xoscar/serialization/scipy.py,sha256=yOEi0NB8cqQ6e2UnCZ1w006RsB7T725tIL-DM_hNcsU,2482
|
|
48
48
|
xoscar/serialization/aio.py,sha256=5DySPgDxU43ec7_5Ct44-Oqt7YNSJBfuf8VdQgQlChA,4731
|
|
49
|
-
xoscar/serialization/core.cpython-311-darwin.so,sha256=
|
|
49
|
+
xoscar/serialization/core.cpython-311-darwin.so,sha256=irIssXfqax08ODNBZKeSAdNDkTeZotttcjVEFMZGYrM,382808
|
|
50
50
|
xoscar/serialization/core.pyx,sha256=bjR-zXGm9qersk7kYPzpjpMIxDl_Auur4BCubRfKmfA,29626
|
|
51
|
-
xoscar/serialization/mlx.py,sha256=
|
|
52
|
-
xoscar/backends/message.cpython-311-darwin.so,sha256=
|
|
51
|
+
xoscar/serialization/mlx.py,sha256=tRu_7o6RizdRhbr88EasHrZtShimAsLy3pIEO-by29o,2118
|
|
52
|
+
xoscar/backends/message.cpython-311-darwin.so,sha256=kcuPWTWOCyW9kwZfeZtkrUXe9yOzojk6cCVre24zyg0,368656
|
|
53
53
|
xoscar/backends/config.py,sha256=4tZMiXAMMS8qQ4SX_LjONLtSQVfZTx3m-IK3EqbkYdk,5375
|
|
54
54
|
xoscar/backends/allocate_strategy.py,sha256=tC1Nbq2tJohahUwd-zoRYHEDX65wyuX8tmeY45uWj_w,4845
|
|
55
55
|
xoscar/backends/__init__.py,sha256=VHEBQcUWM5bj027W8EUf9PiJUAP7JoMrRw3Tsvy5ySw,643
|
|
File without changes
|
|
File without changes
|