an empirical study of the energy consumption of android
play

An Empirical Study of the Energy Consumption of Android Applications - PowerPoint PPT Presentation

An Empirical Study of the Energy Consumption of Android Applications Ding Li, Shuai Hao, Jiaping Gui, William G.J. Halfond Department of Computer Science University of Southern California This work was supported in part by the National Science


  1. An Empirical Study of the Energy Consumption of Android Applications Ding Li, Shuai Hao, Jiaping Gui, William G.J. Halfond Department of Computer Science University of Southern California This work was supported in part by the National Science Foundation under Grant No. CCF-1321141 to the University of Southern California 1

  2. Battery Life Is a Critical Problem Battery life is important to the user experience 2

  3. Battery Life Is a Critical Problem Many apps drain Battery life is important to the battery quickly the user experience 3

  4. Battery Life Is a Critical Problem Many apps drain Battery life is important to the battery quickly the user experience How to create energy efficient apps? 4

  5. How to Create Energy Efficient Apps? Software Engineering Oriented Information Which part is most energy consuming? Which part should be optimized? 5

  6. How to Create Energy Efficient Apps? Measurement of Energy Consumption • Granularity • Noise • Isolation 6

  7. Other Works on Energy • Energy estimation and measurement – E.g., eLens [Hao et al. ICSE 2013] – Do not directly provide information • Techniques for energy optimization – E.g., No-sleep bugs [Pathak et al. MobiSys 2012] – Focus only on a particular problem There are no empirical studies on large numbers of apps 7

  8. Our Study • Source line level measurement study on 405 Android market apps • 7 research questions on how energy is consumed in apps – To provide software engineering practitioner oriented energy information • 3 research questions on how to do energy measurement 8

  9. Research Questions: How Energy Is Consumed in Apps RQ 1 App Energy RQ 2 Idle State Energy Non-Idle State Energy RQ 3 API Energy User Code Energy RQ 4 RQ 5 RQ 6 RQ 7 Component Structure Bytecode API Level Level Level Level 9

  10. Research Questions: How to Measure Energy RQ 8 RQ 9 RQ 10 Measurement Handling Idle State Proxy Measurement Granularity Energy 10

  11. Experiment Protocol • Hardware – Samsung Galaxy SII smart phone – With Android 4.3 • Energy measurement tool – Monsoon • Source line level measurement – vLens [Li et al. ISSTA 2013] • Automate the UI interaction – Monkey – 5 random events per second, 500 in total • 405/412 apps with code coverage higher than 50% – No game apps 11

  12. Distribution of App Types 7% 19% 7% Lifestyle & Productivity (LP) Entertainment (En) 7% Travel & Transportation (TT) Music & Media (MM) 8% Health & Medical (HM) 19% Sports & News (SN) Photography (Ph) 10% Utilities & Tools (To) Others 12% 11% 12

  13. RQ 1: How Much Energy Is Consumed by Individual Applications? RQ 1 App Energy Idle State Energy Non-Idle State Energy API Energy User Code Energy Component Structure Bytecode API Level Level Level Level 13

  14. RQ 1: How Much Energy Is Consumed by Individual Applications? Energy consumption of different applications 14

  15. RQ 1: How Much Energy Is Consumed by Individual Applications? Energy consumption of different applications 15

  16. RQ 1: How Much Energy Is Consumed by Individual Applications? Energy consumption of different applications Average = 57,977 mJ, Standard deviation = 62,416 mJ 16

  17. RQ 1: How Much Energy Is Consumed by Individual Applications? Energy consumption of different applications Average energy 30% differ 17

  18. RQ 1: How Much Energy Is Consumed by Individual Applications? Energy consumption of different applications Energy differs for more than 100 times 18

  19. RQ 1: How Much Energy Is Consumed by Individual Applications? Energy consumption of different applications Variance within category is larger than across categories 19

  20. RQ 2: How Much Energy Is Consumed by the Idle State of An Application? App Energy RQ 2 Idle State Energy Non-Idle State Energy API Energy User Code Energy Component Structure Bytecode API Level Level Level Level 20

  21. RQ 2: How Much Energy Is Consumed by the Idle State of An Application? Breakdown of app energy Wait for input, Code running , 37% 38% Sleep, 25% 21

  22. RQ 2: How Much Energy Is Consumed by the Idle State of An Application? Breakdown of app energy Wait for input, Code running , 37% 38% Idle-states, no code is running Sleep, 25% 22

  23. RQ 2: How Much Energy Is Consumed by the Idle State of An Application? Breakdown of app energy Wait for input, Code running , 37% 38% 62% energy Only optimizing code is insufficient, idle-state energy also needs to be optimized Sleep, 25% 23

  24. An Example of How to Reduce Idle State Energy • Display energy could be saved in idle states • Using energy efficient color designs – Nyx [Li et al. ICSE 2014] – Chameleon [Dong et.al Mobisys 2011] 24

  25. An Example of How to Reduce Idle State Energy Save 40% energy [Li et al. ICSE 2014] 25

  26. RQ 3: Which Code Consumes More Energy: System APIs or Developer Written Code? App Energy Idle State Energy Non-Idle State Energy RQ 3 API Energy User Code Energy Component Structure Bytecode API Level Level Level Level 26

  27. RQ 3: Which Code Consumes More Energy: System APIs or Developer Written Code? Breakdown of non-idle energy 13% 2% API Bytecode Outliers 85% 27

  28. RQ 3: Which Code Consumes More Energy: System APIs or Developer Written Code? Breakdown of non-idle energy 13% 2% System APIs from the Android SDK API Bytecode Outliers 85% 28

  29. RQ 3: Which Code Consumes More Energy: System APIs or Developer Written Code? Breakdown of non-idle energy 13% 2% Normal user code API Bytecode Outliers 85% 29

  30. RQ 3: Which Code Consumes More Energy: System APIs or Developer Written Code? Breakdown of non-idle energy 13% 2% Garbage collection and thread switching API Bytecode Outliers 85% 30

  31. RQ 3: Which Code Consumes More Energy: System APIs or Developer Written Code? Breakdown of non-idle energy 13% 2% API Bytecode Outliers Developer written code does 85% not consume a significant amount of energy. 31

  32. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? App Energy Idle State Energy Non-Idle State Energy API Energy User Code Energy RQ 4 Component Structure Bytecode API Level Level Level Level 32

  33. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? UI Net IO Sqlite Camera Average ratio of the energy Location consumption of a component to Sensor the non-idle energy of apps Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 33

  34. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? Packages of APIs in SDK UI Net IO Sqlite Camera Average ratio of the energy Location consumption of a component to Sensor the non-idle energy of apps Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 34

  35. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? UI android.net.* and java.net.*. Net IO Sqlite Camera Average ratio of the energy Location consumption of a component to Sensor the non-idle energy of apps Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 35

  36. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? Calculated over the apps that used the network UI Net IO Sqlite Camera Average ratio of the energy Location consumption of a component to Sensor the non-idle energy of apps Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 36

  37. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? UI Net IO Sqlite 80%, HTTP requests Camera Average ratio of the energy Location consumption of a component to Sensor the non-idle energy of apps Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 37

  38. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? These components may still dominate the energy of a particular app UI Net IO Sqlite Camera Average ratio of the energy Location consumption of a component to Sensor the non-idle energy of apps Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 38

  39. RQ 4: How Much Energy Is Consumed by the Different Components of A Smartphone? UI Net IO Sqlite Camera Average ratio of the energy Location consumption of a component to Network is generally the most energy consuming component, but Sensor the non-idle energy of an app other components may also dominate the energy consumption of an app Media 0 5 10 15 20 25 30 35 40 45 Percentage of non-idle energy (%) 39

  40. RQ 5: Which APIs Are Significant in Terms of Energy Consumption? App Energy Idle State Energy Non-Idle State Energy API Energy User Code Energy RQ 5 Component Structure Bytecode API Level Level Level Level 40

  41. RQ 5: Which APIs Are Significant in Terms of Energy Consumption? • Distribution of energy consumption over APIs – Across apps – Within an app • Similarity across apps of top 10 most energy consuming APIs • Frequency of APIs being in the top 10 most energy consuming APIs 41

  42. RQ 5: Which APIs Are Significant in Terms of Energy Consumption? • Distribution of energy consumption over APIs – Across apps 42

Recommend


More recommend