terraswarm terraswarm
play

TerraSwarm TerraSwarm An Integrated Simulation Tool for Computer - PowerPoint PPT Presentation

TerraSwarm TerraSwarm An Integrated Simulation Tool for Computer Architecture and Cyber-Physical Systems Hokeun Kim 1,2 , Armin Wasicek 3 , and Edward A. Lee 1 1 University of California, Berkeley 2 LinkedIn Corp. 3 Technical University Vienna


  1. TerraSwarm TerraSwarm An Integrated Simulation Tool for Computer Architecture and Cyber-Physical Systems Hokeun Kim 1,2 , Armin Wasicek 3 , and Edward A. Lee 1 1 University of California, Berkeley 2 LinkedIn Corp. 3 Technical University Vienna CyPhy'17, Seoul, Korea Sponsored by the TerraSwarm Research Center, one of six centers administered by the STARnet phase of the Focus Center Research Program (FCRP) a Semiconductor Research Corporation program sponsored by MARCO and DARPA.

  2. Introduction • Many tools used for CPS modeling and simulation employs a simplified timing model for “cyber” part of CPS – Example tools: OpenModelica, Ptolemy II – E.g., computation time, communication delay • These tools are useful – Faster than simulating or emulating cyber part – Enough for CPS simulation in many cases • But, sometimes we need more than just simplified computation & communication models 2 TerraSwarm Research Center

  3. Motivation 1 – Side Channels • Side channel attacks – Gaining information by leveraging physical implementation of computer systems – E.g., power analysis Correlation of (a) and (b) (a) Hamming distance from data to ref. state (B) Power consumption Timing delays are not enough! Brier, Clavier, and Olivier. "Correlation power analysis with a leakage model.", CHESS 2004. 3 TerraSwarm Research Center

  4. Motivation 1 – Side Channels • Cold boot attack on DRAMs Freeze the DRAM memory of the running Read out data and look for high system to prevent the data from decaying entropy in data (cryptographic key) Shamir and Someren, "Playing Hide and Seek with Stored Keys", FC 99 (Conference on Financial Cryptography ) Halderman, J.A., et al., “Lest we remember: Cold-boot attacks on encryption keys. “ Communications of the ACM, 2009 4 TerraSwarm Research Center

  5. Motivation 2 – MOOC for CPS • CPS classes – Involve a lot of hands-on experiments e.g. EECS149.1x, Cyber-Physical Systems at UC Berkeley https://www.edx.org/course/cyber- physical-systems-uc-berkeleyx-eecs149-1x Physical part (environment) Cyber part • MOOC for CPS classes? – Not like other CS classes – Accurate model for CPS would help 5 TerraSwarm Research Center

  6. Goals • Building a CPS simulator supporting accurate computer architecture model • Demonstration of an open-source integrated simulation tool for CPS and computer architecture • Case study using DRAM power and thermal modeling 6 TerraSwarm Research Center

  7. Background – Tools • The gem5 architecture simulator (from UMich) – Open-source powerful, modular, flexible and widely used both in academia and industry • Characteristics – Object-oriented, discrete-event – Modular components (CPUs, Memories, Buses, Interconnects), easily interchangeable – Simulated system = collection of objects 7 TerraSwarm Research Center

  8. Background – Tools • Ptolemy II – An open-source software for research on cyber-physical systems – Developed at UC Berkeley since 1996 – Supports modeling of both the cyber part (computation, communication) & physical process (continuous dynamics) – Quite stable, easy to learn and use (supports GUI, one can build a model by drawing components) – Based on actor-oriented design – More information on http://ptolemy.org 8 TerraSwarm Research Center

  9. Background – Tools • Actor-Oriented Design in Ptolemy II – Actors • Concurrently executed components • Interact with other actors through input/output ports • Model computation, communication, physical processes, etc. – Directors • Implement Models of Computation (MoCs) • Orchestrate behavior of actors, for example, when each actor should be executed (=fired) – Actor hierarchy • An actor can have sub-atctors Claudius Ptolemaeus, Editor, System Design, Modeling, and Simulation Using Ptolemy II , Ptolemy.org, 2014. 9 TerraSwarm Research Center

  10. Background – Tools • Model of Computation (MoC) – A set of rules orchestrating behavior of actors (e.g., when to execute actors, how actors react to inputs) Multiple MoCs in a single Ptolemy II model Continuous Time Sampling-based simulation, ODE solvers • For modeling physical processes (e.g. • thermal transfer) Discrete Event Time-stamped events • (e.g. timer event, arrival of messages) For modeling • computation or communication 10 TerraSwarm Research Center

  11. Background – DRAM Model • DRAM thermal model by Lin et al. (ISCA`07) – Power is proportional to throughput (GB/s) – Factors that affect DRAM temperature 3. Cooling effect Cooling air flow Air flow Heat dissipation AMB to ambient DRAM to ambient DRAM to ambient to ambient AMB to DRAM data transfer DRAM to AMB AMB data transfer (Advanced 1. Physical DRAM DRAM DRAM DRAM Memory Buffer) structure 2. Heat dissipation DIMM from components (Dual In-line Memory Module) Lin et al., “Thermal modeling and management of DRAM memory systems” ISCA ’07 11 TerraSwarm Research Center

  12. Approach - Integrated Tool Overview Ptolemy II Model Discrete Event Discrete Event gem5 Simulator Discrete Event Continuous Time CPU# L1#I# L1#D# Cache# Cache# DRAM# 12 TerraSwarm Research Center

  13. Approach - gem5 as Cyber Part of CPS Ptolemy II Model (1) gem5 Simulator CPU# L1#I# L1#D# Cache# Cache# DRAM# 13 TerraSwarm Research Center

  14. Approach – Configuring gem5 Simulator • Implementation of gem5 – Python – high-level object configuration & simulation – C++ – low-level object implementation (for performance) • The gem5 Simulator python scripts – Modify execution scripts for periodic execution – gem5 runs for given cycles and stops – Resume after Ptolemy II model runs • DRAM component – Add DPRINTF functions to DRAM component – Print out command and cycle information 14 TerraSwarm Research Center

  15. Approach – Communication between gem5 & Ptolemy II Ptolemy II Model (2) gem5 Simulator CPU# L1#I# L1#D# Cache# Cache# DRAM# 15 TerraSwarm Research Center

  16. Approach – Communication between gem5 & Ptolemy II gem5%Simulator% Ptolemy%II%Model% CPU# “Fire”% (Run#simula1on## L1#I# L1#D# for#N#cycles)# Cache# Cache# Gem5% Named%pipe%1% Wrapper% Actor% Named%pipe%2% DRAM# “No;fy”% (Simula1on#finished# gem5 blocks on read Java custom actor &#results#ready)# Wrapper fire() blocks on read Store# Load# Shared%File% simula1on# simula1on# Memory%trace:% results# results# <1me,#access#type,#addr># <1me,#access#type,#addr># <1me,#access#type,#addr># Simulation information !!! # transferred 16 TerraSwarm Research Center

  17. Approach – Communication between gem5 & Ptolemy II (1) Gem5Wrapper initialize() triggers gem5 gem5%Simulator% Ptolemy%II%Model% CPU# “Fire”% (Run#simula1on## L1#I# L1#D# for#N#cycles)# Cache# Cache# Gem5% Named%pipe%1% Wrapper% Actor% Named%pipe%2% DRAM# “No;fy”% (Simula1on#finished# &#results#ready)# Store# Load# Shared%File% simula1on# simula1on# Memory%trace:% results# results# <1me,#access#type,#addr># <1me,#access#type,#addr># <1me,#access#type,#addr># !!! # 17 TerraSwarm Research Center

  18. Approach – Communication between gem5 & Ptolemy II gem5%Simulator% Ptolemy%II%Model% CPU# “Fire”% (Run#simula1on## L1#I# L1#D# for#N#cycles)# Cache# Cache# Gem5% Named%pipe%1% Wrapper% Actor% Named%pipe%2% DRAM# “No;fy”% (Simula1on#finished# (2) gem5 runs &#results#ready)# Store# Load# Shared%File% simula1on# simula1on# Memory%trace:% results# results# <1me,#access#type,#addr># <1me,#access#type,#addr># <1me,#access#type,#addr># !!! # 18 TerraSwarm Research Center

  19. Approach – Communication between gem5 & Ptolemy II gem5%Simulator% Ptolemy%II%Model% CPU# “Fire”% (Run#simula1on## L1#I# L1#D# for#N#cycles)# Cache# Cache# Gem5% Named%pipe%1% Wrapper% Actor% Named%pipe%2% DRAM# “No;fy”% (Simula1on#finished# (3) gem5 finishes &#results#ready)# and stops Store# Load# Shared%File% simula1on# simula1on# Memory%trace:% results# results# <1me,#access#type,#addr># <1me,#access#type,#addr># <1me,#access#type,#addr># !!! # 19 TerraSwarm Research Center

  20. Approach – Communication between gem5 & Ptolemy II gem5%Simulator% Ptolemy%II%Model% CPU# “Fire”% (Run#simula1on## L1#I# L1#D# for#N#cycles)# Cache# Cache# Gem5% Named%pipe%1% Wrapper% Actor% Named%pipe%2% DRAM# “No;fy”% (Simula1on#finished# (4) Gem5Wrapper fire() &#results#ready)# returns Store# Load# Shared%File% simula1on# simula1on# Memory%trace:% results# results# <1me,#access#type,#addr># <1me,#access#type,#addr># <1me,#access#type,#addr># !!! # 20 TerraSwarm Research Center

  21. Approach – Communication between gem5 & Ptolemy II (5) Gem5Wrapper postfire() triggers gem5 again gem5%Simulator% Ptolemy%II%Model% CPU# “Fire”% (Run#simula1on## L1#I# L1#D# for#N#cycles)# Cache# Cache# Gem5% Named%pipe%1% Wrapper% Actor% Named%pipe%2% DRAM# “No;fy”% (Simula1on#finished# &#results#ready)# Store# Load# Shared%File% simula1on# simula1on# Memory%trace:% results# results# <1me,#access#type,#addr># <1me,#access#type,#addr># <1me,#access#type,#addr># !!! # 21 TerraSwarm Research Center

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend