From: Vikas Bajpai on 20 Apr 2010 12:47 I have a question that whether we need to separately write code for parallel implementation of a code or the Matlab automatically implements the code parallely.
From: Walter Roberson on 20 Apr 2010 13:05 Vikas Bajpai wrote: > I have a question that whether we need to separately write code for > parallel implementation of a code or the Matlab automatically > implements the code parallely. Matlab only automatically parallelizes some kinds of mathematics operations, and only if the vectors are big enough to make the overhead worthwhile. If you want your program to use parallelism, you have to write it specifically with PARFOR or with a message passing interface. Detecting worth-while opportunities for parallelism automatically is difficult.
|
Pages: 1 Prev: What type of NNet problem is this Options Next: Slider in GUI |