Re: [OctDev] parallel: bugs with big-size matrix

2010-08-13 Thread Olaf Till
On Wed, Aug 11, 2010 at 04:08:08PM +0200, Olaf Till wrote: > On Wed, Aug 11, 2010 at 05:13:22PM +0530, Vipul Agrawal wrote: > > On Wed, Aug 11, 2010 at 4:45 PM, Olaf Till wrote: > > > > > On Wed, Aug 11, 2010 at 11:51:43AM +0530, Vipul Agrawal wrote: > > > > >On Sat, Aug 07, 2010 at 05:31:24PM +1

Re: [OctDev] parallel: bugs with big-size matrix

2010-08-11 Thread Olaf Till
On Wed, Aug 11, 2010 at 05:13:22PM +0530, Vipul Agrawal wrote: > On Wed, Aug 11, 2010 at 4:45 PM, Olaf Till wrote: > > > On Wed, Aug 11, 2010 at 11:51:43AM +0530, Vipul Agrawal wrote: > > > >On Sat, Aug 07, 2010 at 05:31:24PM +1100, Lutaev D. A. wrote: > > > >> We used parallel-2.0.2 and we have

Re: [OctDev] parallel: bugs with big-size matrix

2010-08-11 Thread Vipul Agrawal
On Wed, Aug 11, 2010 at 4:45 PM, Olaf Till wrote: > On Wed, Aug 11, 2010 at 11:51:43AM +0530, Vipul Agrawal wrote: > > >On Sat, Aug 07, 2010 at 05:31:24PM +1100, Lutaev D. A. wrote: > > >> We used parallel-2.0.2 and we have problems with such code: > > >> > > >> clear; > > >> > > >> hosts = []; >

Re: [OctDev] parallel: bugs with big-size matrix

2010-08-11 Thread Olaf Till
On Wed, Aug 11, 2010 at 11:51:43AM +0530, Vipul Agrawal wrote: > >On Sat, Aug 07, 2010 at 05:31:24PM +1100, Lutaev D. A. wrote: > >> We used parallel-2.0.2 and we have problems with such code: > >> > >> clear; > >> > >> hosts = []; > >> > >> for i = 1:nargin > >> hosts = [hosts; argv(){i, 1

Re: [OctDev] parallel: bugs with big-size matrix

2010-08-10 Thread Vipul Agrawal
>On Sat, Aug 07, 2010 at 05:31:24PM +1100, Lutaev D. A. wrote: >> 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); >

Re: [OctDev] parallel: bugs with big-size matrix

2010-08-09 Thread Olaf Till
On Sat, Aug 07, 2010 at 05:31:24PM +1100, Lutaev D. A. wrote: > 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

[OctDev] parallel: bugs with big-size matrix

2010-08-08 Thread Lutaev D. A.
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