xoscar 0.2.0__cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.2.1__cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.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/api.py CHANGED
@@ -325,7 +325,7 @@ class IteratorWrapper(Generic[T]):
325
325
 
326
326
  def __getstate__(self):
327
327
  # Transfer gc destroy during serialization.
328
- state = dict(**super().__getstate__())
328
+ state = self.__dict__.copy()
329
329
  state["_gc_destroy"] = True
330
330
  self._gc_destroy = False
331
331
  return state
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xoscar
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Python actor framework for heterogeneous computing.
5
5
  Home-page: http://github.com/xorbitsai/xoscar
6
6
  Author: Qin Xuye
@@ -1,7 +1,7 @@
1
- xoscar-0.2.0.dist-info/WHEEL,sha256=CBycxh3glnwfbPQMOedoey2NiqMJxkbyufq_hPo2rPs,150
2
- xoscar-0.2.0.dist-info/RECORD,,
3
- xoscar-0.2.0.dist-info/top_level.txt,sha256=vYlqqY4Nys8Thm1hePIuUv8eQePdULVWMmt7lXtX_ZA,21
4
- xoscar-0.2.0.dist-info/METADATA,sha256=rygasfSXyZJ6cksHBmNVsLXICLRK1A_CfssVfuix38A,9214
1
+ xoscar-0.2.1.dist-info/WHEEL,sha256=CBycxh3glnwfbPQMOedoey2NiqMJxkbyufq_hPo2rPs,150
2
+ xoscar-0.2.1.dist-info/RECORD,,
3
+ xoscar-0.2.1.dist-info/top_level.txt,sha256=vYlqqY4Nys8Thm1hePIuUv8eQePdULVWMmt7lXtX_ZA,21
4
+ xoscar-0.2.1.dist-info/METADATA,sha256=rG9DA6iIoOVLoyKK0z5tid9xhSVnWccijS9blRQyfSc,9214
5
5
  xoscar/context.pyx,sha256=8CdgPnWcE9eOp3N600WgDQ03MCi8P73eUOGcfV7Zksg,10942
6
6
  xoscar/backend.py,sha256=is436OPkZfSpQXaoqTRVta5eoye_pp45RFgCstAk2hU,1850
7
7
  xoscar/nvutils.py,sha256=qmW4mKLU0WB2yCs198ccQOgLL02zB7Fsa-AotO3NOmg,20412
@@ -23,7 +23,7 @@ xoscar/debug.py,sha256=9Z8SgE2WaKYQcyDo-5-DxEJQ533v7kWjrvCd28pSx3E,5069
23
23
  xoscar/core.pyx,sha256=Aqc2i8Fetsd5wRAPF4kL0ddnBZn3E2HRNCvup79BbQc,21730
24
24
  xoscar/core.pxd,sha256=4lBq8J0kjcXcsGuvN7Kv4xcL5liHwTTFWlqyK7XAEnw,1280
25
25
  xoscar/libcpp.pxd,sha256=DJqBxLFOKL4iRr9Kale5UH3rbvPRD1x5bTSOPHFpz9I,1147
26
- xoscar/api.py,sha256=wDkyaVqYLXRAAxSH3gI_O_mVogtLmTH8g9PKNb9lBB0,13337
26
+ xoscar/api.py,sha256=3hztPoOxg8A_mlhWyWgVP7FMXG0PATA1TP4Rbaj7A-g,13327
27
27
  xoscar/errors.py,sha256=wBlQOKsXf0Fc4skN39tDie0YZT-VIAuLNRgoDl2pZcA,1241
28
28
  xoscar/backends/core.py,sha256=o6g3ZOW7PkGmiu-nNtp6I3Sd_2KkQDwOsKz-FdgRFs0,7390
29
29
  xoscar/backends/allocate_strategy.py,sha256=tC1Nbq2tJohahUwd-zoRYHEDX65wyuX8tmeY45uWj_w,4845
File without changes