Run two functions on two cores .. in a dual core processor..
Show older comments
I want to run two functions on two cores of my dual core processor. The functions are independent of each other.Is it possible to do so? If not what other applications or softwares are there to do such parallel processing?
Answers (2)
Daniel Shub
on 4 Mar 2012
0 votes
Yes, you can run two independent functions on independent cores. The easiest way is probably to start to sessions of MATLAB. See my answer here: http://www.mathworks.com/matlabcentral/answers/31056-run-two-functions-in-parallel
"... you could try running two MATLAB sessions. If you are on Windows you could use ActiveX to communication between the sessions. You might be able to stick everything in a parfor loop to handle the communications and the MATLAB sessions behind the scenes."
Jan
on 4 Mar 2012
0 votes
This is a very general question.
- You can run two instances of Matlab in parallel.
- The Parallel Computing Toolbox allows to run different jobs on different cores inside one Matlab session.
- Different threads can be started in nearly every programming language. Under Windows the API allows spawning threads, under Linux pthreads is a reliable library.
9 Comments
Sampath reddy
on 4 Mar 2012
Jan
on 4 Mar 2012
It depends on what you want to achieve. It matters if you only want to run a small student project, or if you want to create a professional software package for flight control.
So waht exactly is "programming of this kind"?
Perhaps you should ask Google for "programming multi-thread".
Sampath reddy
on 4 Mar 2012
Daniel Shub
on 4 Mar 2012
@Sampath, I would start with running two independent instances of MATLAB. If that doesn't meet your needs, then provide additional information about the problem.
Sampath reddy
on 4 Mar 2012
Walter Roberson
on 4 Mar 2012
All of Jan's suggestions still apply to your situation.
Perhaps you should look at http://www.mathworks.com/help/toolbox/distcomp/spmd.html
Sampath reddy
on 4 Mar 2012
Jan
on 4 Mar 2012
Do you have the program already? If so, in which programming language is it written? How long does it run?
It would be a waste of time, if you spend more time in the parallelization than will be saved finally.
Walter Roberson
on 5 Mar 2012
spmd code outline:
if labindex is 1, call function 1
else, call function 2
end
This is a single program, but the effect is completely different for the two parallel processes.
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!