UKSM: Swift Memory Deduplication via Hierarchical and Adaptive Memory Region Distilling

Size: px
Start display at page:

Download "UKSM: Swift Memory Deduplication via Hierarchical and Adaptive Memory Region Distilling"

Transcription

1 UKSM: Swift Memory Deduplication via Hierarchical and Adaptive Memory Region Distilling Nai Xia* Chen Tian* Yan Luo + Hang Liu + Xiaoliang Wang* *: Nanjing University +: University of Massachusetts Lowell Feb/15/2018

2 Background What is Kernel Samepage Merging (KSM)? page 2 Identical? page 2 Update, different? page 2 page 1 page 1 page 1 Merge Unmerge Goal: Reduce memory consumption when duplication exists. Effectiveness: There exist tremendous (~86%) memory duplications in real-world applications, Change et al. [ISPA 2011]. 2

3 Unique Challenges Storage deduplication deals with relatively static content, only concerns about duplication ratio. Sparse Indexing [FAST 2009], CAFTL [FAST 2011], El-Shimi et al. [ATC 2012], Cao et al. [Just now] Responsiveness: Remove duplications before they exhaust the memory. Dynamic nature: Duplication status may change over time. 3

4 Accelerate the deduplication of memory which is dynamic in nature! 4

5 Outline Observation (Opportunity) Overview Hierarchical Region Distilling Adaptive Partial Hashing Evaluation Conclusion 5

6 Observation I: Pages within the Same Region Present Similar Patterns Duplicated Pages Docker Memory Space Test: Apache web server and MySQL database serving wordpress website in Ubuntu (kernel version 4.4). Duplicated pages concentrate by memory region. *Please refer to our paper for other pattern analysis 6

7 Observation II: Hashing Needs to Be Adaptive Various applications need different hashing strengths to differentiate: Image applications contain pages with highly similar contents. Crypto applications contain diverse contents. Page i Page j Page i Page j We should adjust hashing strength accordingly. 7

8 Overview Assuming we have 9 memory regions, i.e., R0 R8. Low Similarity Ri High R0 R1 R2 R3 R4 R5 R6 R7 R8 8

9 Similarity Overview Low High Ri Hierarchical memory region clustering. Level N R1 R8 Level 2 R0 R7 R3 Level 1 R2 R5 R4 R6 9

10 Similarity Overview Low High Ri Hierarchical region distilling. Level N R1 R8 Level 2 R0 R7 R3 Level 1 R2 R5 R4 R6 10

11 Similarity Overview Low High Ri Hierarchical region distilling. Level N R1 R8 Level N R1 Level 2 R0 R7 R3 Level 2 R0 R7 Level 1 R2 R5 R4 R6 Level 1 R2 R5 R4 R6 Round n Round n

12 Similarity Overview Low High Ri Hierarchical region distilling + Adaptive partial hashing. Level N R1 R8 R1 R3 Level 2 R0 R7 R3 R0 R7 R8 Level 1 R2 R5 R4 R6 R2 R5 R4 R6 Round n Round n

13 Overview Takeaway 1: Promote/demote regions. Takeaway 2: Sampling offset shift. Takeaway 3: Hash strength adjustment. Hierarchical region distilling + Adaptive partial hashing. Level N R1 R8 R1 R3 Takeaway 1 Level 2 R0 R7 R3 R0 R7 R8 Takeaway 3 Level 1 R2 R5 R4 R6 R2 R5 R4 R6 Round n Round n + 1 Takeaway 2 13

14 Hierarchical Region Distilling * COW: copy on write Memory region characterization Signatures: V cow : promote regions whose COW-broken ratios are lower than this. V dup : promote regions whose duplication ratios are higher than this. V life : regions living longer than this threshold can be effectively scanned. Default empirical values: V cow = 10%, V dup = 20% and V life = 100ms. Various commercial products adopt UKSM and observe different sweet spots. 14

15 Hierarchical Region Distilling Write on merged tree, adjust V cow Tree merge Region Ri Sample & Hash move page from unmerged to merged tree Adjust V dup Tree unmerge *: We adopt Linux KSM black-red tree design to track merged and unmerged pages. 15

16 Adaptive Partial Hashing Half hashing strength Probe state Strength = Strength ± Delta Adjust hash strength We optimize SuperFastHash with the following key contributions: Minimizing collisions Optimizing avalanche for SuperFastHash [Hsieh 2004]. Progressive hashing Support additivity while adjust hash strengths. 1 st half 2 nd half Hash Hash value H1 (round n) Hash Hash value H2 (round n+1) Combine to H1,2 Sampled page 16

17 Evaluation 6,000 Lines of Code in Linux kernel. OS: Vanilla kernel 4.4. Hardware: Intel Core i7 CPU 920 with four 2.67 GHz cores. 12 GB memory. For fair comparison KSM is upgraded to SuperFastHash. 17

18 Evaluation Goals How efficient is UKSM on different workloads? How flexible is UKSM regarding customization? What s the responsiveness of UKSM vs KSM? How does adaptive partial hashing perform compared to non-adaptive algorithm? What s the performance penalty of UKSM? 18

19 Evaluation Goals How efficient is UKSM on different workloads? How flexible is UKSM regarding customization? What s the responsiveness of UKSM vs KSM? How does adaptive partial hashing perform compared to non-adaptive algorithm? What s the performance penalty of UKSM? 19

20 Parameter Analysis Setting: Booting 25 VMs, each with 1 VCPU, 1GB memory. Memory Saving (MB) Full Medium Low Quiet Catching up time CPU Utilization (%) Full Quiet Seconds Seconds UKSM allows four levels of scanning strengths: Level Full allows upto 95% CPU consumption and can scan the entire memory in 2 seconds. Each lower level will half the CPU and potentially increase the scan time by 2x. 20

21 Memory Utilization (MB) Responsiveness Analysis UKSM KSM 100 Pages KSM 1000 Pages KSM 2000 Pages Seconds CPU (% one core) Setting: Two processes, each with 4GB memory. One contains identical pages while the other random ones. Efficiency = UKSM KSM 100 Pages KSM 1000 Pages KSM 2000 Pages Seconds "#"$%& '()*+, -./ 0$+'1"23*$ UKSM is 8.3, 12.6, 11.5 more efficient than KSM at scan speed of 100, 1000, 2000 pages. 21

22 Related Work Content-based approach: VMware ESX server, IBM active memory deduplication, Red Hat ksmtuned. Majority of them treat every page equally. I/O hint based approach: KSM++ [Resolve 2012], XLH[Usenix ATC 2013], CMD [VEE 2014]. Cannot track anonymous memory space (no I/O) or require hardware change. SmartMD [Usenix ATC 17]: Consider various page sizes; we are orthogonal. 22

23 Conclusion Memory deduplication faces the unique challenges. Our techniques: Hierarchical region distilling. Adaptive partial hashing. UKSM saves 12.6x and 5x more memory than KSM on static and dynamic workload, respectively, in the same time envelope. UKSM is an in production system: It has ~110 (watch, star and fork) after less than one year in GitHub. 23

24 Thank You & Questions? We would like to thank our shepherd Dr. Hong Jiang and anonymous reviewers! 24

Online Learning and Optimization for Smart Power Grid

Online Learning and Optimization for Smart Power Grid 1 2016 IEEE PES General Meeting Panel on Domain-Specific Big Data Analytics Tools in Power Systems Online Learning and Optimization for Smart Power Grid Seung-Jun Kim Department of Computer Sci. and Electrical

More information

Using on-line power modeling for server power capping

Using on-line power modeling for server power capping IBM Research and University of Texas at Austin Using on-line power modeling for server power capping Madhu Saravana Sibi Govindan, Charles Lefurgy, and Ajay Dholakia Workshop on Energy-Efficient Design

More information

Online Learning and Optimization for Smart Power Grid

Online Learning and Optimization for Smart Power Grid 1 2016 IEEE PES General Meeting Panel on Domain-Specific Big Data Analytics Tools in Power Systems Online Learning and Optimization for Smart Power Grid Seung-Jun Kim Department of Computer Sci. and Electrical

More information

Enhancing Energy Efficiency of Database Applications Using SSDs

Enhancing Energy Efficiency of Database Applications Using SSDs Seminar Energy-Efficient Databases 29.06.2011 Enhancing Energy Efficiency of Database Applications Using SSDs Felix Martin Schuhknecht Motivation vs. Energy-Efficiency Seminar 29.06.2011 Felix Martin Schuhknecht

More information

Machine Design Optimization Based on Finite Element Analysis using

Machine Design Optimization Based on Finite Element Analysis using Machine Design Optimization Based on Finite Element Analysis using High-Throughput Computing Wenying Jiang T.M. Jahns T.A. Lipo WEMPEC Y. Suzuki W. Taylor. JSOL Corp. UW-Madison, CS Dept. 07/10/2014 2014

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme STO1479BU vsan Beyond the Basics Sumit Lahiri Product Line Manager Eric Knauft Staff Engineer #VMworld #STO1479BU Disclaimer This presentation may contain product features that are currently under development.

More information

CRSM: Crowdsourcing based Road Surface Monitoring

CRSM: Crowdsourcing based Road Surface Monitoring CRSM: Crowdsourcing based Road Surface Monitoring Kongyang Chen 1, Mingming Lu 2, Guang Tan 1, and Jie Wu 3 1SIAT, Chinese Academy of Sciences, 2 Central South University 3Temple University Nov. 15 th,

More information

MD90-FS0 (R180-F34) Thermal Test Report. Networking & Communication Business Unit Thermal Department Jul-11,2014

MD90-FS0 (R180-F34) Thermal Test Report. Networking & Communication Business Unit Thermal Department Jul-11,2014 MD90-FS0 (R180-F34) Thermal Test Report Networking & Communication Business Unit Thermal Department Jul-11,2014 Test Configuration Hardware M/B MD90-FS0 Rev: 0.1 BIOS: D02d BMC: 09.25 SKU: R180-F34 CPU

More information

ARC-H: Adaptive replacement cache management for heterogeneous storage devices

ARC-H: Adaptive replacement cache management for heterogeneous storage devices Journal of Systems Architecture 58 (2012) ARC-H: Adaptive replacement cache management for heterogeneous storage devices Young-Jin Kim, Division of Electrical and Computer Engineering, Ajou University,

More information

Journal of Emerging Trends in Computing and Information Sciences

Journal of Emerging Trends in Computing and Information Sciences Pothole Detection Using Android Smartphone with a Video Camera 1 Youngtae Jo *, 2 Seungki Ryu 1 Korea Institute of Civil Engineering and Building Technology, Korea E-mail: 1 ytjoe@kict.re.kr, 2 skryu@kict.re.kr

More information

FLEXIBILITY FOR THE HIGH-END DATA CENTER. Copyright 2013 EMC Corporation. All rights reserved.

FLEXIBILITY FOR THE HIGH-END DATA CENTER. Copyright 2013 EMC Corporation. All rights reserved. FLEXIBILITY FOR THE HIGH-END DATA CENTER 1 The World s Most Trusted Storage Platform More Than 20 Years Running the World s Most Critical Applications 1988 1990 1994 2000 2003 2005 2009 2011 2012 New Symmetrix

More information

PERMAS Users' Conference on April 12-13, 2018, Stuttgart

PERMAS Users' Conference on April 12-13, 2018, Stuttgart Topology optimization to maximize the dynamic input stiffness of front axle coach structure N. Kuppuswamy, P. J. Eberle, G. Steinmetz, A. Schünemann, B. Zickler INTES GmbH April 12-13, 2018 PERMAS Users'

More information

Installing Proactive Monitoring for PowerCenter Operations 2.0 HotFix 1 on Solaris

Installing Proactive Monitoring for PowerCenter Operations 2.0 HotFix 1 on Solaris Installing Proactive Monitoring for PowerCenter Operations 2.0 HotFix 1 on Solaris 2012-2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

Copyright 2012 EMC Corporation. All rights reserved.

Copyright 2012 EMC Corporation. All rights reserved. 1 Transforming Storage: An EMC Overview Symmetrix storage systems Boštjan Zadnik Technology Consultant Bostjan.Zadnik@emc.com 2 Data Sources Are Expanding Source: 2011 IDC Digital Universe Study 3 Applications

More information

Green Server Design: Beyond Operational Energy to Sustainability

Green Server Design: Beyond Operational Energy to Sustainability Green Server Design: Beyond Operational Energy to Sustainability Justin Meza Carnegie Mellon University Jichuan Chang, Partha Ranganathan, Cullen Bash, Amip Shah Hewlett-Packard Laboratories 1 Overview

More information

Based on the findings, a preventive maintenance strategy can be prepared for the equipment in order to increase reliability and reduce costs.

Based on the findings, a preventive maintenance strategy can be prepared for the equipment in order to increase reliability and reduce costs. What is ABB MACHsense-R? ABB MACHsense-R is a service for monitoring the condition of motors and generators which is provided by ABB Local Service Centers. It is a remote monitoring service using sensors

More information

An Open Standard for the Description of Roads in Driving Simulations

An Open Standard for the Description of Roads in Driving Simulations An Open Standard for the Description of Roads in Driving Simulations M. Dupuis VIRES Simulationstechnologie GmbH H. Grezlikowski DaimlerChrysler AG DSC Europe 04 October 2006 04 October 2006 copyright

More information

bcharge: Data-Driven Real-Time Charging Scheduling for Large-Scale Electric Bus Fleets

bcharge: Data-Driven Real-Time Charging Scheduling for Large-Scale Electric Bus Fleets bcharge: Data-Driven Real-Time Charging Scheduling for Large-Scale Electric Bus Fleets Guang Wang1, Xiaoyang Xie1, Fan Zhang2, Yunhuai Liu3, Desheng Zhang1 guang.wang@rutgers.edu Rutgers University1, SIAT2,

More information

CMPEN 411 VLSI Digital Circuits Spring Lecture 24: Peripheral Memory Circuits

CMPEN 411 VLSI Digital Circuits Spring Lecture 24: Peripheral Memory Circuits CMPEN 411 VLSI Digital Circuits Spring 2012 Lecture 24: Peripheral Memory Circuits [Adapted from Rabaey s Digital Integrated Circuits, Second Edition, 2003 J. Rabaey, A. Chandrakasan, B. Nikolic] Sp12

More information

The Research of Full Automatic Intelligent Oil Filtering System Based on Flow Totalizer Control

The Research of Full Automatic Intelligent Oil Filtering System Based on Flow Totalizer Control 2017 2nd International Conference on Mechanical Control and Automation (ICMCA 2017) ISBN: 978-1-60595-460-8 The Research of Full Automatic Intelligent Oil Filtering System Based on Flow Totalizer Control

More information

Bluetooth-Low-Energy based System for Automatic Public-Transport passengers' Movement data collection

Bluetooth-Low-Energy based System for Automatic Public-Transport passengers' Movement data collection Bluetooth-Low-Energy based System for Automatic Public-Transport passengers' Movement data collection Yuval Hadas Department of Management, Bar-Ilan University, Israel Boaz Ben Moshe Department of Computer

More information

High Performance Cache Replacement Using Re-Reference Interval Prediction (RRIP)

High Performance Cache Replacement Using Re-Reference Interval Prediction (RRIP) High Performance Cache Replacement Using Re-Reference Interval Prediction (RRIP) 1 T H E A C M I E E E I N T E R N A T I O N A L S Y M P O S I U M O N C O M P U T E R A R C H I T E C T U R E ( I S C A

More information

IBM x3850 X5 Energy Efficiency Leadership

IBM x3850 X5 Energy Efficiency Leadership IBM x3850 X5 Energy Efficiency Leadership Ted Howard 5/4/2011 x3850 X5 Energy Efficiency Leadership x3850 Has Demonstrated Leadership With Energy Consumption and Efficiency Performance Over The Predecessor

More information

INME 4011 Term Project Guideline

INME 4011 Term Project Guideline INME 4011 Term Project Guideline Each team consists of four students (maximum). The projects are described in the attached document. First part of the project includes the calculation of the shaft diameter

More information

Practical Resource Management in Power-Constrained, High Performance Computing

Practical Resource Management in Power-Constrained, High Performance Computing Practical Resource Management in Power-Constrained, High Performance Computing Tapasya Patki*, David Lowenthal, Anjana Sasidharan, Matthias Maiterth, Barry Rountree, Martin Schulz, Bronis R. de Supinski

More information

Setup of a multi-os platform based on the Xen hypervisor. An industral case study. Paolo Burgio

Setup of a multi-os platform based on the Xen hypervisor. An industral case study. Paolo Burgio Setup of a multi-os platform based on the Xen hypervisor An industral case study Paolo Burgio paolo.burgio@unimore.it Roberto Cavicchioli Ignacio Sanudo Olmedo Marco Solieri Who are we? High-Performance

More information

Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies

Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies Chris Paciorek and Yang Liu Departments of Biostatistics and Environmental

More information

Ampl2m. Kamil Herman Author of Ampl2m conversion tool. Who are you looking at

Ampl2m. Kamil Herman Author of Ampl2m conversion tool. Who are you looking at Who are you looking at Kamil Herman Author of conversion tool Senior automation engineer Working in Automation with ABB control systems since 1995 6 years in ABB Slovakia 2 year working for ABB Mannheim,

More information

SteelCentral Product Family Specifications

SteelCentral Product Family Specifications Specification Sheet SteelCentral Product Family Specifications Riverbed SteelCentral NetProfiler Solutions Product Specifications SteelCentral NetProfiler 7, 8, 9 SCNP-04270 Series Model SCNP-02270 Series

More information

American Petroleum Institute Dickinson Chapter. Justin J Kringstad Geological Engineer Director North Dakota Pipeline Authority

American Petroleum Institute Dickinson Chapter. Justin J Kringstad Geological Engineer Director North Dakota Pipeline Authority American Petroleum Institute Dickinson Chapter Justin J Kringstad Geological Engineer Director North Dakota Pipeline Authority February 27, 2018 JJ Kringstad - North Dakota Pipeline Authority 2 Presentation

More information

Adaptive diversification metaheuristic for the FSMVRPTW

Adaptive diversification metaheuristic for the FSMVRPTW Overview Adaptive diversification metaheuristic for the FSMVRPTW Olli Bräysy, University of Jyväskylä Pekka Hotokka, University of Jyväskylä Yuichi Nagata, Advanced Institute of Science and Technology

More information

Velocity Optimization of Pure Electric Vehicles with Traffic Dynamics Consideration

Velocity Optimization of Pure Electric Vehicles with Traffic Dynamics Consideration Velocity Optimization of Pure Electric Vehicles with Traffic Dynamics Consideration Liuwang Kang, Haiying Shen, and Ankur Sarker Department of Computer Science, University of Virginia Outline Introduction

More information

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Preetika Kulshrestha, Student Member, IEEE, Lei Wang, Student Member, IEEE, Mo-Yuen Chow,

More information

Building Fast and Accurate Powertrain Models for System and Control Development

Building Fast and Accurate Powertrain Models for System and Control Development Building Fast and Accurate Powertrain Models for System and Control Development Prasanna Deshpande 2015 The MathWorks, Inc. 1 Challenges for the Powertrain Engineering Teams How to design and test vehicle

More information

What s Cooking. Bernd Wiswedel KNIME KNIME.com AG. All Rights Reserved.

What s Cooking. Bernd Wiswedel KNIME KNIME.com AG. All Rights Reserved. What s Cooking Bernd Wiswedel KNIME 2017 KNIME.com AG. All Rights Reserved. Outline KNIME as an open (source) platform What s Cooking Speech Recognition H2O Integration Cloud Connectors & Offerings Guided

More information

Multi Core Processing in VisionLab

Multi Core Processing in VisionLab Multi Core Processing in Multi Core CPU Processing in 25 August 2014 Copyright 2001 2014 by Van de Loosdrecht Machine Vision BV All rights reserved jaap@vdlmv.nl Overview Introduction Demonstration Automatic

More information

Integrated Operations Knut Hovda UiO, May 20th 2011 ABB Industry Examples Calculations and engineering software. ABB Group June 17, 2011 Slide 1

Integrated Operations Knut Hovda UiO, May 20th 2011 ABB Industry Examples Calculations and engineering software. ABB Group June 17, 2011 Slide 1 Integrated Operations Knut Hovda UiO, May 20th 2011 ABB Industry Examples Calculations and engineering software ABB Group June 17, 2011 Slide 1 Contents About the speaker Introduction to ABB Oil, Gas &

More information

Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control

Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control 40 Special Issue Challenges to Realizing Clean High-Performance Diesel Engines Research Report Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control Matsuei Ueda

More information

Pipelines & Flow Assurance

Pipelines & Flow Assurance Pipelines & Flow Assurance Jamie Littler Technical Disciplines and Assurance Manager Shell UK Flow Assurance Wax Study on the Ravn Field Production System Wood Group Kenny: Hooman Haghighi, Jamie Littler,

More information

EcoCar3-ADAS. Project Plan. Summary. Why is This Project Important?

EcoCar3-ADAS. Project Plan. Summary. Why is This Project Important? EcoCar3-ADAS Project Plan Summary Scott Smith This project is the Advanced Driver Assistance System (ADAS) of the 2015-2016 Senior Design for the EcoCar3. This will be an embedded system for the EcoCar3

More information

Optimizing Performance and Fuel Economy of a Dual-Clutch Transmission Powertrain with Model-Based Design

Optimizing Performance and Fuel Economy of a Dual-Clutch Transmission Powertrain with Model-Based Design Optimizing Performance and Fuel Economy of a Dual-Clutch Transmission Powertrain with Model-Based Design Vijayalayan R, Senior Team Lead, Control Design Application Engineering, MathWorks India Pvt Ltd

More information

Key facts and analysis on driving and charge patterns Dr. Cristina Corchero, IREC Barcelona, November 18, 2013

Key facts and analysis on driving and charge patterns Dr. Cristina Corchero, IREC Barcelona, November 18, 2013 EVS27 Green emotion Project Session Key facts and analysis on driving and charge patterns Dr. Cristina Corchero, IREC Barcelona, November 18, 2013 Page 0 Green emotion - Data collection task STATISTICAL

More information

CS 152 Computer Architecture and Engineering

CS 152 Computer Architecture and Engineering CS 152 Computer Architecture and Engineering Lecture 23 Synchronization 2006-11-16 John Lazzaro (www.cs.berkeley.edu/~lazzaro) TAs: Udam Saini and Jue Sun www-inst.eecs.berkeley.edu/~cs152/ 1 Last Time:

More information

Electric Vehicle Charging Management Solution Accelerating the Deployment of Electric Vehicle Charging Infrastructures

Electric Vehicle Charging Management Solution Accelerating the Deployment of Electric Vehicle Charging Infrastructures EI Solution Ready Package Electric Vehicle Charging Management Solution Accelerating the Deployment of Electric Vehicle Charging Infrastructures SRP-Ei10 Intelligent EV Charging Scheduling Real-Time EV

More information

Estimating the availability of hydraulic drive systems operating under different functional profiles through simulation

Estimating the availability of hydraulic drive systems operating under different functional profiles through simulation Estimating the availability of hydraulic drive systems operating under different functional profiles through simulation Dr Sean Reed 1 and Dr Magnus Löfstrand 2 1: Centre for Risk and Reliability Engineering,

More information

Developing a Platoon-Wide Eco-Cooperative Adaptive Cruise Control (CACC) System

Developing a Platoon-Wide Eco-Cooperative Adaptive Cruise Control (CACC) System Developing a Platoon-Wide Eco-Cooperative Adaptive Cruise Control (CACC) System 2017 Los Angeles Environmental Forum August 28th Ziran Wang ( 王子然 ), Guoyuan Wu, Peng Hao, Kanok Boriboonsomsin, and Matthew

More information

Statistical Learning Examples

Statistical Learning Examples Statistical Learning Examples Genevera I. Allen Statistics 640: Statistical Learning August 26, 2013 (Stat 640) Lecture 1 August 26, 2013 1 / 19 Example: Microarrays arrays High-dimensional: Goals: Measures

More information

Peak Efficiency Aware Scheduling for Highly Energy Proportional Servers

Peak Efficiency Aware Scheduling for Highly Energy Proportional Servers Peak Efficiency Aware Scheduling for Highly Energy Proportional Servers Daniel Wong dwong@ece.ucr.edu University of California, Riverside Department of Electrical and Computer Engineering 2 Main Observations

More information

WHITE PAPER. Informatica PowerCenter 8 on HP Integrity Servers: Doubling Performance with Linear Scalability for 64-bit Enterprise Data Integration

WHITE PAPER. Informatica PowerCenter 8 on HP Integrity Servers: Doubling Performance with Linear Scalability for 64-bit Enterprise Data Integration WHITE PAPER Informatica PowerCenter 8 on HP Integrity Servers: Doubling Performance with Linear Scalability for 64-bit Enterprise Data Integration This document contains Confi dential, Proprietary and

More information

AN OPTIMIZED PROPULSION SYSTEM FOR Soyuz/ST

AN OPTIMIZED PROPULSION SYSTEM FOR Soyuz/ST 1 RD-0124 AN OPTIMIZED PROPULSION SYSTEM FOR Soyuz/ST Versailles, May 14,2002 Starsem Organization 2 35% 25% 15% 25% 50-50 European-Russian joint venture providing Soyuz launch services for the commercial

More information

How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements

How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements Kashif Nizam Khan Zhonghong Ou, Mikael Hirki, Jukka K. Nurminen, Tapio Niemi 1 Motivation The Large Hadron

More information

CVR Release Notes Page 1 of 7

CVR Release Notes Page 1 of 7 CVR Release Notes Page 1 of 7 CVR Software Release Notes VAEVR Version 9.17 Introduction CVR is pleased to announce Virginia Electronic Vehicle Registration (VA EVR) Software Release 9.17. This release

More information

Test Infrastructure Design for Core-Based System-on-Chip Under Cycle-Accurate Thermal Constraints

Test Infrastructure Design for Core-Based System-on-Chip Under Cycle-Accurate Thermal Constraints Test Infrastructure Design for Core-Based System-on-Chip Under Cycle-Accurate Thermal Constraints Thomas Edison Yu, Tomokazu Yoneda, Krishnendu Chakrabarty and Hideo Fujiwara Nara Institute of Science

More information

Development of Rattle Noise Analysis Technology for Column Type Electric Power Steering Systems

Development of Rattle Noise Analysis Technology for Column Type Electric Power Steering Systems TECHNICAL REPORT Development of Rattle Noise Analysis Technology for Column Type Electric Power Steering Systems S. NISHIMURA S. ABE The backlash adjustment mechanism for reduction gears adopted in electric

More information

BigRoad. Scaling Road Data Acquisition for Dependable Self-Driving. The first two authors are co-primary student authors. *

BigRoad. Scaling Road Data Acquisition for Dependable Self-Driving. The first two authors are co-primary student authors. * BigRoad Scaling Road Data Acquisition for Dependable Self-Driving Luyang Liu *, Hongyu Li *, Jian Liu #, Cagdas Karatas *, Yan Wang, Marco Gruteser *, Yingying Chen #, Richard P. Martin * The first two

More information

Storage and Memory Hierarchy CS165

Storage and Memory Hierarchy CS165 Storage and Memory Hierarchy CS165 What is the memory hierarchy? L1

More information

Reciprocating Compressor Modeling: A Comparison between 3D-FSI and GT-SUITE 1D Simulation Results

Reciprocating Compressor Modeling: A Comparison between 3D-FSI and GT-SUITE 1D Simulation Results NIDEC CORPORATION Reciprocating Compressor Modeling: A Comparison between 3D-FSI and Simulation Results European GT Conference 2018 Eric Hisao Murakami Agenda Nidec Global Appliance: Company Overview Reciprocating

More information

STPA in Automotive Domain Advanced Tutorial

STPA in Automotive Domain Advanced Tutorial www.uni-stuttgart.de The Second European STAMP Workshop 2014 STPA in Automotive Domain Advanced Tutorial Asim Abdulkhaleq, Ph.D Student Institute of Software Technology University of Stuttgart, Germany

More information

Fault Attacks Made Easy: Differential Fault Analysis Automation on Assembly Code

Fault Attacks Made Easy: Differential Fault Analysis Automation on Assembly Code Fault Attacks Made Easy: Differential Fault Analysis Automation on Assembly Code Jakub Breier, Xiaolu Hou and Yang Liu 10 September 2018 1 / 25 Table of Contents 1 Background and Motivation 2 Overview

More information

Workbench Film Thickness Detection Based on Laser Sensor Mo-Yun LIU, Han-Bing TANG*, Ma-Chao JING, and Zhen ZHOU

Workbench Film Thickness Detection Based on Laser Sensor Mo-Yun LIU, Han-Bing TANG*, Ma-Chao JING, and Zhen ZHOU Advances in Engineering Research (AER), volume 105 3rd Annual International Conference on Mechanics and Mechanical Engineering (MME 2016) Workbench Film Thickness Detection Based on Laser Sensor Mo-Yun

More information

MORSE: MOdel-based Real-time Systems Engineering. Reducing physical testing in the calibration of diagnostic and driveabilty features

MORSE: MOdel-based Real-time Systems Engineering. Reducing physical testing in the calibration of diagnostic and driveabilty features MORSE: MOdel-based Real-time Systems Engineering Reducing physical testing in the calibration of diagnostic and driveabilty features Mike Dempsey Claytex Future Powertrain Conference 2017 MORSE project

More information

Videosystem CAR-READER

Videosystem CAR-READER Monitoring, controlling and recording of vehicle access Monitoring The entries and exits to and from a company area are recorded from video cameras and displayed on a PC screen. The system allows depending

More information

VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE

VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE P. Gopi Krishna 1 and T. Gowri Manohar 2 1 Department of Electrical and Electronics Engineering, Narayana

More information

Food Truck Parking Location Assignments

Food Truck Parking Location Assignments Food Truck Parking Location Assignments Siamak Khaledi Ankit Shah Matt Shoaf Sponsor: Karen Wrege Agenda Problem Domain Analysis of Existing System Proposed Solution Prototype Validation Conclusions 2

More information

microscopic activity based travel demand modelling in large scale simulations The application of

microscopic activity based travel demand modelling in large scale simulations The application of The application of microscopic activity based travel demand modelling in large scale simulations Georg Hertkorn, Peter Wagner georg.hertkorn@dlr.de, peter.wagner@dlr.de German Aerospace Centre Deutsches

More information

Correlation of Occupant Evaluation Index on Vehicle-occupant-guardrail Impact System Guo-sheng ZHANG, Hong-li LIU and Zhi-sheng DONG

Correlation of Occupant Evaluation Index on Vehicle-occupant-guardrail Impact System Guo-sheng ZHANG, Hong-li LIU and Zhi-sheng DONG 07 nd International Conference on Computer, Mechatronics and Electronic Engineering (CMEE 07) ISBN: 978--60595-53- Correlation of Occupant Evaluation Index on Vehicle-occupant-guardrail Impact System Guo-sheng

More information

COIL WINDING TECNHOLOGY LINE. Advanced High-Tech Solutions for Coil Winding Process Control

COIL WINDING TECNHOLOGY LINE. Advanced High-Tech Solutions for Coil Winding Process Control COIL WINDING TECNHOLOGY LINE Advanced High-Tech Solutions for Coil Winding Process Control TOP QUALITY & PRODUCTIVITY HIGH FLEXIBILITY USER-FRIENDLY COIL WINDING TECHNOLOGY LINE WHY CWF The Ultimate Innovation

More information

Collapsible Electric Longboard

Collapsible Electric Longboard Collapsible Electric Longboard Team Members Jie Cai, Tara Davis, Ismail Iberkak, Philemon Kiptoo, Maya Patel, Joe Squillace, Houston Warren April 23, 2018 Motivation Exploring Alternative/Emerging Transportation

More information

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency 2016 3 rd International Conference on Vehicle, Mechanical and Electrical Engineering (ICVMEE 2016) ISBN: 978-1-60595-370-0 Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

More information

BEA 550 Kombi The mobile combination Exhaust-gas diagnosis on the go

BEA 550 Kombi The mobile combination Exhaust-gas diagnosis on the go BEA 55 Kombi The mobile combination Exhaust-gas diagnosis on the go BEA 55 Kombi Developed in conjunction with inspection organizations specially for mobile use. BEA 55 : The advantages at a glance BEA

More information

Simulation of Rollover crash events

Simulation of Rollover crash events Simulation of Rollover crash events Use of DEFORMABLE_TO_RIGID 1 Anders Jonsson, DYNAmore Nordic Christofer Karlsson, Scania Background Outline Scania s work with active and passive safety Heavy trucks

More information

Dell EMC SCv ,000 Mailbox Exchange 2016 Resiliency Storage Solution using 10K drives

Dell EMC SCv ,000 Mailbox Exchange 2016 Resiliency Storage Solution using 10K drives Dell EMC SCv3020 14,000 Mailbox Exchange 2016 Resiliency Storage Solution using 10K drives Microsoft ESRP 4.0 Abstract This document describes the Dell EMC SCv3020 storage solution for Microsoft Exchange

More information

Freight Performance Measures Using Truck GPS Data and the Application of National Performance Measure Research Data Set (NPMRDS)

Freight Performance Measures Using Truck GPS Data and the Application of National Performance Measure Research Data Set (NPMRDS) Freight Performance Measures Using Truck GPS Data and the Application of National Performance Measure Research Data Set (NPMRDS) Chen-Fu Liao Department of Civil, Environmental, and Geo- Engineering University

More information

INSTITUTO SUPERIOR TÉCNICO. Architectures for Embedded Computing

INSTITUTO SUPERIOR TÉCNICO. Architectures for Embedded Computing UNIVERSIDADE TÉCNICA DE LISBOA INSTITUTO SUPERIOR TÉCNICO Departamento de Engenharia Informática Architectures for Embedded Computing MEIC-A, MEIC-T, MERC Lecture Slides Version 3.0 - English Lecture 02

More information

Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation

Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation Leveraging Simulation for Hybrid and Electric Powertrain Design in the Automotive, Presentation Agenda

More information

Application of PLC in automatic control system in the production of steel. FAN Zhechao, FENG Hongwei

Application of PLC in automatic control system in the production of steel. FAN Zhechao, FENG Hongwei International Conference on Manufacturing Science and Engineering (ICMSE 2015) Application of PLC in automatic control system in the production of steel FAN Zhechao, FENG Hongwei Inner Mongolia Technical

More information

Prototypage rapide du contrôle d'un convertisseur de puissance DC-DC à haut rendement

Prototypage rapide du contrôle d'un convertisseur de puissance DC-DC à haut rendement Prototypage rapide du contrôle d'un convertisseur de puissance DC-DC à haut rendement Piotr Dworakowski, SuperGrid Institute 21/06/2016 Agenda Supergrid origins and SuperGrid Institute SAS Power converter

More information

Five Cool Things You Can Do With Powertrain Blockset The MathWorks, Inc. 1

Five Cool Things You Can Do With Powertrain Blockset The MathWorks, Inc. 1 Five Cool Things You Can Do With Powertrain Blockset Mike Sasena, PhD Automotive Product Manager 2017 The MathWorks, Inc. 1 FTP75 Simulation 2 Powertrain Blockset Value Proposition Perform fuel economy

More information

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city,

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city, Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura Nihon University, Narashinodai 7-24-1, Funabashi city, Email: nakamura@ecs.cst.nihon-u.ac.jp Abstract A minimum

More information

Application of Airborne Electro-Optical Platform with Shock Absorbers. Hui YAN, Dong-sheng YANG, Tao YUAN, Xiang BI, and Hong-yuan JIANG*

Application of Airborne Electro-Optical Platform with Shock Absorbers. Hui YAN, Dong-sheng YANG, Tao YUAN, Xiang BI, and Hong-yuan JIANG* 2016 International Conference on Applied Mechanics, Mechanical and Materials Engineering (AMMME 2016) ISBN: 978-1-60595-409-7 Application of Airborne Electro-Optical Platform with Shock Absorbers Hui YAN,

More information

UNC-Charlotte's Power Engineering Teaching lab

UNC-Charlotte's Power Engineering Teaching lab 1 UNC-Charlotte's Power Engineering Teaching lab B. Chowdhury Panel Session Title: Existing and Proposed Power Systems Laboratories for the Undergraduate Curriculum PES GM 2015 2 Outline Background - Energy

More information

Simple, Fast High Reliability Rework of Leadless Devices Bob Wettermann

Simple, Fast High Reliability Rework of Leadless Devices Bob Wettermann Simple, Fast High Reliability Rework of Leadless Devices Bob Wettermann Recently, the impact of leadless device reliability after rework was investigated as part of a NASA/DoD project for different leadless

More information

Exercises with the maxon Selection Program

Exercises with the maxon Selection Program Exercises with the maxon Selection Program http://www.maxonmotor.com/maxon/view/msp Purposes and Goals The participants - learn how to use the main parts of the maxon selection program. - select motor-gearhead

More information

Motion Planning Introduction to Optimization Techniques

Motion Planning Introduction to Optimization Techniques Motion Planning Introduction to Optimization Techniques Martin Rufli IBM Research GmbH Margarita Chli, Paul Furgale, Marco Hutter, Davide Scaramuzza, Roland Siegwart Margarita Chli, Paul Furgale, Marco

More information

Chapter 2 Analysis on Lock Problem in Frontal Collision for Mini Vehicle

Chapter 2 Analysis on Lock Problem in Frontal Collision for Mini Vehicle Chapter 2 Analysis on Lock Problem in Frontal Collision for Mini Vehicle Ce Song, Hong Zang and Jingru Bao Abstract To study the lock problem in the frontal collision test on a kind of mini vehicle s sliding

More information

Module-Integrated Power Electronics for Solar Photovoltaics. Robert Pilawa-Podgurski Power Affiliates Program 33rd Annual Review Friday, May 4th 2012

Module-Integrated Power Electronics for Solar Photovoltaics. Robert Pilawa-Podgurski Power Affiliates Program 33rd Annual Review Friday, May 4th 2012 Module-Integrated Power Electronics for Solar Photovoltaics Robert Pilawa-Podgurski Power Affiliates Program 33rd Annual Review Friday, May 4th 2012 Solar Photovoltaic System Challenges Solar Photovoltaic

More information

An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG

An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG 2017 2 nd International Conference on Test, Measurement and Computational Method (TMCM 2017) ISBN: 978-1-60595-465-3 An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG

More information

ParkNet: Drive-by Sensing of Road-side Parking Statistics

ParkNet: Drive-by Sensing of Road-side Parking Statistics ParkNet: Drive-by Sensing of Road-side Parking Statistics Published by: Mathur, Suhas, Tong Jin, Nikhil Kasturirangan, Janani Chandrasekaran, Wenzhi Xue, Marco Gruteser, and Wade Trappe in Mobisys 2010.

More information

Daily UIS Production Service Level Summary - Prime Time - July 2005

Daily UIS Production Service Level Summary - Prime Time - July 2005 Daily UIS Production Service Level Summary - Prime Time - July 2005 Job Cmds R/T TXS R/T TXS R/T TXS R/T TXS CPU Total CPU Unique R/T TXS Since 9/1/04 1-Jul - 44.0 0.1 157.1 0.2 26.3 0.4 0.7 0.2 16.5 229.7

More information

Extending Exhaust Gas Recirculation Limits in Diesel Engines

Extending Exhaust Gas Recirculation Limits in Diesel Engines Extending Exhaust Gas Recirculation Limits in Diesel Engines Katey E. Lenox R. M. Wagner, J. B. Green Jr., J. M. Storey, and C. S. Daw Oak Ridge National Laboratory A&WMA 93rd Annual Conference and Exposition

More information

Technological Viability Evaluation. Results from the SWOT Analysis Diego Salzillo Arriaga, Siemens

Technological Viability Evaluation. Results from the SWOT Analysis Diego Salzillo Arriaga, Siemens Technological Viability Evaluation Results from the SWOT Analysis Diego Salzillo Arriaga, Siemens 26.04.2018 Agenda Study Objectives and Scope SWOT Analysis Methodology Cluster 4 Results Cross-Cluster

More information

Improving Onboard DS-ATC Equipment Functions in Response to Shinkansen Service Expansion

Improving Onboard DS-ATC Equipment Functions in Response to Shinkansen Service Expansion Hitachi Review Vol. 66 (2017), No. 2 167 Featured Articles III Improving Onboard DS-ATC Equipment Functions in Response to Shinkansen Service Expansion Hiroyuki Yokoyama Satomi Minesaki Tomohide Kidachi

More information

GDI measurements with a Fast Particulate Spectrometer

GDI measurements with a Fast Particulate Spectrometer Presenter: Dr Tim Hands - Cambustion Ltd, Cambridge, UK Co-Authors K St J Reavell, C Nickolaus - Cambustion Ltd, Cambridge, UK Prof N Collings Cambustion Ltd, Cambridge University Engineering Dept. Abstract:

More information

UpBit:'Scalable'In0Memory' Updatable'Bitmap'Indexing

UpBit:'Scalable'In0Memory' Updatable'Bitmap'Indexing UpBit:'Scalable'InMemory' Updatable'Bitmap'Indexing Manos&Athanassoulis Harvard&University Talk&at&CS65,&September&26 th,&26 Indexing'for'Analytical'Workloads Column&A 3 A= A=2 A=3 Specialized&indexing

More information

Presentation: The Automotive Market & Composite Material Outlook Presented by: Marc Benevento, Industrial Market Insight

Presentation: The Automotive Market & Composite Material Outlook Presented by: Marc Benevento, Industrial Market Insight Presentation: The Automotive Market & Composite Material Outlook Presented by: Marc Benevento, Industrial Market Insight 2015 Industrial Market Insight LLC. All Rights Reserved. Outline Ground Transportation

More information

AMBR* Engine for Science Missions

AMBR* Engine for Science Missions AMBR* Engine for Science Missions NASA In Space Propulsion Technology (ISPT) Program *Advanced Material Bipropellant Rocket (AMBR) April 2010 AMBR Status Information Outline Overview Objectives Benefits

More information

The MathWorks Crossover to Model-Based Design

The MathWorks Crossover to Model-Based Design The MathWorks Crossover to Model-Based Design The Ohio State University Kerem Koprubasi, Ph.D. Candidate Mechanical Engineering The 2008 Challenge X Competition Benefits of MathWorks Tools Model-based

More information

Targeted Application of STATCOM Technology in the Distribution Zone

Targeted Application of STATCOM Technology in the Distribution Zone Targeted Application of STATCOM Technology in the Distribution Zone Christopher J. Lee Senior Power Controls Design Engineer Electrical Distribution Division Mitsubishi Electric Power Products Electric

More information

RB-Mel-03. SCITOS G5 Mobile Platform Complete Package

RB-Mel-03. SCITOS G5 Mobile Platform Complete Package RB-Mel-03 SCITOS G5 Mobile Platform Complete Package A professional mobile platform, combining the advatages of an industrial robot with the flexibility of a research robot. Comes with Laser Range Finder

More information

License Model Schedule Actuate License Models for the Open Text End User License Agreement ( EULA ) effective as of November, 2015

License Model Schedule Actuate License Models for the Open Text End User License Agreement ( EULA ) effective as of November, 2015 License Model Schedule Actuate License Models for the Open Text End User License Agreement ( EULA ) effective as of November, 2015 1) ACTUATE PRODUCT SPECIFIC SOFTWARE LICENSE PARAMETERS AND LIMITATIONS

More information