You are here

Estimating CPU Power

Introduction
This is a basic outline for determining minimum CPU core, core mix and core frequency and also minimizing power consumption.

Define High Level Use Cases
First define what tasks your CPU will perform. This will usually be something like a certain number of computations per second, minimum frame rate in a game or video play back or web pages served.

Determine Design Constraints
These designs usually come at you from two different angles, minimum performance on one end and thermal limits at the other. You'll meet somewhere in between. Heat is usually the performance limiter (rather than CPU maximum compute power). The second limiter is usually caused by bumping up against your power budget.

Define Test Matrix
Create a test matrix which includes a mix of the following: {%cores} x { core freq}. For example you might have the following:

Before conducting any testing you'll want to eliminate any tests which are impossible due to instruction set limitations or other hardware limitations. For example if the GPU cannot be used to perform the math steps then mark off its possibilities. Or if the system needs at least 25% CPU then mark off anything that says 0% CPU, etc.

Benchmark Scenarios
Run each benchmark on the particular sets of code (you might have to use different software for each test) and write down the performance numbers. You will want to record the following:

  • Core temperatures
  • Electrical power consumption
  • Performance (frames/second, pages/second, etc)

Assessment

  1. Mark off any items that exceed thermal limits.
  2. Mark off any items that under perform.
  3. You should (hopefully) be left with some items in your matrix which straddle the middle. Since performance is met in all cases which combinations consume the least amount of power? Mark off any items that exceed power limitations. Those remaining are the ones you'll want to focus on in your design.

Conclusion
If you've done your testing properly then the test cases are the ones that are suitable for your application.

Add new comment

Filtered HTML

  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <table> <tr> <td> <ul> <ol> <li> <dl> <dt> <pre> <dd> <img> <sub> <sup>
  • Lines and paragraphs break automatically.

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
12 + 3 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.