필터 지우기
필터 지우기

Run two functions on two cores .. in a dual core processor..

조회 수: 4 (최근 30일)
Sampath reddy
Sampath reddy 2012년 3월 4일
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?

답변 (2개)

Daniel Shub
Daniel Shub 2012년 3월 4일
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
Jan 2012년 3월 4일
This is a very general question.
  1. You can run two instances of Matlab in parallel.
  2. The Parallel Computing Toolbox allows to run different jobs on different cores inside one Matlab session.
  3. 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
Jan
Jan 2012년 3월 4일
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
Walter Roberson 2012년 3월 5일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by