Skip to content

Commit

Permalink
Updating parallell computing text
Browse files Browse the repository at this point in the history
Behaviour was not as documented.
  • Loading branch information
ygrange committed Jan 8, 2016
1 parent 86cd5ea commit 312de21
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions doc/manual/parallel-computing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,10 @@ type the following into the Julia prompt::
0.153756 0.368514
1.15119 0.918912

julia> @spawn rand2(2,2)
Future(2,1,4,Nullable{Any}())

julia> @spawn rand2(2,2)
Future(3,1,5,Nullable{Any}())
julia> fetch(@spawn rand2(2,2))
ERROR: On worker 2:
function rand2 not defined on process 2

julia> exception on 2: in anonymous: rand2 not defined

Process 1 knew about the function ``rand2``, but process 2 did not.

Expand Down

0 comments on commit 312de21

Please sign in to comment.