Odessa - Enabling Interactive Perception Applications on Mobile...

19
Outline Problem domain Sprout Experiment Odessa Odessa Enabling Interactive Perception Applications on Mobile Devices Grzegorz Milka 10.12.2012 Grzegorz Milka Odessa

Transcript of Odessa - Enabling Interactive Perception Applications on Mobile...

Page 1: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

OdessaEnabling Interactive Perception Applications on Mobile Devices

Grzegorz Milka

10.12.2012

Grzegorz Milka Odessa

Page 2: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

1 Problem domainRequirements and characteristicsMetricsMethods of adaptationApplications

2 Sprout

3 ExperimentData Variability ImpactImpact of different strategies

4 OdessaDesign and ImplementationEvaluation

Grzegorz Milka Odessa

Page 3: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Requirements and characteristicsMetricsMethods of adaptationApplications

Requirements and characteristics

Crisp-response

Continuous processing

Compute-intensive

Performance dependingon data

Grzegorz Milka Odessa

Page 4: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Requirements and characteristicsMetricsMethods of adaptationApplications

Metrics

Makespan

Time taken to execute all stages of a data flow for a single thrame.

Throughput

Rate at which frames are processed and a measure of the accuracyof the application.

Grzegorz Milka Odessa

Page 5: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Requirements and characteristicsMetricsMethods of adaptationApplications

Methods of adaptation

Offloading

Pipelining

Data-parallelism

Grzegorz Milka Odessa

Page 6: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Requirements and characteristicsMetricsMethods of adaptationApplications

Applications

Grzegorz Milka Odessa

Page 7: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

What’s sprout

Sprout A distributedstream processing system.

Uses a data flow modeland policy to distributeprocessing of anapplication.

Grzegorz Milka Odessa

Page 8: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Data Variability ImpactImpact of different strategies

Input Data Variability

Grzegorz Milka Odessa

Page 9: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Data Variability ImpactImpact of different strategies

Variability Across Mobile Platforms

Median speedup

Application Makespan Laptop Makespan Netbook Speedup

Face Recognition 0.078 0.20 2.94

Object and Pose Recognition 1.67 9.17 5.47

Gesture Recognition 0.54 2.34 4.31

Exec time Distribution

Grzegorz Milka Odessa

Page 10: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Data Variability ImpactImpact of different strategies

Network Impact

Grzegorz Milka Odessa

Page 11: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Data Variability ImpactImpact of different strategies

Effects of Parallelism

Data-Parallelism

# Threads % Frames with faces Speedup

1 61.66 1

2 24.87 1.6

3 38.11 2.3

Pipeline Parallelism

Grzegorz Milka Odessa

Page 12: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Design

3 Goals

Simultaneously achieve low makespan and high throughput

Quick response to environment change

Low computational and communication overhead.

Implementation

Odessa uses lightweight profiler which identifies bottleneck.Using this data it employs greedy and incremental strategy tooptimize makespan and throughput.

Grzegorz Milka Odessa

Page 13: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Decision Engine

bottleneck := pick the first entry from the priority heapif bottleneck is a compute stage then

a. estimate the cost of offloading the stageb. estimate the cost of spawning more workers

elseif bottleneck is a network stage then

a. estimate the cost of offloading the source stageb. estimate the cost of offloading the destination stage

end ifend iftake the best choice among a., b. or do-nothingsleep

Grzegorz Milka Odessa

Page 14: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Odessa’s performance and overhead

Grzegorz Milka Odessa

Page 15: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Odessa’s performance and overhead

Application Netbook Laptop

Face Reconition Face detection(2) -3.39

Nothing - 3.99

Object and PoseRecognition

Object modelmatching(3),Feature generat-ing(10) - 5.71

Object modelmatching(3),Feature generat-ing(10) - 5.14

Gesture Recogni-tion

Face detection(1),extracting MotionSIFT features(4) -3.06

Face detection(1),extracting MotionSIFT features(9) -5.14

Grzegorz Milka Odessa

Page 16: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Comparison to other stategies

Grzegorz Milka Odessa

Page 17: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Comparison to other stategies - Offline Optimizer

Grzegorz Milka Odessa

Page 18: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Adaptation to Varying Execution Contexts

Figure: Core change Figure: Network change

Grzegorz Milka Odessa

Page 19: Odessa - Enabling Interactive Perception Applications on Mobile …iwanicki/courses/ds/2012/presentations/ds... · Sprout Experiment Odessa Design and Implementation Evaluation Thank

OutlineProblem domain

SproutExperiment

Odessa

Design and ImplementationEvaluation

Thank you

Moo-Ryong Ra, Anmol Sheth, Lily Mummert, PadmanabhamPillai, David Wetherall, Ramesh GovindanOdessa: Enabling Interactive Perception Applications onMobile DevicesMobiSys ’11 Proceedings of the 9th international conferenceon Mobile systems, applications, and services

Padmanabham Pillai, Lily Mummert, Steven Schlosser, RahulSukthankar, Casey HelfrishSLIPstream: Scalable Low-latency Interactive Perception onStreaming DataNOSSDAV ’09 Proceedings of the 18th international workshopon Network and operating systems support for digital audioand video

Grzegorz Milka Odessa