xoscar 0.4.0__cp312-cp312-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.

Potentially problematic release.


This version of xoscar might be problematic. Click here for more details.

Files changed (83) hide show
  1. xoscar/__init__.py +60 -0
  2. xoscar/_utils.cp312-win_amd64.pyd +0 -0
  3. xoscar/_utils.pxd +36 -0
  4. xoscar/_utils.pyx +241 -0
  5. xoscar/_version.py +693 -0
  6. xoscar/aio/__init__.py +16 -0
  7. xoscar/aio/base.py +86 -0
  8. xoscar/aio/file.py +59 -0
  9. xoscar/aio/lru.py +228 -0
  10. xoscar/aio/parallelism.py +39 -0
  11. xoscar/api.py +493 -0
  12. xoscar/backend.py +67 -0
  13. xoscar/backends/__init__.py +14 -0
  14. xoscar/backends/allocate_strategy.py +160 -0
  15. xoscar/backends/communication/__init__.py +30 -0
  16. xoscar/backends/communication/base.py +315 -0
  17. xoscar/backends/communication/core.py +69 -0
  18. xoscar/backends/communication/dummy.py +242 -0
  19. xoscar/backends/communication/errors.py +20 -0
  20. xoscar/backends/communication/socket.py +414 -0
  21. xoscar/backends/communication/ucx.py +531 -0
  22. xoscar/backends/communication/utils.py +97 -0
  23. xoscar/backends/config.py +145 -0
  24. xoscar/backends/context.py +404 -0
  25. xoscar/backends/core.py +193 -0
  26. xoscar/backends/indigen/__init__.py +16 -0
  27. xoscar/backends/indigen/backend.py +51 -0
  28. xoscar/backends/indigen/driver.py +26 -0
  29. xoscar/backends/indigen/pool.py +469 -0
  30. xoscar/backends/message.cp312-win_amd64.pyd +0 -0
  31. xoscar/backends/message.pyi +239 -0
  32. xoscar/backends/message.pyx +599 -0
  33. xoscar/backends/pool.py +1596 -0
  34. xoscar/backends/router.py +207 -0
  35. xoscar/backends/test/__init__.py +16 -0
  36. xoscar/backends/test/backend.py +38 -0
  37. xoscar/backends/test/pool.py +208 -0
  38. xoscar/batch.py +256 -0
  39. xoscar/collective/__init__.py +27 -0
  40. xoscar/collective/common.py +102 -0
  41. xoscar/collective/core.py +737 -0
  42. xoscar/collective/process_group.py +687 -0
  43. xoscar/collective/utils.py +41 -0
  44. xoscar/collective/uv.dll +0 -0
  45. xoscar/collective/xoscar_pygloo.cp312-win_amd64.pyd +0 -0
  46. xoscar/collective/xoscar_pygloo.pyi +239 -0
  47. xoscar/constants.py +21 -0
  48. xoscar/context.cp312-win_amd64.pyd +0 -0
  49. xoscar/context.pxd +21 -0
  50. xoscar/context.pyx +368 -0
  51. xoscar/core.cp312-win_amd64.pyd +0 -0
  52. xoscar/core.pxd +50 -0
  53. xoscar/core.pyx +658 -0
  54. xoscar/debug.py +188 -0
  55. xoscar/driver.py +42 -0
  56. xoscar/errors.py +63 -0
  57. xoscar/libcpp.pxd +31 -0
  58. xoscar/metrics/__init__.py +21 -0
  59. xoscar/metrics/api.py +288 -0
  60. xoscar/metrics/backends/__init__.py +13 -0
  61. xoscar/metrics/backends/console/__init__.py +13 -0
  62. xoscar/metrics/backends/console/console_metric.py +82 -0
  63. xoscar/metrics/backends/metric.py +149 -0
  64. xoscar/metrics/backends/prometheus/__init__.py +13 -0
  65. xoscar/metrics/backends/prometheus/prometheus_metric.py +70 -0
  66. xoscar/nvutils.py +717 -0
  67. xoscar/profiling.py +260 -0
  68. xoscar/serialization/__init__.py +20 -0
  69. xoscar/serialization/aio.py +138 -0
  70. xoscar/serialization/core.cp312-win_amd64.pyd +0 -0
  71. xoscar/serialization/core.pxd +28 -0
  72. xoscar/serialization/core.pyi +57 -0
  73. xoscar/serialization/core.pyx +944 -0
  74. xoscar/serialization/cuda.py +111 -0
  75. xoscar/serialization/exception.py +48 -0
  76. xoscar/serialization/numpy.py +82 -0
  77. xoscar/serialization/pyfury.py +37 -0
  78. xoscar/serialization/scipy.py +72 -0
  79. xoscar/utils.py +517 -0
  80. xoscar-0.4.0.dist-info/METADATA +223 -0
  81. xoscar-0.4.0.dist-info/RECORD +83 -0
  82. xoscar-0.4.0.dist-info/WHEEL +5 -0
  83. xoscar-0.4.0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,223 @@
