SlideShare a Scribd company logo
1 of 22
Understanding the
Characteristics of
AndroidWearOS
Renju Liu, Felix Xiaozhu Lin
Purdue ECE
Presentation By: Pratik Jain
Motivation
 Interactive wearables, like smart watches, are a newcomer to the
spectrum of mobile computers.
 Integrate computing even tighter with our daily lives.
 Substantial increase in demand for smart watches.
Usage
Patterns
&
Device
Hardware
 Users interact with wearable devices frequently throughout the
daily use
 Each interaction is short ( < 10s ), and is dedicated to a simple task
 Due to the limited content that can be displayed on one screen,
users spend a short time on one screen before switching to the
next.
 Tiny Battery capacity (200 – 400mAh)
 Slower CPU – Fewer cores
 Simpler CPU – Scaled-down but often architecturally identical to
handheld’s CPU
AndroidWearOS
 One of the most popular OSes for interactive wearables.
 Wearable OS with the most public information.
 Supports third-party applications and features a resigned system
UI, including Card for notifications, Context streams, and voice
input.
 Apps – renovated UI – Follow Android’s conventional
programming paradigm – Written in Java – Compiled ahead-of-
time – executed atop the managedAndroid Runtime.
 Major OS components –
 System Server – Key daemon hosting the core OS services
 Surface Flinger – Daemon controlling UI animation
 Clockwork – OS shell that implements the system UI
Benchmark
Scenarios
 A benchmark suite that consists of 15 benchmarks falling into the
following 4 categories:
1. Wakeup – Due to internal or external events, device transits out of
suspended mode and presents brief information. Due to frequent daily
wakeup, energy efficiency is the most important metric.
2. Single input – A waking wearable device responds to a single input
from the user. Because the user is waiting, the device needs to achieve
low UI latency.
3. Continuous interaction – Users are interacting with the device
continuously. The resultant UI animation requires the device to
produce a steady stream of graphic frames.
4. Sensing – For the execution of wearable apps, sensor data is sampled
and processed periodically to collect context information.
METHODOLOGY
Experimental
Setup
 All the benchmarks are run on 2 state-of-the-art Android Wear
devices
 LGWatch R
 Samsung Gear Live
 Qualcomm’s APQ8026 system on-chip
 AndroidWear 5.0 “Lollipop”
Power
Management
 Batteries have tiny contacts which are incompatible with
commodity power monitors.
 A compatible interface circuit is carved out from a smartphone
battery.
 Used the interface as an adapter between the smart watch and an
external power monitor.
The battery
interface carved
out from Nexus 5
The interface
(flipped) connected
to the LG watch R
Toolset
 Used the following to examine system behaviors at different levels
and granularities
 Systrace – for capturing global system events such as scheduling, I/O
activities, and IPC
 Android Runtime’s built-in function tracer – for recording function
call history in individual processes
 Linux perf – for sampling CPU performance counters.
Tackling
profiling
overhead
 EventTracing – Major profiling overhead
 Memory overhead can be overwhelming in tracing function
invocations.
 2 ways used to tackle
 In quantifying global system behaviors, the paper only relies on
system events. It collects function trace from extra runs.
 In quantifying function-level activities, deduction of an overhead of
4 µs from each traced function invocation ( constant overhead ).
CPUUsage
 CPU usage is collected at two granularities
 Task-level breakdown. An analyzer is built to identify the tasks .
 Function-level breakdown. To further locate the performance
hot spots in System Server, the following 2 metrics are employed:
 Exclusive CPU cycles are spent in the function’s own code
 Inclusive CPU cycles are spent in the function’s code as well as
in all subroutines being called
 Both metrics include the time spent in both user and kernel spaces
and do not cover the time when a task is off CPU due to being
scheduled out.
IdleTime
Analysis
 Amount and duration of the observed idle episodes are unusual.
 Match some idle episodes to system events known to cause idle, e.g.
I/O and power management.
 Others often root in stalling of OS service in serving app’s requests.
 IdleChecker, an analyzer that helps mapping anomalous idle episodes
to the responsible code regions, based on a simple rationale:
The function calls and IPC transactions spanning an anomalous idle
episode are suspicious.
 IdleChecker runs the following steps for each idle episode.
 Identifies suspicious app tasks that are blocked throughout the entire
idle episode but run after the episode.
 For each suspicious task, it identifies two suspicious CPU time quanta:
the one right before the idle episode and the one right after it.
 Examines the suspicious quanta, looking for IPC transactions spanning
across the idle episode.
 Identifies the function invocations that either coincide with the IPC
or span across the idle episode.
Thread-level
Parallelism
 Metric widely used for gauging an interactive system’s need for
core count.
 Average number of busy CPU cores during the non-idle time.
TLP = 𝑖=1
𝑛
𝑖 ∗ 𝑐𝑖/(1 − 𝑐0)
 𝑐0 - total time when no threads are running
𝑐𝑖 - time when exactly i threads are running simultaneously
n - number of cores available.
 For measurement, all 4 cores are forced online
Microarchitectural
behaviors
 Microarchitecture design is a Mystery
 By using the Linux perf, the paper samples the performance
counters of the Cortex-A7 CPU on test devices.
 Observe branch prediction, cache, andTLB in all benchmarks
RESULTS
Where doCPU
cycles go?
 Intensive OS execution often dominates the global CPU usage.
 Many costly OS services are likely to make software unnecessarily
complicated
 The CPU time distribution of hot functions is highly skewed.
 Manipulating basic data structures consumes substantial CPU
cycles.
 Legacy OS functions may become serious performance
bottlenecks
 OS Execution Bottlenecks
 setLight(), Layout(), computeOom(), getSimpleName()
Idle Episodes
 Plentiful and of a variety of lengths
 Improper OS Designs
 Interference from voice UI
 Legacy support for device suspending
 Performance overprovision during continuous Interaction
 Design Implications
 Hunting OS inefficiencies
 Filling idle time with useful work
 reducing CPU & GPU clock rates which will shrink idle episodes
 predictive execution
Thread-level
parallelism
 Short interactions exhibit substantial TLP, which is on par with
desktop workloads.
 While apps are mostly single-threaded, OS daemons contribute to
TLP significantly.
 A wearable device needs at least two cores.
Microarchitectural
behaviors
 A significant mismatch exists between the OS and CPU
microarchitecture, particularly in L1 icache, iTLB, and branch
predictor.
 The mismatch is largely due to the OS code complexity, and will
not be eliminated by a unilateral enhancement of wearable CPU.
 OS should be trimmed down to match the simplicity of its apps.
RelatedWork
 Gao et al. find that smartphone workloads show limitedTLP,
concluding that they need no more than two cores.
 ProfileDroid contributes an approach for charactering smartphone
apps at multiple layers
 Min et al. studies the battery usage of smart watches
 WearDrive creates synthetic benchmarks to shed light on
wearable storage.
 RisQ andTypingRing target gesture recognition
 iShadow tracks gaze in real time
 Ha et al. build wearable for cognitive assistance
 Cornelius et al. focus on user identification
Recap
 In-depth analysis of one of the most popular wearable Oses,
Android Wear.
 Examination of 4 key aspects: CPU usage, idle episodes, TLP, and
micro-architectural behaviors – in fifteen benchmarks.
 Discovery of serious OS inefficiencies and system bottlenecks that
were widespread but unknown before.
 The results clearly point out the system bottlenecks for immediate
optimization and have strong implications on future wearable
system software and hardware design.
THANKYOU!

More Related Content

What's hot

Android Booting Sequence
Android Booting SequenceAndroid Booting Sequence
Android Booting SequenceJayanta Ghoshal
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018Rao Purna
 
Android - A brief introduction
Android - A brief introductionAndroid - A brief introduction
Android - A brief introductionRoshan Gautam
 
application layer protocols
application layer protocolsapplication layer protocols
application layer protocolsbhavanatmithun
 
Mobile Operating Systems
Mobile Operating Systems Mobile Operating Systems
Mobile Operating Systems Anant Lodha
 
Operating systems essentials & Android OS concepts
Operating systems essentials & Android OS conceptsOperating systems essentials & Android OS concepts
Operating systems essentials & Android OS conceptsMohamed Taman
 
Android - Application Framework
Android - Application FrameworkAndroid - Application Framework
Android - Application FrameworkYong Heui Cho
 
Evolution of android operating system
Evolution of android operating systemEvolution of android operating system
Evolution of android operating systemMd. Abdullah Al Maruf
 
android architecture
android architectureandroid architecture
android architectureAashita Gupta
 
Huawei w1 u00 maintenance manual service manual
Huawei w1 u00 maintenance manual service manualHuawei w1 u00 maintenance manual service manual
Huawei w1 u00 maintenance manual service manualkamalppc
 
Introduction to Android, Architecture & Components
Introduction to  Android, Architecture & ComponentsIntroduction to  Android, Architecture & Components
Introduction to Android, Architecture & ComponentsVijay Rastogi
 
Anshul chechani android app development report
Anshul chechani android app development reportAnshul chechani android app development report
Anshul chechani android app development reportAnshul Chechani
 
Android operating system.
Android operating system.Android operating system.
Android operating system.SAKSHIMORE18
 

What's hot (20)

Android Booting Sequence
Android Booting SequenceAndroid Booting Sequence
Android Booting Sequence
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018
 
Android - A brief introduction
Android - A brief introductionAndroid - A brief introduction
Android - A brief introduction
 
application layer protocols
application layer protocolsapplication layer protocols
application layer protocols
 
Remote Login
Remote LoginRemote Login
Remote Login
 
Linux OS presentation
Linux OS presentationLinux OS presentation
Linux OS presentation
 
Mobile Operating Systems
Mobile Operating Systems Mobile Operating Systems
Mobile Operating Systems
 
Operating systems essentials & Android OS concepts
Operating systems essentials & Android OS conceptsOperating systems essentials & Android OS concepts
Operating systems essentials & Android OS concepts
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
 
Android - Application Framework
Android - Application FrameworkAndroid - Application Framework
Android - Application Framework
 
Android OS 2019
Android OS 2019Android OS 2019
Android OS 2019
 
Evolution of android operating system
Evolution of android operating systemEvolution of android operating system
Evolution of android operating system
 
Android 9.0 pie
Android 9.0 pieAndroid 9.0 pie
Android 9.0 pie
 
android architecture
android architectureandroid architecture
android architecture
 
Huawei w1 u00 maintenance manual service manual
Huawei w1 u00 maintenance manual service manualHuawei w1 u00 maintenance manual service manual
Huawei w1 u00 maintenance manual service manual
 
Android presentation slide
Android presentation slideAndroid presentation slide
Android presentation slide
 
Introduction to Android, Architecture & Components
Introduction to  Android, Architecture & ComponentsIntroduction to  Android, Architecture & Components
Introduction to Android, Architecture & Components
 
Anshul chechani android app development report
Anshul chechani android app development reportAnshul chechani android app development report
Anshul chechani android app development report
 
Android operating system.
Android operating system.Android operating system.
Android operating system.
 
Telephony API
Telephony APITelephony API
Telephony API
 

Viewers also liked

Presentation2
Presentation2Presentation2
Presentation2Jie Wang
 
Radio frequency identification
Radio frequency identificationRadio frequency identification
Radio frequency identificationMustahid Ali
 
PPG, ECG and Blood Pressure Circuitry
PPG, ECG and Blood Pressure CircuitryPPG, ECG and Blood Pressure Circuitry
PPG, ECG and Blood Pressure Circuitrymgoutham kumarreddy
 
RF based Wireless Robot using 8051 Microcontroller
RF based Wireless Robot using 8051 MicrocontrollerRF based Wireless Robot using 8051 Microcontroller
RF based Wireless Robot using 8051 MicrocontrollerRahul Kumar
 
Artificial Passenger Fair
Artificial Passenger FairArtificial Passenger Fair
Artificial Passenger FairDIYA NAMBIAR
 
Blue eyes technology ppt. by UTKARSH LOKPRIYE
Blue eyes technology ppt. by UTKARSH LOKPRIYEBlue eyes technology ppt. by UTKARSH LOKPRIYE
Blue eyes technology ppt. by UTKARSH LOKPRIYEUtkarsh Lokpriye
 
5 g technology...........the best presentation ever
5 g technology...........the best presentation ever5 g technology...........the best presentation ever
5 g technology...........the best presentation everHitesh kumar gupta
 
globel warming and green house effect
globel warming and green house effectglobel warming and green house effect
globel warming and green house effectVipin Kannan
 
Google car (self driving car )
Google car (self driving car )Google car (self driving car )
Google car (self driving car )imrana326
 
Artificial passenger
Artificial passengerArtificial passenger
Artificial passengerDhanya LK
 
Display devices and TOUCH SCREEN TECHNOLOGY
Display devices and TOUCH SCREEN TECHNOLOGYDisplay devices and TOUCH SCREEN TECHNOLOGY
Display devices and TOUCH SCREEN TECHNOLOGYabhishekpal1991
 
A basic presentation on cycloconverter
A basic presentation on cycloconverterA basic presentation on cycloconverter
A basic presentation on cycloconverterRezvi Hossain
 
Air craft surveillance
Air craft surveillanceAir craft surveillance
Air craft surveillanceBikas Sadashiv
 

Viewers also liked (20)

Microcontrollers
MicrocontrollersMicrocontrollers
Microcontrollers
 
Awesome presentation
Awesome presentationAwesome presentation
Awesome presentation
 
Presentation2
Presentation2Presentation2
Presentation2
 
Radio frequency identification
Radio frequency identificationRadio frequency identification
Radio frequency identification
 
PPG, ECG and Blood Pressure Circuitry
PPG, ECG and Blood Pressure CircuitryPPG, ECG and Blood Pressure Circuitry
PPG, ECG and Blood Pressure Circuitry
 
Auto cad
Auto cadAuto cad
Auto cad
 
RF based Wireless Robot using 8051 Microcontroller
RF based Wireless Robot using 8051 MicrocontrollerRF based Wireless Robot using 8051 Microcontroller
RF based Wireless Robot using 8051 Microcontroller
 
Wireless 4 g presentation
Wireless 4 g presentationWireless 4 g presentation
Wireless 4 g presentation
 
Artificial Passenger Fair
Artificial Passenger FairArtificial Passenger Fair
Artificial Passenger Fair
 
Blue eyes technology ppt. by UTKARSH LOKPRIYE
Blue eyes technology ppt. by UTKARSH LOKPRIYEBlue eyes technology ppt. by UTKARSH LOKPRIYE
Blue eyes technology ppt. by UTKARSH LOKPRIYE
 
Traffic controller
Traffic controllerTraffic controller
Traffic controller
 
5 g technology...........the best presentation ever
5 g technology...........the best presentation ever5 g technology...........the best presentation ever
5 g technology...........the best presentation ever
 
globel warming and green house effect
globel warming and green house effectglobel warming and green house effect
globel warming and green house effect
 
Google car (self driving car )
Google car (self driving car )Google car (self driving car )
Google car (self driving car )
 
Li fi
Li fi Li fi
Li fi
 
Artificial passenger
Artificial passengerArtificial passenger
Artificial passenger
 
Artificial Passenger
Artificial Passenger Artificial Passenger
Artificial Passenger
 
Display devices and TOUCH SCREEN TECHNOLOGY
Display devices and TOUCH SCREEN TECHNOLOGYDisplay devices and TOUCH SCREEN TECHNOLOGY
Display devices and TOUCH SCREEN TECHNOLOGY
 
A basic presentation on cycloconverter
A basic presentation on cycloconverterA basic presentation on cycloconverter
A basic presentation on cycloconverter
 
Air craft surveillance
Air craft surveillanceAir craft surveillance
Air craft surveillance
 

Similar to Understanding the characteristics of android wear os

Embedded 2 marks Anna university-Adhithya.pdf
Embedded 2 marks Anna university-Adhithya.pdfEmbedded 2 marks Anna university-Adhithya.pdf
Embedded 2 marks Anna university-Adhithya.pdfAdhithyaS5
 
