Difference between revisions of "Simpoints"

From gem5
Jump to: navigation, search
Line 3: Line 3:
 
== Profiling and Generating BBV ==
 
== Profiling and Generating BBV ==
  
To profile a workload and generate a SimPoint BBV file, use the following option:
+
To profile a workload and generate a SimPoint BBV file, use the following command:
  
 
<pre>
 
<pre>
Line 28: Line 28:
 
== Taking SimPoint Checkpoints in gem5 ==
 
== Taking SimPoint Checkpoints in gem5 ==
  
To take gem5 checkpoints based on SimPoint analysis, use the following option:
+
To take gem5 checkpoints based on SimPoint analysis, use the following command:
  
 
<pre>
 
<pre>
Line 39: Line 39:
 
== Resuming from gem5 SimPoint Checkpoints ==
 
== Resuming from gem5 SimPoint Checkpoints ==
  
To resume from gem5 SimPoint checkpoints, use the following option:
+
To resume from gem5 SimPoint checkpoints, use the following command:
  
 
<pre>
 
<pre>

Revision as of 16:59, 12 November 2014

Steps to profile, generate, and use SimPoints with gem5:

Profiling and Generating BBV

To profile a workload and generate a SimPoint BBV file, use the following command:

% build/ARM/gem5.opt <base options> configs/example/fs.py --simpoint-profile [--simpoint-interval <interval length>] <rest of fs.py options>

This will generate a SimPoint Basic Block Vector file (named simpoint.bb.gz) in the gem5 run folder. SimPoint profiling should be run with a single AtomicSimpleCPU configuration and fastmem. Multicore simulation is not supported. <interval length> is in number of instructions. Default interval length is 10M instructions.

SimPoint Analysis

Generate SimPoint analysis using SimPoint 3.2 from UCSD. See http://cseweb.ucsd.edu/~calder/simpoint/index.htm for details. (SimPoint 3.2 not included in gem5 repository.)

A sample command to generate the SimPoint analysis based on the BBV file is as follows:

% simpoint -loadFVFile simpoint.bb.gz -maxK 30 -saveSimpoints <simpoint_file> -saveSimpointWeights <weight_file> -inputVectorsGzipped

The gem5 flow currently does not support variable-length intervals.

Taking SimPoint Checkpoints in gem5

To take gem5 checkpoints based on SimPoint analysis, use the following command:

% build/ARM/gem5.opt <base options> configs/example/fs.py --take-simpoint-checkpoint=<simpoint file path>,<weight file path>,<interval length>,<warmup length> <rest of fs.py options>

<simpoint file> and <weight file> is generated by the SimPoint analysis step above. <interval length> and <warmup length> are in number of instructions. gem5 checkpoints will be generated <warmup length> instructions before the designated SimPoint starting points.

Resuming from gem5 SimPoint Checkpoints

To resume from gem5 SimPoint checkpoints, use the following command:

% build/ARM/gem5.opt <base options> configs/example/fs.py --restore-simpoint-checkpoint -r <N> --checkpoint-dir <simpoint checkpoint path> <rest of fs.py options>

<N> is (SimPoint index + 1). E.g., "-r 1" will resume from SimPoint #0.

This command will resume from a single specified SimPoint checkpoint. It will recognize the warmup period. After simulating the warmup period, gem5 statistics will be dumped and reset. After simulating the actual SimPoint, gem5 will automatically terminate. The simulations for all other SimPoints should be run separately. To project the full execution, the gem5 statistics from individual SimPoints must be weighted accordingly.

Questions / Feedback

For questions or feedback on this flow, please contact Dam Sunwoo (dam.sunwoo@arm.com)