1
+ Metadata-Version: 2.1
2
+ Name: xoscar
3
+ Version: 0.4.0
4
+ Summary: Python actor framework for heterogeneous computing.
5
+ Home-page: http://github.com/xorbitsai/xoscar
6
+ Author: Qin Xuye
7
+ Author-email: qinxuye@xprobe.io
8
+ Maintainer: Qin Xuye
9
+ Maintainer-email: qinxuye@xprobe.io
10
+ License: Apache License 2.0
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: Implementation :: CPython
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: numpy>=1.14.0
22
+ Requires-Dist: pandas>=1.0.0
23
+ Requires-Dist: cloudpickle>=1.5.0
24
+ Requires-Dist: psutil>=5.9.0
25
+ Requires-Dist: tblib>=1.7.0
26
+ Requires-Dist: packaging
27
+ Requires-Dist: uvloop>=0.14.0; sys_platform != "win32"
28
+ Requires-Dist: scipy>=1.0.0; sys_platform != "win32" or python_version >= "3.10"
29
+ Requires-Dist: scipy<=1.9.1,>=1.0.0; sys_platform == "win32" and python_version < "3.10"
30
+ Provides-Extra: dev
31
+ Requires-Dist: cython>=0.29; extra == "dev"
32
+ Requires-Dist: pytest>=3.5.0; extra == "dev"
33
+ Requires-Dist: pytest-cov>=2.5.0; extra == "dev"
34
+ Requires-Dist: pytest-timeout>=1.2.0; extra == "dev"
35
+ Requires-Dist: pytest-forked>=1.0; extra == "dev"
36
+ Requires-Dist: pytest-asyncio>=0.14.0; extra == "dev"
37
+ Requires-Dist: ipython>=6.5.0; extra == "dev"
38
+ Requires-Dist: sphinx; extra == "dev"
39
+ Requires-Dist: pydata-sphinx-theme>=0.3.0; extra == "dev"
40
+ Requires-Dist: sphinx-intl>=0.9.9; extra == "dev"
41
+ Requires-Dist: flake8>=3.8.0; extra == "dev"
42
+ Requires-Dist: black; extra == "dev"
43
+ Provides-Extra: doc
44
+ Requires-Dist: ipython>=6.5.0; extra == "doc"
45
+ Requires-Dist: sphinx; extra == "doc"
46
+ Requires-Dist: pydata-sphinx-theme>=0.3.0; extra == "doc"
47
+ Requires-Dist: sphinx-intl>=0.9.9; extra == "doc"
48
+ Provides-Extra: extra
49
+ Requires-Dist: pyarrow>=5.0.0; extra == "extra"
50
+ Provides-Extra: kubernetes
51
+ Requires-Dist: kubernetes>=10.0.0; extra == "kubernetes"
52
+ Provides-Extra: ray
53
+ Requires-Dist: xoscar-ray>=0.0.1; extra == "ray"
54
+
55
+ <div align="center">
56
+ <img width="77%" alt="" src="https://raw.githubusercontent.com/xprobe-inc/xoscar/main/doc/source/_static/Xoscar.svg"><br>
57
+ </div>
58
+
59
+ # Python actor framework for heterogeneous computing.
60
+ [![PyPI Latest Release](https://img.shields.io/pypi/v/xoscar.svg?style=for-the-badge)](https://pypi.org/project/xoscar/)
61
+ [![Coverage](https://img.shields.io/codecov/c/github/xorbitsai/xoscar?style=for-the-badge)](https://codecov.io/gh/xorbitsai/xoscar)
62
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/xorbitsai/xoscar/python.yaml?branch=main&style=for-the-badge&label=GITHUB%20ACTIONS&logo=github)](https://actions-badge.atrox.dev/xorbitsai/xoscar/goto?ref=main)
63
+ [![License](https://img.shields.io/pypi/l/xoscar.svg?style=for-the-badge)](https://github.com/xorbitsai/xoscar/blob/main/LICENSE)
64
+
65
+ ## What is actor
66
+ Writing parallel and distributed programs is often challenging and requires a lot of time to deal with concurrency
67
+ issues. Actor model provides a high-level, scalable and robust abstraction for building distributed applications.
68
+ It provides several benefits:
69
+ - Scalability: Actors easily scale across nodes. The asynchronous, non-blocking nature of actors allows them to handle huge volumes of concurrent tasks efficiently.
70
+ - Concurrency: The actor model abstracts over concurrency, allowing developers to avoid raw threads and locks.
71
+ - Modularity: An actor system decomposes naturally into a collection of actors that can be understood independently. Actor logic is encapsulated within the actor itself.
72
+
73
+ ## Why Xoscar
74
+ Xoscar implements the actor model in Python and provides user-friendly APIs that offer significant benefits for building
75
+ applications on heterogeneous hardware:
76
+ - **Abstraction over low-level communication details**: Xoscar handles all communication between actors transparently,
77
+ whether on CPUs, GPUs, or across nodes. Developers focus on application logic rather than managing hardware resources
78
+ and optimizing data transfer.
79
+ - **Flexible actor models**: Xoscar supports both stateful and stateless actors. Stateful actors ensure thread safety for
80
+ concurrent systems while stateless actors can handle massive volumes of concurrent messages. Developers choose the
81
+ appropriate actor model for their needs.
82
+ - **Batch method**: Xoscar provides a batch interface to significantly improve call efficiency when an actor interface is
83
+ invoked a large number of times.
84
+ - **Advanced debugging support**: Xoscar can detect potential issues like deadlocks, long-running calls, and performance
85
+ bottlenecks that would otherwise be nearly impossible to troubleshoot in a heterogeneous environment.
86
+ - **Automated recovery**: If an actor fails for any reason, Xoscar will automatically restart it if you want. It can monitor
87
+ actors and restart them upon failure, enabling fault-tolerant systems.
88
+
89
+ ## Overview
90
+ ![architecture.png](doc/source/_static/architecture.png)
91
+ Xoscar allows you to create multiple actor pools on each worker node, typically binding an actor pool to a CPU core or
92
+ a GPU card. Xoscar provides allocation policies so that whenever an actor is created, it will be instantiated in the
93
+ appropriate pool based on the specified policy.
94
+
95
+ When actors communicate, Xoscar will choose the optimal communication mechanism based on which pools the actors
96
+ belong to. This allows Xoscar to optimize communication in heterogeneous environments with multiple processing
97
+ units and accelerators.
98
+
99
+ ## Where to get it
100
+
101
+ ### PyPI
102
+ Binary installers for the latest released version are available at the [Python
103
+ Package Index (PyPI)](https://pypi.org/project/xoscar).
104
+
105
+ ```shell
106
+ # PyPI
107
+ pip install xoscar
108
+ ```
109
+
110
+ ### Build from source
111
+ The source code is currently hosted on GitHub at: https://github.com/xorbitsai/xoscar .
112
+
113
+ Building from source requires that you have cmake and gcc installed on your system.
114
+
115
+ - cmake >= 3.11
116
+ - gcc >= 8
117
+
118
+ ```shell
119
+ # If you have never cloned xoscar before
120
+ git clone --recursive https://github.com/xorbitsai/xoscar.git
121
+ cd xoscar/python
122
+ pip install -e .
123
+
124
+ # If you have already cloned xoscar before
125
+ cd xoscar
126
+ git submodule init
127
+ git submodule update
128
+ cd python && pip install -e .
129
+ ```
130
+
131
+ ## APIs
132
+ Here are basic APIs for Xoscar.
133
+ #### Define an actor
134
+ ```python
135
+ import xoscar as xo
136
+
137
+ # stateful actor, for stateless actor, inherit from xo.StatelessActor
138
+ class MyActor(xo.Actor):
139
+ def __init__(self, *args, **kwargs):
140
+ pass
141
+
142
+ async def __post_create__(self):
143
+ # called after created
144
+ pass
145
+
146
+ async def __pre_destroy__(self):
147
+ # called before destroy
148
+ pass
149
+
150
+ def method_a(self, arg_1, arg_2, **kw_1): # user-defined function
151
+ pass
152
+
153
+ async def method_b(self, arg_1, arg_2, **kw_1): # user-defined async function
154
+ pass
155
+ ```
156
+
157
+ #### Create an actor
158
+ ```python
159
+ import xoscar as xo
160
+
161
+ actor_ref = await xo.create_actor(
162
+ MyActor, 1, 2, a=1, b=2,
163
+ address='<ip>:<port>', uid='UniqueActorName')
164
+ ```
165
+
166
+ #### Get an actor reference
167
+ ```python
168
+ import xoscar as xo
169
+
170
+ actor_ref = await xo.actor_ref(address, actor_id)
171
+ ```
172
+
173
+ #### Invoke a method
174
+ ```python
175
+ # send
176
+ await actor_ref.method_a.send(1, 2, a=1, b=2)
177
+ # equivalent to actor_ref.method_a.send
178
+ await actor_ref.method_a(1, 2, a=1, b=2)
179
+ # tell, it sends a message asynchronously and does not wait for a response.
180
+ await actor_ref.method_a.tell(1, 2, a=1, b=2)
181
+ ```
182
+ ### Batch method
183
+ Xoscar provides a set of APIs to write batch methods. You can simply add a `@extensible` decorator to your actor method
184
+ and create a batch version. All calls wrapped in a batch will be sent together, reducing possible RPC cost.
185
+ #### Define a batch method
186
+ ```python
187
+ import xoscar as xo
188
+
189
+ class ExampleActor(xo.Actor):
190
+ @xo.extensible
191
+ async def batch_method(self, a, b=None):
192
+ pass
193
+ ```
194
+ Xoscar also supports creating a batch version of the method:
195
+ ```python
196
+ class ExampleActor(xo.Actor):
197
+ @xo.extensible
198
+ async def batch_method(self, a, b=None):
199
+ raise NotImplementedError # this will redirect all requests to the batch version
200
+
201
+ @batch_method.batch
202
+ async def batch_method(self, args_list, kwargs_list):
203
+ results = []
204
+ for args, kwargs in zip(args_list, kwargs_list):
205
+ a, b = self.batch_method.bind(*args, **kwargs)
206
+ # process the request
207
+ results.append(result)
208
+ return results # return a list of results
209
+ ```
210
+ In a batch method, users can define how to more efficiently process a batch of requests.
211
+
212
+ #### Invoke a batch method
213
+ Calling batch methods is easy. You can use `<method_name>.delay` to make a batched call and use `<method_name>.batch` to send them:
214
+ ```python
215
+ ref = await xo.actor_ref(uid='ExampleActor', address='127.0.0.1:13425')
216
+ results = await ref.batch_method.batch(
217
+ ref.batch_method.delay(10, b=20),
218
+ ref.batch_method.delay(20),
219
+ )
220
+ ```
221
+
222
+ ## License
223
+ [Apache 2](LICENSE)
@@ -0,0 +1,83 @@
1
+ xoscar/__init__.py,sha256=dlwtB7dnDp5WME6CZVQY7d9lk1yJ9s___H5UxjGlAd4,1668
2
+ xoscar/_utils.cp312-win_amd64.pyd,sha256=2kxLAVJ246mrUsVhU36FWzRZXyooxOtTJ75sKWxJkxo,114688
3
+ xoscar/_utils.pxd,sha256=rlNbTg5lhXA-jCOLksqF4jhUlNn0xw2jx1HxdLa34pc,1193
4
+ xoscar/_utils.pyx,sha256=5Wvind3AQ3JaMK7Zv9SjhiPO6LEol2hW7_fMncn69go,7300
5
+ xoscar/_version.py,sha256=bsfCVAo_o9LkiP3AjPsP4SRRqhjuS0t4D1WGJPzbdls,24412
6
+ xoscar/api.py,sha256=B5oXv4vgMxMteh1YNaBmNFDrUFmYa_dCdzfaWwwZnCo,13820
7
+ xoscar/backend.py,sha256=8G5JwjoOT6Q2slb11eXNApxgcmvNQUCdQzkoIMDwLcQ,1917
8
+ xoscar/batch.py,sha256=Jk5BSpvMFAV9DrRy0a9tgPvIo_dt8cbJReZBL0cnOPc,8128
9
+ xoscar/constants.py,sha256=H9ntCahBz5nKO-A6rkrGKy4WB2kNaLZAytkDajKIXqM,780
10
+ xoscar/context.cp312-win_amd64.pyd,sha256=lGfqxf2_x_v-ymWwAlVHipPGKeR2QKgeuXFs9frhmls,159232
11
+ xoscar/context.pxd,sha256=6n6IAbmArSRq8EjcsbS6npW8xP1jI0qOoS1fF0oyj-o,746
12
+ xoscar/context.pyx,sha256=FOJVerGOvxe2USryXEQA0rpaFX_ScxISH6QWKUcahY8,11310
13
+ xoscar/core.cp312-win_amd64.pyd,sha256=fRLOesDn5KEUA185G24TLrUetGIfyv2MfneMbQ5cTik,329728
14
+ xoscar/core.pxd,sha256=dGv62H92PFG98SVILuF641kY-NWFEt1FYqqOX3WY5RQ,1330
15
+ xoscar/core.pyx,sha256=0YvJW2AHgymyfsAlPGvIFw65J5gTKO3PK2p1wl4VlJ0,22388
16
+ xoscar/debug.py,sha256=hrmxIH6zvTKasQo6PUUgXu5mgEsR0g87Fvpw7CoHipg,5257
17
+ xoscar/driver.py,sha256=EjZ7HkdSgwtE9pXGiJXXwgWfxaIn10eZyqKpBhelaoc,1414
18
+ xoscar/errors.py,sha256=hfIAlYuSVfB3dAQYr8hTLAMmfy5en6Y8mihdtw1gTEE,1304
19
+ xoscar/libcpp.pxd,sha256=XGy887HXdRsvF47s-A7PvHX6Gaf15d_azRscWJY0Hc8,1178
20
+ xoscar/nvutils.py,sha256=z6RCVs0sgKFm55TTgAYG3qy5f_AKJzjcH2kcRB-wTJQ,21129
21
+ xoscar/profiling.py,sha256=LUqkj6sSxaFj0ltS7Yk2kFsh5ieHY417xypTYHwQOb4,8275
22
+ xoscar/utils.py,sha256=kLY5cp3tHM9CaEzFG82v7f8XepxC3YZXAUCg5o1uRJ0,16968
23
+ xoscar/aio/__init__.py,sha256=ZLJlVJJH5EhItKD6tLTBri-4FV4kT1O2qdIfBC-df98,691
24
+ xoscar/aio/base.py,sha256=ytknTCjTjNQbTM7l7QGXqPYYUkD7qq-zVBGVZ34L1Tc,2335
25
+ xoscar/aio/file.py,sha256=x1wrvDgtTFMv-6gjSPpBU26jAO5uEAlXGGnFtx7uevQ,1545
26
+ xoscar/aio/lru.py,sha256=KyUfrmqQ2ZkU07Reih-VvUKP1VOg1jmwprEAcZ8pdNE,6539
27
+ xoscar/aio/parallelism.py,sha256=egpScbxggXzAdc_evLsNmUyHafuxu62JWAYS-2ISSuI,1332
28
+ xoscar/backends/__init__.py,sha256=g9OllTquu9MRB5nySVoyiRv2z-_OSALWrOhwt7L9WXc,657
29
+ xoscar/backends/allocate_strategy.py,sha256=DzvTlixwzTANURI2mDLHm3vcaugSPDxU6UQZb89KH0U,5005
30
+ xoscar/backends/config.py,sha256=7nmvU_19zYR7n-bT8BNasbjntwmobmMiM7wN7O6Lujc,5129
31
+ xoscar/backends/context.py,sha256=NukXzBwq9ZwuiN1y6RE1hfNGsW589hDtJAVwu-DV9E0,15874
32
+ xoscar/backends/core.py,sha256=bVQxM1E4qMq1-SkfrZM1aolNg1WQv2sHcZxWI1ETyMM,7625
33
+ xoscar/backends/message.cp312-win_amd64.pyd,sha256=TieEuIz34VImQb14kM_rSD3KU1bUGcBZMVShrrDZuUg,267776
34
+ xoscar/backends/message.pyi,sha256=JMe3_gwmBCBVJPA2TpxY0ygLyYpTsizHE9-C8syjyIM,6351
35
+ xoscar/backends/message.pyx,sha256=23j-fjxOVONPWY0-C5sfCOMbZCx4PTxN0GU8YfrLNeg,18529
36
+ xoscar/backends/pool.py,sha256=DpOwcqXsAy-SJUbHKxsVrwRIzp3VSIqyy2uvM2Kt34A,61017
37
+ xoscar/backends/router.py,sha256=GJpSV_LhzINHdTp5jtsMHfPNMkNb1KI-WlqGqhwApGU,7953
38
+ xoscar/backends/communication/__init__.py,sha256=Z0_RJkPGwLJeapSNt-TiO9DvnpBPu8P4PCooLaAqjkk,1080
39
+ xoscar/backends/communication/base.py,sha256=wmWTeE4lcB_ohqyJJ6MdzMGcrOqy2RSKRp8y-NDuFdY,7736
40
+ xoscar/backends/communication/core.py,sha256=ZM_fU0yokoPzXcJ6j-89llp2r7J9pl3gE5iImn4b4bE,2199
41
+ xoscar/backends/communication/dummy.py,sha256=apbkfFdVWqeqc8Cc1LInOw6ikVoFWixTwBN__djxgBY,8040
42
+ xoscar/backends/communication/errors.py,sha256=-O6ZaKs6Gz7g_ZnKU2wrz8D9btowqaYuQ9u0zCYSLWo,743
43
+ xoscar/backends/communication/socket.py,sha256=FAEU9wu-_VcSw0jBCtyBZ83XB5-Jg0qAyMUrf0zxZl4,13803
44
+ xoscar/backends/communication/ucx.py,sha256=defQN2sirsu-KqvXox_I_wzAfWSq5LJkjKdzo0vtPgw,20234
45
+ xoscar/backends/communication/utils.py,sha256=F-muF5_ow9JzAPAZ3d8XaGDiz3bRZOdWmWBDwQOVLe0,3761
46
+ xoscar/backends/indigen/__init__.py,sha256=Khr2aGbaIw_04NIdY7QNhdljCKbmmzLb4NeAOM3LF8M,701
47
+ xoscar/backends/indigen/backend.py,sha256=cCMkZDEKuRQlFb6v79JvWi5lfzsvAafznOeEWlw7CWY,1663
48
+ xoscar/backends/indigen/driver.py,sha256=uLPBAxG7q8ds6yc-baeYUWu_m4K1gST3_BPqkfnlarw,978
49
+ xoscar/backends/indigen/pool.py,sha256=8pk-FSO007Al2Qb6Ndqc8cMtG-F40tgoaDt095GGfYM,17321
50
+ xoscar/backends/test/__init__.py,sha256=xgE4hbD3g46G1GDJEeozaXIk57XaahmFMNQsnRzRcrs,698
51
+ xoscar/backends/test/backend.py,sha256=Q4C6TFQzZogjugGmPh3QZw4IigL8VGCFOJ5fKkE1Uvk,1301
52
+ xoscar/backends/test/pool.py,sha256=Eg_P--ErTwd2EowpZZg9BMhAG9UBOfXEHVhEId3OqPw,7465
53
+ xoscar/collective/__init__.py,sha256=3tTgFXALDbAwmEDtmBX7PN7N6ZrcPFC4evMXMIhBtsg,801
54
+ xoscar/collective/common.py,sha256=9c7xq3IOUvfA0I9GnpalUqXZOzmF6IEILv4zL64BYVE,3663
55
+ xoscar/collective/core.py,sha256=191aPxbUgWpjzrqyozndImDAQhZFmqoQdBkHFLDfXN0,24239
56
+ xoscar/collective/process_group.py,sha256=kTPbrLMJSGhqbiWvTIiz-X3W0rZWd_CFn_zUIlXbOlM,23286
57
+ xoscar/collective/utils.py,sha256=p3WEVtXvnVhkuO5mRgQBhBRFr1dKHcDKMjrbMyuiyfg,1219
58
+ xoscar/collective/uv.dll,sha256=dax0ooxDvwjULfWekNHOCAXudXNt_J45FIbuZTSgoqc,620544
59
+ xoscar/collective/xoscar_pygloo.cp312-win_amd64.pyd,sha256=TFlQMjPxFgffrmXiDh81jGPxwoSQfc6cnQsCZ3Y-bsc,831488
60
+ xoscar/collective/xoscar_pygloo.pyi,sha256=6KRzElgNBBKWh-VivUw1b5Dolp17MgwA91hQo33EysU,7616
61
+ xoscar/metrics/__init__.py,sha256=RjXuuYw4I2YYgD8UY2Z5yCZk0Z56xMJ1n40O80Dtxf8,726
62
+ xoscar/metrics/api.py,sha256=dtJ4QrIqQNXhJedeqOPs4TXKgrRGZFFN50xAd9SCfec,9144
63
+ xoscar/metrics/backends/__init__.py,sha256=ZHepfhCDRuK9yz4pAM7bjpWDvS3Ijp1YgyynoUFLeuU,594
64
+ xoscar/metrics/backends/metric.py,sha256=WdQMtp_x4qasJ3_HLUDaZnoCwYca0mX2QfVrOwHpuDI,4595
65
+ xoscar/metrics/backends/console/__init__.py,sha256=ZHepfhCDRuK9yz4pAM7bjpWDvS3Ijp1YgyynoUFLeuU,594
66
+ xoscar/metrics/backends/console/console_metric.py,sha256=o6uGA65Kp3yvkMSGKrIilD2MAXKih-of1yEnOfE206I,2164
67
+ xoscar/metrics/backends/prometheus/__init__.py,sha256=ZHepfhCDRuK9yz4pAM7bjpWDvS3Ijp1YgyynoUFLeuU,594
68
+ xoscar/metrics/backends/prometheus/prometheus_metric.py,sha256=65hb8O3tmsEJ7jgOrIwl_suj9SE5Tmqcfjuk0urkLvE,2120
69
+ xoscar/serialization/__init__.py,sha256=NOAn046vnHEkx--82BKNinV8EpyOfT5hqfRBGnKl56s,866
70
+ xoscar/serialization/aio.py,sha256=bL31B2lwrEKA5nztRSeSgDyqsbBN6dCMr6rHwNDGAIk,4715
71
+ xoscar/serialization/core.cp312-win_amd64.pyd,sha256=FQZbH-9dL0vYh6p_1RgbqnJdOhedFu14AzIC2-GMEN4,292352
72
+ xoscar/serialization/core.pxd,sha256=X-47bqBM2Kzw5SkLqICdKD0gU6CpmLsBxC3kfW--wVk,1013
73
+ xoscar/serialization/core.pyi,sha256=Zof9373qy2lmjenSuMznEiTSCNW6WQB7rmSXrRbjUo0,1931
74
+ xoscar/serialization/core.pyx,sha256=ZKexLRnRwZXXn2045kR7xfM_szcoPNrDuouQCWtpFp8,30570
75
+ xoscar/serialization/cuda.py,sha256=Fj4Cpr_YmkGceUCo0mQn8fRvmHP_5WcLdRx6epZ3RC0,3869
76
+ xoscar/serialization/exception.py,sha256=t6yZn_Ate04UE1RbabNh7mu739sdtwarjuPXWhASx7c,1682
77
+ xoscar/serialization/numpy.py,sha256=C6WVx-Sdl2OHBAvVY34DFjAKXlekMbpc2ni6bR8wxYo,3001
78
+ xoscar/serialization/pyfury.py,sha256=3ucal29Hr7PX9_1SfB2x43FE2xw_C0rLkVv3foL7qwM,1200
79
+ xoscar/serialization/scipy.py,sha256=9ph-yoRoNiwUZTwQrn35U60VPirWlncXNAg6EXvqMR4,2554
80
+ xoscar-0.4.0.dist-info/METADATA,sha256=4q4G5TFvvYLHA9zH_ZTmgwu-7DwtRbiXsllkbuu-UPA,9265
81
+ xoscar-0.4.0.dist-info/WHEEL,sha256=bkFTgQblV2VuwaX_c6St1wl4KjbN5AW_if3TQfQ0fhI,101
82
+ xoscar-0.4.0.dist-info/top_level.txt,sha256=vYlqqY4Nys8Thm1hePIuUv8eQePdULVWMmt7lXtX_ZA,21
83
+ xoscar-0.4.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-win_amd64
5
+
@@ -0,0 +1,2 @@
1
+ xoscar
2
+ xoscar_pygloo