help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: running blocks of code in parallel?


From: Jaroslav Hajek
Subject: Re: running blocks of code in parallel?
Date: Tue, 9 Dec 2008 12:10:01 +0100

On Mon, Dec 8, 2008 at 5:15 PM, Jared <address@hidden> wrote:
> I have the following code that I need to run on several matrices. Is
> there a way to run the code in some kind of parallel fashion so that I
> don't need to wait for one block to finish before the other starts?
> for i=1:length(DJI)
> DJI2(i,1)=datenum(char(DJI(i,2)),'yyyy-mm-dd');
> DJI2(:,2:6) = reshape(str2num(strvcat(DJI(:,3:7)(:)), length(DJI(:,3:7))));
> end
>
>
>
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www-old.cae.wisc.edu/mailman/listinfo/help-octave
>

Currently, Octave itself is not multithread capable. The only
possibility is to explot multithreaded libraries (like BLAS) or to
write a multithreaded compiled function.


-- 
RNDr. Jaroslav Hajek
computing expert
Aeronautical Research and Test Institute (VZLU)
Prague, Czech Republic
url: www.highegg.matfyz.cz


reply via email to

[Prev in Thread] Current Thread [Next in Thread]