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
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
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 = [];
>
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
>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);
>
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
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