We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This should be similar to https://github.com/apache/arrow/blob/23045d2b5be37df5cd990f5932576eb701e14b18/python/pyarrow/tests/test_serialization.py#L734-L754 except use ray.put and ray.get. E.g.,
ray.put
ray.get
for size in range(100): for dtype in [np.uint8, np.float32, np.float64, np.int64]: x = np.zeros(size, dtype=dtype) new_x = ray.get(ray.put(x)) assert new_x.ctypes.data % 64 == 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This should be similar to https://github.com/apache/arrow/blob/23045d2b5be37df5cd990f5932576eb701e14b18/python/pyarrow/tests/test_serialization.py#L734-L754 except use
ray.put
andray.get
. E.g.,The text was updated successfully, but these errors were encountered: