1 / 16

Paper Report

Paper Report. Fast and Accurate Resource Conflict Simulation for Performance Analysis of Multi-Core Systems. Stattelmann , S. ; Bringmann , O ; Rosenstiel , W. Design, Automation & Test in Europe Conference & Exhibition (DATE), 2011. Presenter: Zong Ze -Huang. Abstract.

dorjan
Télécharger la présentation

Paper Report

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Paper Report Fast and Accurate Resource Conflict Simulation for Performance Analysis of Multi-Core Systems Stattelmann, S. ; Bringmann, O ; Rosenstiel, W. Design, Automation & Test in Europe Conference & Exhibition (DATE), 2011 Presenter: ZongZe-Huang

  2. Abstract • This work presents a SystemC-based simulation approach for fast performance analysis of parallel software components, using source code annotated with low-level approaches for performance analysis, timing attributes obtained from binary code can be annotated even if compiler optimizations are used without requiring changes in the compiler. To consider concurrent accesses to shared resources like caches accurately during a source-level simulation, an extension of the SystemC TLM-2.0 standard for reducing the necessary synchronization overhead is proposed as well. This enables the simulation of low-level timing effects without performing a full-fledged instruction set simulation and at speeds close to pure native execution.

  3. What is the Problem • What is the Problem • Estimating software performance at an early design stage is often crucial. • Estimating the performance of software intensive systems is a complex task. • Instruction set simulator(ISS) can be used to estimate the performance of binary code but speed slowly. • Multi-core systems, the interaction of software components due to concurrent accesses to shared resources. • Proposal methods • A fast and accurate approach for system level performance analysis. • Estimate the execution times without using an ISS, software components are annotated with timing properties form a source-level. • Quantum Giversynchronization approach is presented. • SystemC TLM-2.0 standard is described which reduces the synchronization overhead.

  4. Related work [11] dynamic performance evaluation using source code The concept of Result-Oriented Modeling is similarities with the Quantum Giver approach increase simulation performance of TLM-2.0 models compiler optimizations is supported through the use of modified compiler tool chains [17] [19] [12], [13] Describes a cache simulation specifically developed for non-functional simulation [7], [14], [15] Reduce additional context switches provide solutions for an efficient temporally decoupled simulation of shared caches Fast and Accurate Resource Conflict Simulation for Performance Analysis of Multi-Core Systems This paper:

  5. Loosely-timed coding style • One of TLM-2.0 coding style – “fast”. • Early software development. • Another coding style is Approximately-timed –”accurate”. • Using temporally decoupled simulation to increase simulation performance. • Some simulation parts that not interact with the surrounding environment frequently might run ahead of the current simulation time for a short amount of time. • Avoid unnecessary kernel synchronization points and context switches. • As soon as the local time offset of a temporally decoupled process reaches the global time quantum, it must synchronize its local time with the global simulation time by calling “wait()”.

  6. Synchronization Frequency

  7. TLM-AT

  8. TLM-LT faster simulation • TLM-LT coding style cannot replace a synchronization mechanism to resolve data dependencies between processes or accesses to shared resources.

  9. Lack of synchronization mechanism • The lack of a synchronization mechanism when use temporally decoupled. • Read old data or newly written data can be overwritten by an earlier write from another process which is scheduled afterwards. • For instance an instruction or data cache is simulated, the order of accesses can determine whether an access is cache hit or cache miss. • In the worst case, excessive synchronization will degrade the TLM-LT simulation performance to the level of TLM-AT.

  10. Access Synchronization of Share Resources • Quantum Giver synchronization approach is presented. • Three phases: • 1) Simulation Phase • Processes are simulated using temporal decoupling. • All transactions issued by an initiator are completed immediately. • After initiator have reached the maximal local time offset, the synchronization phase is executed. • 2) Synchronization Phase • All target components order the transactions they have received in the simulation phase . • Detect any changes in the previously predicted time for transactions due to conflicts. • These changes are then broadcasted to all other target components, possibly triggering further changes until all components have reached a stable state. • 3)Scheduling Phase • Quantum Giver creates SystemC events to wake up the respective process.

  11. Phases of Synchronization Protocol

  12. Source-Level Simulation of Machine Code • Using mapping between source code and the binary code, source code can be annotated information about timing behavior before it is used in the simulation model. • If an optimizing compiler is used, the compiler-generated debug information might be incorrect. • Inconsistencies in the compiler-generated debug information must be eliminated. • Reconstructed relation between basic block in the binary code and source code lines. • Commercial tool AbsIntaiT was integrated into the analysis flow to produce a binary-level control flow graph annotated with execution times.

  13. Analysis and Instrumentation Work Flow

  14. How to prove the proposal • Use three synchronization approaches to tested fast and accuracy. • 1. No synchronization, meaning each access to the instruction cache was executed directly during TLM-LT simulation. • 2. Synchronization mechanism using the Quantum Giver approach. • 3. Explicit synchronization using calls to wait before each cache access which corresponds to TLM-AT

  15. Experimental Results - fast • The simulation performance is improved by about 25% compare with lock-step simulation.

  16. Experimental Results - accuracy • The Quantum Giver synchronization approach are very close to the estimates reported by lock-step. • More accurate than simulation without synchronization.

More Related