-
Notifications
You must be signed in to change notification settings - Fork 14
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
parallelize graph-building #22
Comments
yeah something like that would be great! I didn't have anything more specific than that in mind, perhaps just adding an argument to specify number of threads (and/or perhaps a flag of whether to parallelize at all and it'll figure out how many there are) to the batch build function... |
hmm. I'll try and see how we implement at least that much (for now). |
Running that loop on different threads directly (using This could mean that we might have to try implementing some kind of synchronous locking mechanism that ensures only one thread can call |
Have you tried using Distributed and just a |
Yes I tried that, and it still results in a segmentation fault. FWIW, I tried two variants of the function called in |
It's a one-time cost for a given dataset, but it's quite slow (~1k/hr) for larger sets, and should be easy to batch out in some reasonably automated way...
The text was updated successfully, but these errors were encountered: