Hi Alex, I'm glad it works. You might also want to try using Tasks with pmap. There's some sample code and discussion in this thread:
https://groups.google.com/d/msg/julia-users/AydkFR7mJqo/_bu4S2W-x90J and tasks are discussed in the manual here: http://julia.readthedocs.org/en/latest/manual/control-flow/#man-tasks (the 'tasks' approach has downsides: one of the processes is essentially dedicated to feeding values to the others; for some problems it's probably better to generate all of the data at first and copy it to all of the processes.) On Tuesday, September 16, 2014 4:59:26 PM UTC-5, Alex wrote: > > > That was certainly a problem! Moving the require was important to the fix, > but the main problem that I just found was that I was using a bracket, > where I should have been using a parentheses. Please find the corrected > code below and I hope this may help others who are trying > to parallelize non-trivial examples. > [...cut...]
