Reducing Power Consumption in Graphic Intensive Android Applications Amit Singhai, Joy Bose Web Solutions Samsung R&D Institute India- Bangalore Bangalore, India {a.singhai , joy.bose}@samsung.com Abstract— With the ubiquity and increased usage of mobile devices with higher processing capability, power consumption in such devices is an important issue. In this paper we propose a software based approach to reduce the power consumption of an Android application which is having higher graphics or rendering requirements. Graphics intensive applications such as games, internet browser and video player contribute most in draining the battery. Therefore, we concentrate most on such applications for reducing the power consumption. Our approach involves removing the surface view and directly utilizing the application’s main window surface. We conduct an experiment to measure the power consumption when running an application with and without using surface view, and show that we get an improvement in the consumption. We also discuss about advantages and problems of the proposed method along with some possible solutions. Index Terms— android, power consumption, current measurement, surface view, window manager, surface flinger

I. INTRODUCTION Mobile computing devices such as smart phones and tablets are embedded systems mostly powered by battery. Power consumption in such devices is an important issue, with the advances in processing capability of such devices and restrictions on the battery size and weight. Certain applications such as network IO intensive applications consume lot of power due to transmitting and receiving signals, whereas graphics intensive applications like games consume lot of power due to large GPU and CPU utilization. Since power consumption directly has effect on battery time, so while designing an application it’s crucial to have this consideration as well. In this paper we propose a method which results in lesser power consumption for graphic intensive applications on mobile devices, such as browser, games, video player. We consider this power saving approach in the context of the Android operating system, a popular operating system for mobile devices. Our principle is to reduce the GPU utilization in maintaining and merging two surfaces. This principle can be theoretically applicable for other mobile operating systems such as iOS, Tizen, Windows and others.

The rest of the paper is organized as follows: section 2 looks at related work in the area of power consumption in mobile devices. Section 3 talks of applications using surface view and the power consumed by such applications. Section 4 looks at the proposed approach to optimize power consumption. Section 5 discusses experiments to measure the improvement in power consumption using our proposed approach. Section 6 talks of the pros and cons of using surface view, and section 7 provides various ways for receiving user inputs in child views when the view hierarchy is bypassed. Section 8 concludes the paper. II. RELATED WORK In order to minimize the power consumption, utilization of hardware components should be minimized. At user level turning off sensors which are not being used can result in longer battery hours. Hardware manufactures especially in embedded systems domain are coming up with latest processors and DSPs which consume less battery and can also operate on low voltages. However software programmers can also optimize power consumption using software techniques, efficient design and algorithms. To understand utilization of power in various hardware components, the work by Aaron Carroll [6] is very useful. Bo Zhao, Byung Chul and Guohong [7] suggest a way to reduce power consumption in Web Browsers by using a proxy mechanism. However, this work is more on network side, while our work focuses entirely on software techniques to reduce the power consumption for android devices. III. APPLICATIONS USING SURFACE VIEW In the Android OS, only the UI thread can update the user interface. This means that worker threads cannot update the views. For graphics related application like games, updating the view in a separate thread is desirable. To solve this problem, Android provides a special view called Surface View which has its own surface. In this section we explain how surface view works. In the next section, we present an optimization technique to reduce power consumption.

Fig. 1. Mechanism of the Surface View in Android OS.

An example activity in Android is shown in fig. 1. It has one surface view along with other standard android widgets e.g. “Text View”. The surface view requests a transparent hole in the window in which it has been added [1]. This transparent hole allows user to see the surface (which belongs to surface view) behind the window. Since surface view has its own surface, a separate thread can update it. It is particularly useful in games and other applications where rendering is done by native code. The drawback of this mechanism used by surface view is that it consumes more power as two different surfaces are maintained. These surfaces have to be painted separately and merged at flinger level. However using surface view has its own benefit. It is part of the view hierarchy, so any kind of manipulation and touch event processing are easily possible. In the following section, we explain how power consumption can be optimized in Android when using Surface View. IV. PROPOSED APPROACH FOR OPTIMIZING THE POWER CONSUMPTION

In the previous section we introduced Surface View and explained how it consumed more power since two surfaces are maintained and merged. We propose to save power consumption by directly drawing on the application’s main window surface. In certain applications where Android specific widgets such as buttons or text edit areas are minimal, it is possible to directly use the surface of the window instead of surface view for rendering or drawing.

Fig. 2. The composited final screen viewed by the user in Android OS.

