We used parallel-2.0.2 and we have problems with such code:

clear;

hosts = [];

for i = 1:nargin
        hosts = [hosts; argv(){i, 1}];
end

hosts

sockets = connect(hosts)

x = rand(50, 1000);

send(x, sockets(2, :));
reval("x = recv(sockets(1, :))", sockets(2, :));
scloseall(sockets);

Programm stucks when it's trying to send x from sockets(1, :) (master) to
slave (sockets(2, :)).

Best wishes, Lyutaev Dmitry


------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
Octave-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to