MULTICORE Matlab script

SPONSORED LINKS

    Specification

  • Version:
  • File size: 0 KB
  • File name: multicore%202007-09-24.zip
  • Last update:
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • Language: Matlab
  • Price:Freeware
  • Company: Markus Buehren (View more)

MULTICORE script description:



MULTICORE is a Matlab script for Development Tools scripts design by Markus Buehren. It runs on following operating system: Windows / Linux / Mac OS / BSD / Solaris.
MULTICORE provides some functions realizing parallel processing on multiple cores/machines

Publisher review:
MULTICORE provides some functions realizing parallel processing on multiple cores/machines The latest Matlab releases (starting with R2007a) include support for multiple cores. However, Matlab will only take advantage of multiple cores in evaluating certain computations like an FFT or a FIR filtering operation. Matlab will never be able to determine if, for example, consecutive function calls in a for-loop are independent of each other.With this package, I provide some MATLAB-functions realizing parallel processing on multiple cores on a single machine or on multiple machines that have access to a common directory.If you have multiple function calls that are independent of each other, and you can reformulate your code as resultCell = cell(size(parameterCell));for k=1:numel(parameterCell)resultCell{k} = myfun(parameterCell{k});endthen, replacing the loop byresultCell = startmulticoremaster(@myfun, parameterCell);allows you to evaluate your loop in parallel in several processes. All you need to do in the other Matlab processes is to runstartmulticoreslave;No special toolboxes are used, no compilation of mex-files is necessary, everything is programmed in plain and platform-independent Matlab. If one of your slave processes dies - don't care, the master process will go on working on the given task.Please consider that the communication between the processes, which is done by using the file system, causes some overhead. Thus, you will only notice an improvement in speed if your function calls need considerable time, let say some seconds. However, if you have a huge number of function evaluations to be executed, where every function evaluation only needs a fraction of a second, you can still use this package. You will just have to write a small adapter function that gathers a number of function evaluations and let the multicore package parallelize the execution of that adapter function.Note: The Matlab multithreading capability (R2007a and higher) might terminate all the advantage gained by using the multicore package. So make sure that you UNcheck "Enable multihreaded computation" under File/Preferences/General/Multithreading in all involved Matlab sessions. Keywords: Parallel processing, distributed computing, multiple core. Requirements: ยท MATLAB Release: R2006b
Operating system:
Windows / Linux / Mac OS / BSD / Solaris

Related script downloads:

Latest script and internet news

Samsung launched the Premium Music Hub

Samsung launched the Premium Music Hub

Samsung finally gives consumers multiple audio streaming countries promised a while. Premium Music Hub allows users access to over 19 million songs, along with other useful functions.

Posted on: 30 May 2012 13:02 by A. Brown

This could be the first photos of iPhone 5

This could be the first photos of iPhone 5

IPhone\'s case came online in a few pictures that confirm rumors of a larger screen. This could be the first photos of the next iPhone, but nothing is really safe to Apple announcement.

Posted on: 30 May 2012 12:58 by A. Brown

IE 10 for Windows 8, comes with Adobe Flash support

IE 10 for Windows 8, comes with Adobe Flash support

After criticism received at Metro version of Internet Explorer 10 , initially offered no support for Adobe Flash technology, Microsoft has taken measures to correct this problem by working directly with Adobe to integrate the necessary components into the

Posted on: 25 May 2012 10:36 by A. Brown

Windows 8: boot to fast to furious

Windows 8: boot to fast to furious

Last year began to circulate on the Internet videos where Windows 8 systems boot in 7 seconds. Unfortunately, from this performance derives some problems.

Posted on: 25 May 2012 07:28 by A. Brown

SPREAD THE WORD

User Rating

MULTICORE
Rating: 1.0 out of 5
Based on 2 ratings. 2 user reviews.

  • Currently 1.00 out of 5
  • 1
  • 2
  • 3
  • 4
  • 5