Skip to content
New issue

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

Comm: add alternate version of scatter #7

Merged
merged 1 commit into from
Oct 20, 2016
Merged

Commits on Oct 19, 2016

  1. Comm: add alternate version of scatter

    The default version apparently pickles the entire 'dataList', which
    can cause errors if the pickle size grows over 2^31 bytes due to
    fundamental problems with pickle in python 2 [1][2] (causing, e.g.,
    "OverflowError: integer 2155421250 does not fit in 'int'"). Instead,
    we send the data to each slave node in turn; this reduces the pickle
    size.
    
    [1] http://bugs.python.org/issue11564
    [2] https://www.python.org/dev/peps/pep-3154/
    PaulPrice committed Oct 19, 2016
    Configuration menu
    Copy the full SHA
    9df40a3 View commit details
    Browse the repository at this point in the history