This approach has some limitations. If the User Interface has a lot of views which respond to user touch, using the window’s surface directly is not recommended. So the proposed approach can be utilized mainly if the application is graphics intensive, and where the number of android widgets shown on main window is negligible Once the window’s surface is taken for showing contents, other views cannot be visible until they are directly added via window manager. Adding a view via ‘WindowManager’ has some disadvantages, which are discussed in a later section of this paper. In the following section, we describe an experiment to measure the efficacy of the proposed method while optimizing power consumption. V. EXPERIMENT TO MEASURE THE IMPROVEMENT IN POWER CONSUMPTION WHILE DIRECTLY UTILIZING APPLICATION MAIN WINDOW’S SURFACE As mentioned, in our proposed approach, the application main window’s surface can be used to render the content [2]. In this section we test the effectiveness of our approach in reducing power consumption. We do this by measuring the power consumption in the two mentioned cases (with and without surface view) for the same graphical rendering requirement on the same device. In this way, we find out the improvement by removing the surface view and drawing directly on window’s surface. Later we verify the number of surfaces visible at flinger level in our test applications.

A. Experiment to measure the power consumption for painting operation on surface in both cases. We conducted an experiment to find out the consumption of power when only drawing is being performed. For this two android applications have been developed using the publicly available Android SDK. In the first application, random bubbles have been drawn on the surface of surface view in a thread. In second application random bubbles have been drawn with exact size and duration as in first application, but here they are drawn directly on the surface of main window. For precise measurement all sensors such as accelerometer, Wi-Fi, Bluetooth, screen rotation, GPS were disabled on the Android device. For drawing directly on the surface of window, an API provided by Android called Window.takeSurface (SurfaceHolder.Callback2) has been used. The following equipment has been used for the measurement  Samsung Galaxy Note3 device  PC for android application development  USB Cable  Power Monitor from Monsoon Solutions Inc. [4] For the experiment, the power monitor instrument replaces the battery and logs the power consumed. The instrument also provides the software user interface (UI) to record the measurement of the current (and hence, power) consumed when the experiment is run for a time period. The user has a choice to start and stop the measurement as they wish. In our experiment, we recorded the current consumption for 10seconds of application run time. The results are displayed in table 1 for three iterations. As we can see, we get an approximately 7 mAmp advantage in the power consumption in our approach, as compared to the power consumption of the application with the surface view approach. TABLE I.

MEASUREMENT OF THE AVERAGE CURRENT WITH AND WITHOUT SURFACE VIEW

Iteration number

Application running time (in seconds)

Average current with Surface View (mA)

Average current without Surface View (mA)

1

10 10 10

189 189 188.5

182.7 182.12 182.3

2 3

B. Experiment to find the visible surfaces for the two cases (with and without surface view) To find out various visible surfaces or layers in our application, we use android SDK provided tool called “dumpsys”. We use this tool for capturing surface flinger dump logs using shell command “adb shell dumpsys SurfaceFlinger”[3]. Following are dumpsys output for Surface Flinger in both cases.



Extract of Surface flinger output with surface view

Visible layers (count = 6) . . . + Layer 0xb8057b90 (SurfaceView) id=64 Region transparentRegion (this=0xb8057d80, count=1) [ 0, 0, 0, 0] Region visibleRegion (this=0xb8057b98, count=1) [ 0, 75, 1080, 1920] . . . +Layer0xb802ac68 (com.example.withsurfaceview/com.example.withsurfaceview.MainActivity) id=63 Region transparentRegion (this=0xb802ae58, count=1) [ 0, 121, 1080, 1920] Region visibleRegion (this=0xb802ac70, count=1) [ 0, 75, 1080, 1920]

The output clearly shows two layers. First is Surface View as it has its own surface, second is application’s main Activity which can be identified by the package name provided in AndroidManifest.xml file. The transparent area in Main Activity corresponds to size of the Surface View. These readings are in line with the fact that Surface View requests transparency. 

Extract of Surface flinger output without surface view

Visible layers (count = 5) . . . . +Layer0xb805a398 (com.example.withoutsurfaceview/com.example.withoutsurfaceview.MainActi vity) id=69 Region transparentRegion (this=0xb805a588, count=1) [ 0, 0, 0, 0] Region visibleRegion (this=0xb805a3a0, count=1) [ 0, 75, 1080, 1920]

The surface flinger output shown above clearly states that there is only one surface present, which corresponds to main window’s surface. In the next section, we look at some pros and cons of our approach of removing the surface view. VI. PROS AND CONS OF REMOVING SURFACE VIEW As mentioned earlier, our proposed approach of using window’s surface directly in order to optimize the power consumption of graphics intensive applications is good for the applications which require full screen drawing. As we have confirmed from the experiments, our approach uses less power when compared to the surface view approach for the same application.

Fig. 4. Showing a view via window manager. Fig. 3. The view hierarchy in a typical Android application.

