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
from collections import Counter import ray ray.init(num_cpus=0) c = Counter([1, 2, 3]) print(c) # Counter({1: 1, 2: 1, 3: 1}) new_c = ray.get(ray.put(c)) print(new_c) # Counter()
The text was updated successfully, but these errors were encountered:
Maybe when this is addressed, there should be a test suite for all collections objects because defaultdict has also been problematic in the past.
Sorry, something went wrong.
run_stress_tests.sh
Fixed now, by the arrow update and tested in #3982.
No branches or pull requests
The text was updated successfully, but these errors were encountered: