How to fully use the CPU of my PC?

241 views (last 30 days)
When matlab R2011b is running a program, it only use about 20% CPU. So I'm wondering how could I make it fully use the CPU and thus takes less time to finish the program. Is there an easy way to make this?

Accepted Answer

Daniel Shub
Daniel Shub on 24 Nov 2011
This really depends on what you are doing. For some code MATLAB can only utilize a single core of a single processor, for other code, MATLAB will automatically utilize all available cores (and maybe processors). It really depends on the underlying functions. Some things cannot be easily parallelized. Sometimes you can help MATLAB with things like parfor loops. Other times you might need something like MPI. Still other times there really is nothing you can do.

More Answers (2)

Jan
Jan on 24 Nov 2011
You do not have any influence on the usage. E.g. if Matlab waits for values from the RAM or the slow harddisk, the processor is on idle. If you have several processor cores, but your program works sequentially, only a few Matlab commands can use more than one core, e.g. FILTER (can somebody confirm this rumor?), MIN, MAX, SUM etc.
The best method to improve the speed is the optimization of the program. A missing pre-allocation can slow down a program tremendously and cause a partial idle of the processor, for example. You can use the profiler to find the bottlenecks and post them here.
  5 Comments
Daniel Shub
Daniel Shub on 25 Nov 2011
I think to test this you probably want to start MATLAB with and without the singleCompThread flag.
Jan
Jan on 5 Dec 2011
@Daniel: How could a FILTER operation for a single vector be multi-threaded? The values of each output frame depend on the complete history of the former filtered signal. Therefore I cannot imagine, how this can be distributed to multiple threads.
I expect, that the filtering of a [n x 2] signal needs approximately the same time as filtering two [n x 1] signals on a dual core machine.

Sign in to comment.


Michael
Michael on 25 Nov 2011
100% CPU load is not a test that your code is optimised! It is just a sign that the hardware bottleneck may be in your processor.

Community Treasure Hunt

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

Start Hunting!