However, there are certain disadvantages to using our approach. As taking window’s surface bypasses the view hierarchy, it is difficult for the application to add some android widgets such as buttons, text edit or other touch responding widgets. A typical hierarchy has been shown in fig 3. ‘ViewRoot’ is parent of all other views in Android. One of the important roles of ViewRoot is to delegate the touch events to underlying child views properly so that only relevant child responds to the corresponding touch events. Though surface view has its own surface but it is still a child of ‘ViewRoot’ so the view hierarchy works perfectly. Fig 4 shows the hierarchy after capturing the window’s surface for drawing. As shown in the figure, the view hierarchy is actually cut and view root no longer receives any user events. This is one the disadvantages of this approach. Window Manager is responsible for maintaining all the surfaces. Since only one surface is being utilized for both rendering and Android views, the management of these views would be difficult, in comparison to the surface view approach. This is another disadvantage of our approach. In the following section, we mention a few methods to overcome the disadvantages while using our proposed approach. VII. POSSIBLE WAYS FOR RECEIVING USER INPUTS IN CHILD VIEWS WHERE VIEW HIERARCHY HAS BEEN BYPASSED. In this section we mention a few ways to receive user inputs as well as manage Android views effectively, thus overcoming some of the disadvantages of our approach as mentioned in the previous section.

Since view management is difficult in our approach, at the same time the number of views is limited. The method to overcome the limitation of view management is as follows: Once the window’s surface is taken, the following actions can be done to add the remaining widgets  Add the widgets in separate window such as dialogs. In case the application has very few standard Android widgets, than it is good to create a separate layout and inflate in separate dialog. Such a dialog can be shown and hidden as par need also.  Add the widgets directly via window manager. If views/layouts are added directly via window manager the touch events should be delegated from main activity of application to such views for responding to user actions. It is due to the fact that the view hierarchy is bypassed and programmer has to take care of these events. This delegation of event will require more processing and thus results in slightly more power consumption especially for faster gestures such as pinch zoom-in, pinch zoom-out, scrolling the content. So before adapting a particular solution, it is recommended that the application requirements are analyzed thoroughly along with its user interface. In this section, we looked at a few possible ways to overcome the limitations of our approach. In the next section, we conclude the paper and explore some avenues for future work.

VIII. CONCLUSION AND FUTURE WORK We performed an analysis of our approach to reduce the power consumption of graphics intensive Android applications by reducing an additional layer or surface introduced by Surface View. Our motive was to enable researchers to find out ways using only software to reduce the power consumption of an application. We have analyzed the scenarios and requirements when this approach fits well. Our solution was limited to the applications which have rather higher graphic rendering requirement in comparison with the applications which have more static standard android views and widgets. The power is consumed in hardware components which are actuated and utilized by software. In future, we will study ways to reduce the power consumption by optimization of hardware components. This can be done by writing sophisticated algorithms and designing applications properly, resulting in saving a considerable amount of power and thus increase the battery life. There are many such scenarios in which power can actually be saved. In future we will analyze some of these scenarios. ACKNOWLEDGMENT The authors would like to thanks Nagaraju Yendeti from applications team, Harshala and Darshan Venu from testing

team, of Samsung Research Institute Bangalore, India for providing support in this research. REFERENCES [1] Android Surface View documentation is available at web address http://developer.android.com/reference/android/view/SurfaceVie w.html [2] Android application window and takeSurface API documentation http://developer.android.com/reference/android/view/Window.ht ml [3] ADB and Android tools documentation http://developer.android.com/tools/index.html [4] Android developer documentation http://developer.android.com [5] www.msoon.com [6] Aaron Carroll , Gernot Heiser, “An analysis of power consumption in a smart phone”, Proc. USENIX Annual Technical Conference, 2010 [7] Bo Zhao, Byung Chul Tak, Guohong Cao, “Reducing the Delay and Power Consumption of Web Browsing on Smartphones in 3G Networks”, Tech Report, Department of Computer Science & Engineering, The Pennsylvania State University, 2010

Paper Title (use style: paper title) - Sites

Android application which is having higher graphics or rendering requirements. Graphics intensive applications such as games, internet browser and video ...

413KB Sizes 3 Downloads 427 Views

Recommend Documents

Paper Title (use style: paper title) - GitHub
points in a clustered data set which are least similar to other data points. ... data mining, clustering analysis in data flow environments .... large than the value of k.

Paper Title (use style: paper title)
College of Computer Science. Kookmin ... of the distinct words for clustering online news comments. In ... This work was supported by the Basic Science Research Program through .... is performed on class-wise reviews as depicted in Fig. 1(b).

Paper Title (use style: paper title)
School of Electrical Engineering, KAIST .... [Online]. Available: http://yann.lecun.com/exdb/mnist/. [5] Design Compiler User Guide, Synopsys, Mountain View, CA, ...