[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...
[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...
[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...Matteo Ferroni
 
CA UNIT I PPT.ppt
CA UNIT I PPT.pptCA UNIT I PPT.ppt
CA UNIT I PPT.pptRAJESH S
 
Operating systems
Operating systemsOperating systems
Operating systemsanishgoel
 
LM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system callsLM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system callsmanideepakc
 
EMBEDDED_SYSTEM_INTRODUCTION.pdf
EMBEDDED_SYSTEM_INTRODUCTION.pdfEMBEDDED_SYSTEM_INTRODUCTION.pdf
EMBEDDED_SYSTEM_INTRODUCTION.pdfNadiSarj2
 
Device Drivers
Device DriversDevice Drivers
Device DriversSuhas S R
 
Enea Enabling Real-Time in Linux Whitepaper
Enea Enabling Real-Time in Linux WhitepaperEnea Enabling Real-Time in Linux Whitepaper
Enea Enabling Real-Time in Linux WhitepaperEnea Software AB
 
Trainingreport on embedded system
Trainingreport on embedded systemTrainingreport on embedded system
Trainingreport on embedded systemMukul Mohal
 
OPERATING SYSTEM - SHORT NOTES
OPERATING SYSTEM - SHORT NOTESOPERATING SYSTEM - SHORT NOTES
OPERATING SYSTEM - SHORT NOTESsuthi
 
Troubleshooting & Tools
Troubleshooting & ToolsTroubleshooting & Tools
Troubleshooting & ToolsPrabu U
 
Components of Computer system.ppt
Components of Computer system.pptComponents of Computer system.ppt
Components of Computer system.pptRAJESH S
 
Oslecture1
Oslecture1Oslecture1
Oslecture1kausik23
 
APE-Annotation Programming For Energy Eciency in Android
APE-Annotation Programming For Energy Eciency in AndroidAPE-Annotation Programming For Energy Eciency in Android
APE-Annotation Programming For Energy Eciency in Androidkaranwayne
 
A Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High PerformanceA Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High PerformanceAM Publications
 
PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...
PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...
PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...IJITCA Journal
 

Similar to Understanding the characteristics of android wear os (20)

Embedded systems
Embedded systemsEmbedded systems
Embedded systems
 
Embedded 2 marks Anna university-Adhithya.pdf
Embedded 2 marks Anna university-Adhithya.pdfEmbedded 2 marks Anna university-Adhithya.pdf
Embedded 2 marks Anna university-Adhithya.pdf
 
[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...
[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...
[EWiLi2016] Towards a performance-aware power capping orchestrator for the Xe...
 
CA UNIT I PPT.ppt
CA UNIT I PPT.pptCA UNIT I PPT.ppt
CA UNIT I PPT.ppt
 
Hardware-Software Codesign
Hardware-Software CodesignHardware-Software Codesign
Hardware-Software Codesign
 
Operating systems
Operating systemsOperating systems
Operating systems
 
LM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system callsLM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system calls
 
EMBEDDED_SYSTEM_INTRODUCTION.pdf
EMBEDDED_SYSTEM_INTRODUCTION.pdfEMBEDDED_SYSTEM_INTRODUCTION.pdf
EMBEDDED_SYSTEM_INTRODUCTION.pdf
 
Device Drivers
Device DriversDevice Drivers
Device Drivers
 
Lab6 rtos
Lab6 rtosLab6 rtos
Lab6 rtos
 
Enea Enabling Real-Time in Linux Whitepaper
Enea Enabling Real-Time in Linux WhitepaperEnea Enabling Real-Time in Linux Whitepaper
Enea Enabling Real-Time in Linux Whitepaper
 
Trainingreport on embedded system
Trainingreport on embedded systemTrainingreport on embedded system
Trainingreport on embedded system
 
Nano rk rtss_05
Nano rk rtss_05Nano rk rtss_05
Nano rk rtss_05
 
OPERATING SYSTEM - SHORT NOTES
OPERATING SYSTEM - SHORT NOTESOPERATING SYSTEM - SHORT NOTES
OPERATING SYSTEM - SHORT NOTES
 
Troubleshooting & Tools
Troubleshooting & ToolsTroubleshooting & Tools
Troubleshooting & Tools
 
Components of Computer system.ppt
Components of Computer system.pptComponents of Computer system.ppt
Components of Computer system.ppt
 
Oslecture1
Oslecture1Oslecture1
Oslecture1
 
APE-Annotation Programming For Energy Eciency in Android
APE-Annotation Programming For Energy Eciency in AndroidAPE-Annotation Programming For Energy Eciency in Android
APE-Annotation Programming For Energy Eciency in Android
 
A Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High PerformanceA Parallel Computing-a Paradigm to achieve High Performance
A Parallel Computing-a Paradigm to achieve High Performance
 
PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...
PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...
PROTOTYPE APPLICATION IN ANDROID PLATFORM FOR SYSTEM ADMINISTRATION OF HPC CL...
 

Recently uploaded

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 

Recently uploaded (20)

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 

Understanding the characteristics of android wear os

  • 1. Understanding the Characteristics of AndroidWearOS Renju Liu, Felix Xiaozhu Lin Purdue ECE Presentation By: Pratik Jain
  • 2. Motivation  Interactive wearables, like smart watches, are a newcomer to the spectrum of mobile computers.  Integrate computing even tighter with our daily lives.  Substantial increase in demand for smart watches.
  • 3. Usage Patterns & Device Hardware  Users interact with wearable devices frequently throughout the daily use  Each interaction is short ( < 10s ), and is dedicated to a simple task  Due to the limited content that can be displayed on one screen, users spend a short time on one screen before switching to the next.  Tiny Battery capacity (200 – 400mAh)  Slower CPU – Fewer cores  Simpler CPU – Scaled-down but often architecturally identical to handheld’s CPU
  • 4. AndroidWearOS  One of the most popular OSes for interactive wearables.  Wearable OS with the most public information.  Supports third-party applications and features a resigned system UI, including Card for notifications, Context streams, and voice input.  Apps – renovated UI – Follow Android’s conventional programming paradigm – Written in Java – Compiled ahead-of- time – executed atop the managedAndroid Runtime.  Major OS components –  System Server – Key daemon hosting the core OS services  Surface Flinger – Daemon controlling UI animation  Clockwork – OS shell that implements the system UI
  • 5. Benchmark Scenarios  A benchmark suite that consists of 15 benchmarks falling into the following 4 categories: 1. Wakeup – Due to internal or external events, device transits out of suspended mode and presents brief information. Due to frequent daily wakeup, energy efficiency is the most important metric. 2. Single input – A waking wearable device responds to a single input from the user. Because the user is waiting, the device needs to achieve low UI latency. 3. Continuous interaction – Users are interacting with the device continuously. The resultant UI animation requires the device to produce a steady stream of graphic frames. 4. Sensing – For the execution of wearable apps, sensor data is sampled and processed periodically to collect context information.
  • 7. Experimental Setup  All the benchmarks are run on 2 state-of-the-art Android Wear devices  LGWatch R  Samsung Gear Live  Qualcomm’s APQ8026 system on-chip  AndroidWear 5.0 “Lollipop”
  • 8. Power Management  Batteries have tiny contacts which are incompatible with commodity power monitors.  A compatible interface circuit is carved out from a smartphone battery.  Used the interface as an adapter between the smart watch and an external power monitor. The battery interface carved out from Nexus 5 The interface (flipped) connected to the LG watch R
  • 9. Toolset  Used the following to examine system behaviors at different levels and granularities  Systrace – for capturing global system events such as scheduling, I/O activities, and IPC  Android Runtime’s built-in function tracer – for recording function call history in individual processes  Linux perf – for sampling CPU performance counters.
  • 10. Tackling profiling overhead  EventTracing – Major profiling overhead  Memory overhead can be overwhelming in tracing function invocations.  2 ways used to tackle  In quantifying global system behaviors, the paper only relies on system events. It collects function trace from extra runs.  In quantifying function-level activities, deduction of an overhead of 4 µs from each traced function invocation ( constant overhead ).
  • 11. CPUUsage  CPU usage is collected at two granularities  Task-level breakdown. An analyzer is built to identify the tasks .  Function-level breakdown. To further locate the performance hot spots in System Server, the following 2 metrics are employed:  Exclusive CPU cycles are spent in the function’s own code  Inclusive CPU cycles are spent in the function’s code as well as in all subroutines being called  Both metrics include the time spent in both user and kernel spaces and do not cover the time when a task is off CPU due to being scheduled out.
  • 12. IdleTime Analysis  Amount and duration of the observed idle episodes are unusual.  Match some idle episodes to system events known to cause idle, e.g. I/O and power management.  Others often root in stalling of OS service in serving app’s requests.  IdleChecker, an analyzer that helps mapping anomalous idle episodes to the responsible code regions, based on a simple rationale: The function calls and IPC transactions spanning an anomalous idle episode are suspicious.  IdleChecker runs the following steps for each idle episode.  Identifies suspicious app tasks that are blocked throughout the entire idle episode but run after the episode.  For each suspicious task, it identifies two suspicious CPU time quanta: the one right before the idle episode and the one right after it.  Examines the suspicious quanta, looking for IPC transactions spanning across the idle episode.  Identifies the function invocations that either coincide with the IPC or span across the idle episode.
  • 13. Thread-level Parallelism  Metric widely used for gauging an interactive system’s need for core count.  Average number of busy CPU cores during the non-idle time. TLP = 𝑖=1 𝑛 𝑖 ∗ 𝑐𝑖/(1 − 𝑐0)  𝑐0 - total time when no threads are running 𝑐𝑖 - time when exactly i threads are running simultaneously n - number of cores available.  For measurement, all 4 cores are forced online
  • 14. Microarchitectural behaviors  Microarchitecture design is a Mystery  By using the Linux perf, the paper samples the performance counters of the Cortex-A7 CPU on test devices.  Observe branch prediction, cache, andTLB in all benchmarks
  • 16. Where doCPU cycles go?  Intensive OS execution often dominates the global CPU usage.  Many costly OS services are likely to make software unnecessarily complicated  The CPU time distribution of hot functions is highly skewed.  Manipulating basic data structures consumes substantial CPU cycles.  Legacy OS functions may become serious performance bottlenecks  OS Execution Bottlenecks  setLight(), Layout(), computeOom(), getSimpleName()
  • 17. Idle Episodes  Plentiful and of a variety of lengths  Improper OS Designs  Interference from voice UI  Legacy support for device suspending  Performance overprovision during continuous Interaction  Design Implications  Hunting OS inefficiencies  Filling idle time with useful work  reducing CPU & GPU clock rates which will shrink idle episodes  predictive execution
  • 18. Thread-level parallelism  Short interactions exhibit substantial TLP, which is on par with desktop workloads.  While apps are mostly single-threaded, OS daemons contribute to TLP significantly.  A wearable device needs at least two cores.
  • 19. Microarchitectural behaviors  A significant mismatch exists between the OS and CPU microarchitecture, particularly in L1 icache, iTLB, and branch predictor.  The mismatch is largely due to the OS code complexity, and will not be eliminated by a unilateral enhancement of wearable CPU.  OS should be trimmed down to match the simplicity of its apps.
  • 20. RelatedWork  Gao et al. find that smartphone workloads show limitedTLP, concluding that they need no more than two cores.  ProfileDroid contributes an approach for charactering smartphone apps at multiple layers  Min et al. studies the battery usage of smart watches  WearDrive creates synthetic benchmarks to shed light on wearable storage.  RisQ andTypingRing target gesture recognition  iShadow tracks gaze in real time  Ha et al. build wearable for cognitive assistance  Cornelius et al. focus on user identification
  • 21. Recap  In-depth analysis of one of the most popular wearable Oses, Android Wear.  Examination of 4 key aspects: CPU usage, idle episodes, TLP, and micro-architectural behaviors – in fifteen benchmarks.  Discovery of serious OS inefficiencies and system bottlenecks that were widespread but unknown before.  The results clearly point out the system bottlenecks for immediate optimization and have strong implications on future wearable system software and hardware design.