Paper Title (use style: paper title)
on the substrate, substrate pre-deposition process, and Pd deposition .... concentration is below the ignition threshold, which is often important for such a sensor.

Paper Title (use style: paper title)
Turin, Italy [email protected]. Hui Wang. School of Information Engineering. Nanchang Institute of Technology. Nanchang 330099, China [email protected]. Abstract—Frequency Modulation (FM) sound synthesis provides a neat synthesis

Paper Title (use style: paper title)
mobile wireless networking, it is becoming possible to monitor elderly people in so-called ... sensor network that might be used in order to recognize tasks described in Table 1. ..... its advantages, and their relative merits and demerits are still.

Paper Title (use style: paper title)
zero which means cosθ tends to 1. The distance between each of the test vectors and profile vectors were obtained using (2). If the cosine value between the test vector and profile hub vector was greater than the cosine value between the same test v

Paper Title (use style: paper title)
communication channel between the sensors and the fusion center: a Binary ..... location estimation in sensor networks using binary data," IEEE Trans. Comput., vol. ... [9] K. Sha, W. Shi, and O. Watkins, "Using wireless sensor networks for fire.

Paper Title (use style: paper title)
search and compact storage space. Although search ... neighbor search methods in the binary space. ... Given a query ∈ { } , we list the online search algorithm.

Paper Title (use style: paper title)
Research Program Fellowships, the University of Central Florida – Florida. Solar Energy Center (FSEC), and a NASA STTR Phase I contract. NNK04OA28C. ...... Effluents Given Off by Wiring Insulation," Review of Progress in. QNDE, vol. 23B ...

Paper Title (use style: paper title)
In Long term Evolution. (LTE), HARQ is implemented by MAC level module called .... the receiver is decoding already received transport blocks. This allows the ...

Paper Title (use style: paper title)
Reducing Power Spectral Density of Eye Blink Artifact through Improved Genetic ... which could be applied to applications like BCI design. MATERIALS AND ...

Paper Title (use style: paper title)
general, SAW technology has advantages over other potentially competitive ... SAW devices can also be small, rugged, passive, wireless, and radiation hard,.

Paper Title (use style: paper title)
provide onboard device sensor integration, or can provide integration with an .... Figure 2 Schematic diagram of a 7 chip OFC RFID tag, and. OFC measured and ..... [3] C. S. Hartmann, "A global SAW ID tag with large data capacity," in Proc.

Paper Title (use style: paper title)
determine the phase error at unity-gain frequency. In this paper, while comparing some topologies we ... degrees at the integrator unity gain frequency result in significant filter degradation. Deviations from the .... due to gm/Cgd occur at a much h

Paper Title (use style: paper title)
Abstract— The Open Network and Host Based Intrusion Detection. Testbed .... It is unique in that it is web-based. .... sensor is also the application web server.

Paper Title (use style: paper title)
Orlando, FL 32816-2450 (email: [email protected]). Brian H. Fisher, Student .... presentation provides a foundation for the current efforts. III. PALLADIUM ...

Paper Title (use style: paper title)
A VLSI architecture for the proposed method is implemented on the Altera DE2 FPGA board. Experimental results show that the proposed design can perform Chroma-key effect with pleasing quality in real-time. Index Terms—Chroma-key effect, K-means clu

Paper Title (use style: paper title)
the big amount of texture data comparing to a bunch of ... level and a set of tile data stored in the system memory from ... Figure 1: Architecture of our algorithm.

Paper Title (use style: paper title)
printed texts. Up to now, there are no ... free format file TIFF. ... applied on block texts without any use of pre- processing ... counting [12, 13] and the reticular cell counting [1]. The main ..... Computer Vision and Image Understanding, vol. 63

Paper Title (use style: paper title)
School of Electrical and Electronic Engineering, Nanyang Technological University, Singapore 639798. Abstract— ... For 60GHz wireless communication systems, the ... the benefit of isolated DC noise from the tuning element. The load on ...

Paper Title (use style: paper title)
them from ensemble DTi. 8. Calculate the likelihood L1i for the refined ensemble, i=1,...,n. 9. Run the t-test to compare likelihoods. (L11,...,L1n) and (L1,...,Ln). 10. ... Landsat. (6435, 7, 36, 9). 1. 83.9±1.9. 1218.0±41.1. 2. 83.8±1.7. 1212.7Â

use style: paper title
helps learners acquire scientific inquiry skills. One of ... tutoring systems; LSA; natural language processing ..... We collected data from 21 college students who.

Paper Title (use style: paper title)
resource-constrained sensors [10]. ... limited resources, such as energy and computation capacity, .... An alternative method is the WA estimation method.