Next Article in Journal
A Smart Overvoltage Monitoring and Hierarchical Pattern Recognizing System for Power Grid with HTS Cables
Previous Article in Journal
An Ultra-Wideband Sensing Board for Radio Frequency Front-End in IoT Transmitters
Previous Article in Special Issue
IoToF: A Long-Reach Fully Passive Low-Rate Upstream PHY for IoT over Fiber
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Analysis of Energy Consumption and Optimization Techniques for Writing Energy-Efficient Code

by
Javier Corral-García
1,*,
Felipe Lemus-Prieto
1,
José-Luis González-Sánchez
1 and
Miguel-Ángel Pérez-Toledano
2
1
CénitS–COMPUTAEX, Extremadura Supercomputing, Technological Innovation and Research Center, 10071 Cáceres, Spain
2
Computer Science Department, University of Extremadura, 10003 Cáceres, Spain
*
Author to whom correspondence should be addressed.
Electronics 2019, 8(10), 1192; https://doi.org/10.3390/electronics8101192
Submission received: 29 September 2019 / Revised: 11 October 2019 / Accepted: 16 October 2019 / Published: 19 October 2019

Abstract

:
The unprecedented growth of connected devices, together with the remarkable convergence of a wide variety of technologies, have led to an exponential increase in the services that the internet of things (IoT) can offer, all aimed at improving quality of life. Consequently, in order to meet the numerous challenges this produces, the IoT has become a major subject of research. One of these challenges is the reduction of energy consumption given the significant limitations of some devices. In addition, although the search for energy efficiency was initially focused on hardware, it has become a concern for software developers too. In fact, it has become an intense area of research with the principal objective of analyzing and optimizing the energy consumption of software systems. This research analyzes the energy saving that can be achieved when using a broad set of techniques for writing energy-efficient code for Raspberry Pi devices. It also demonstrates that programmers can save more energy if they apply the proposed techniques manually than when relying on other automatic optimization options offered by the GNU compiler collection (GCC). Thus, it is important that programmers are aware of the significant impact these techniques can have on an application’s energy consumption.

Graphical Abstract

1. Introduction

The internet of things (IoT) has experienced exponential growth in recent years, and it is increasingly improving the services it offers, thanks to the remarkable convergence of a wide variety of technologies such as sensors, wireless communications and Internet protocols, among others. Thus, IoT currently has an unlimited scope of application, and it is being implemented in all types of devices used in areas as diverse as homes, businesses, industries, transport systems, and even wearable technology and medical devices.
With the constant expansion of IoT applications into everyday use, single-board computers (SBC) have become key devices that are being extensively used in all types of projects, since, although its computing function is limited, they are highly suitable for implementing low-power mobile systems in an inexpensive way due to their compact design, excellent cost/performance ratio, and low energy consumption. Therefore, the amount of research into these types of devices has also grown exponentially in recent years.
Raspberry Pi (RPi) [1] boards are among the most highly demanded SBC devices (25 million units have been sold in the last seven years, without including official accessories, according to March 2019 data [1]). RPi are very cost-effective computers, with a high cost–benefit ratio and appropriate size (3.5 × 2.3 × 0.76 inches), whose performance cannot be compared to that of high end servers, but which stands out due to their mobility and the computing power they offer per watt, allowing them to execute important computational tasks with low energy consumption and making them suitable for projects in which energy saving is a key issue.
Currently, RPi is being widely used in all kinds of research that looks for solutions in areas as diverse as: health [2,3], industry [4], automotive sector [5], building [6] and domotics [7], education [8] or chemistry [9], just to name a few.
Consequently, in order to meet the numerous challenges this produces, the IoT has become a major subject of research. One of these challenges is the reduction of energy consumption given the significant limitations of some devices. The concept of energy efficiency can be understood as the performance achieved in relation to the performance achievable in an optimal situation. Although it was initially focused on hardware, it has become a concern for software developers too [10]. In fact, it has become an intense area of research with the main objective of analyzing and optimizing the energy consumption of software systems.
In our previous work [11], we presented the analysis of a broad set of techniques for the efficient writing of programming code in RPi devices, all of them focused on reducing execution time without modifying neither the semantic of the program nor its results. The current research aims to analyze the energy saving that can be achieved when using each of these techniques, with the objective of demonstrating their effectiveness when writing energy-efficient code and confirming that, in this case, the automatic help offered by the compiler is also insufficient in terms of energy saving. Thus, this research evaluates the energy consumed when applying these techniques manually, compared to the results obtained when using the automatic help offered by the GNU compiler collection (GCC) [12]. It demonstrates that programmers can save more energy if they apply the proposed techniques manually than when relying on the optimization options provided by the compiler.
The rest of the paper is organized as follows: the next section outlines the scope of the research together with the objectives taken into account in the approach; Section 3 discusses related work; Section 4 contains a complete description of the infrastructure and methodology used during the experiments; Section 5 covers the recommended techniques to write energy-efficient code; the results are presented and discussed in Section 6, and current limitations and future work are addressed in Section 7. Finally, Section 8 concludes and summarizes the contributions of the paper.

2. Scope and Objectives

The main objective of the current approach is to demonstrate that the optimization techniques covered in [11] achieve not only significant reductions in execution times, but also meaningful gains in terms of energy saving. These improvements become especially important when they are applied to the code of programs that run uninterrupted throughout the year, something very common in IoT devices. In the same way, it is also intended that IoT programmers be aware of the important impact that even small and simple portions of code can have on the energy consumption of their applications.
Some approaches have demonstrated that there is a direct relationship between energy consumption and running time [10,13,14], so that decreasing execution time can imply better energy efficiency. This statement is based on two main points: firstly, the fewer instructions executed, the less energy is used; secondly, the faster a task is accomplished, the sooner the processor sleeps and saves power [15]. However, the fact that optimizations for speed may achieve important reductions in total energy costs cannot be considered a general rule, as energy consumption also depends on a power variable, modelled as follows:
E n e r g y ( J ) = P o w e r ( W ) × T i m e ( s ) .
For instance, in some circumstances, a code compiled for size optimization may be more efficient than a code compiled for speed, for example, due to better use of the cache [15].
In this sense, it is important to highlight the impact that programmer skills have on the energy efficiency of the code. Compilers often offer different levels of optimization that help reduce code size, improve memory utilization, speed up executions or optimize the number of input/output operations. However, as demonstrated in [11] and in this research, if programmers apply several specific techniques manually they can achieve better performances, not only regarding execution time but also in energy consumption, with minimal effort by modifying the code. Therefore, the proposed techniques are suitable for both expert programmers and beginners in IoT programming. In addition, the results discussed in the current proposal can be extrapolated to other arm devices apart from the models analyzed here, especially those related to the IoT.
All the techniques discussed in this approach are focused on C and C++ code, two of the most popular programming languages, along with others such as Java or Python, that were omitted in our previous work due to the need for them to be translated during runtime. In this sense, recent efforts have focused on compiled languages whose translation overhead is incurred just once, and thus, the expected improvements in execution time and energy saving can be greater. The results of the current proposal may be extrapolated to other programming languages, but their analysis has not yet been performed and will be addressed in further studies.
Although profilers and analysis tools were also discarded, they allow programmers to identify inefficiencies that affect the performance of their applications and obtain information about opportunities for energy-efficient improvements [16], often being the first step towards code optimization [17]. In fact, future work is expected to extend the current research by using these kinds of tools to analyze how some of the proposed techniques impact performance and energy efficiency in greater depth.

3. Related Work

In [11] we provided a detailed review of the existing literature, specially focused on improving source code optimization to achieve better execution times. The lack of proposals dedicated to writing efficient code for IoT devices was especially noteworthy. Diverse approaches to optimize C and C++ code for other operating systems and architectures were found instead [14,18,19,20,21,22,23,24,25,26,27,28,29,30]. Descriptions of all of them can be consulted in the aforementioned previous work.
Nevertheless, it is important to highlight that IoT may benefit from the existing literature on the usage of low-power arm processors for high-performance computing (HPC) where energy efficiency has become a key challenge to address Exascale needs [31], highlighting the importance of the relationship between performance and energy consumption in the development of HPC systems. A survey which includes a list of articles mainly focused on the use of Arm processors to reduce the energy consumption of HPC infrastructure can be found in [32]. For instance, the role played by hardware factors and by some software aspects in the energy-performance landscape of real-life HPC applications is analyzed in detail in [33], and a combination of both architecture and software improvements to optimize performance and energy consumption on arm-based platforms by using dynamic voltage and frequency scaling (DVFS) techniques, multithreading and vectorization is proposed in [34].
With regard to Raspberry Pi energy consumption, its efficiency has been evaluated in several works with the objective of providing software developers and users with indicators for understanding how much energy the device is consuming while running a software application [35,36]. For instance, a research about how Raspberry Pi power drain is affected by the key functionalities that could be performed by end-users on the platform can be found in [37]. This is compared against other types of common personal computers, and techniques and practices that could reduce energy consumption are recommended. In [38], the energy efficiency issue of an SBC-based cluster is addressed in the context of big data applications. They correlate energy utilization for the execution time of several benchmarks using workloads of different sizes.
Next, other proposals related to the scope of our research are described: an approach for power and energy usage for scientific calculation with and without General-Purpose Unit (GPU) acceleration on RPi devices can be found in [39]; energy and execution time of several wearable and mobile devices, including RPi Zero, are compared in [40] with a benchmark to discuss offloading techniques to use for increasing quality of service (QoS) in IoT applications; a preliminary analysis and modeling of energy consumption of evolutionary algorithms in different devices, including RPi, is introduced in [41]; an estimation of energy consumption in transferring data using an IoT protocol over different QoS levels is presented in [42]; a linear IoT model to deploy processes and data to devices and servers in IoT (considering a RPi as a fog node) reducing the total energy consumption of nodes is introduced in [43]; a study about the service distribution in multi-layer IoT architecture to minimize the total energy consumption is presented in [44]; the evolution of the energy consumption of several RPi models is compared to alternative platforms in [45].
However, the above-mentioned proposals are focused on analyzing and optimizing the energy consumption of IoT and RPi devices, rather than on the energy saving that can be achieved when writing energy-efficient code for RPi boards. Thus, the current manuscript aims to demonstrate the effectiveness of 25 proposed techniques and confirm that, in many cases, the percentage of energy-saving obtained by applying these techniques manually is much higher than those achieved with the automatic optimizations offered by compilers such as GCC.

4. Materials and Methods

Five Raspberry Pi board models, whose features are shown in Table 1, were used to conduct the experiments, all of them Model B devices: second-generation (2B) model, third-generation models B and B+ (3B, 3B+), and the fourth-generation model with 1GB RAM (4B, released in September 2019). Model B was chosen over other RPi models because it had the fastest CPUs (apart from most connectivity features), whereas other models have limited computational power. Therefore B boards are usually more suitable for the kind of applications covered by this research [1].
Just as in our previous work, Raspbian operating system was used (as the Raspberry Foundation [1] recommends) in its version Buster 4.19, with all its packages updated on 1 September 2019. All code was compiled using GCC 8.3.0 version (February 2019 released) contained in the last stable version of GCC in the R a s p b i a n 8.3.0 6 + r p i 1 package. SanDisk Ultra microSDHC class 10 memory cards were also used in this case and the experiments were performed with an ambient temperature of 22 ° C, reaching the RPi’s maximum CPU temperature of 60 ° C. In addition, automatic pauses of 3 min were scheduled between each test and after each experiment to avoid possible overheating problems during measurements. It is important to highlight that time results were similar to those shown in our previous work (conducted with Raspbian Stretch 4.14 and GCC 6.3.0 version).
The rest of the details concerning the methodology employed to conduct the tests and measure the execution times can be found in the previous work [11]. The same steps have been followed to perform the experiments shown in the current work. It provides extensive information about the four levels of automatic optimization offered by the GCC compiler and the methodology designed to conduct the experiments, including the general pseudocode followed in all the experiments, how the accuracy of the tests is ensured, and even the stopwatch class used for the measurements (with a resolution of around 10 milliseconds and a lack of overhead while running).
Very briefly, GCC offers four levels of automatic optimization [12]: default level O 0 , without optimization for execution time (only the cost of compilation is reduced); level O 1 , which offers optimization for code size and execution time; level O 2 , in which the compiler performs nearly all supported optimizations that do not involve a space-speed trade-off; and level O 3 , which offers the maximum level of optimization, but also significantly increases compilation time and may inhibit the ability to debug the program.
In addition, each test is repeated with at least one hundred million iterations (with the objective of obtaining a measurable value and also to discard the test function invocation cost) and ten different measurements are taken (in order to obtain ten execution time samples and reduce the impact of cold starts and cache effects, since random variations are cancelled out and the caches tend to converge on a single value, without outliers). In the same way, variations due to background tasks and context switching are avoided by starting the experiments through Secure Shell (SSH) network protocol, and running only the required services (the rest are reduced as much as possible before performing the experiments, as was described in [11]).
With regard to energy consumption, there are two main possibilities to measure it in an electronic device: connecting a measuring instrument in series to its supply circuit or using a clamp meter (with two jaws which open to allow clamping around the electrical cable to be measured). However, although the use of clamps avoids the disadvantages of placing an ammeter in a circuit, they are commonly designed to measure high-current circuits.
In addition, there are multiple ways to power RPi devices, of which the most common is to use the 5 V micro USB port and supply the energy with a power adapter or a portable battery. Supplying power through the Ethernet port is also possible, but this option is not provided as standard (as indicated in Table 1). Another option consists of using the General-Purpose Input/Output (GPIO) port of the Raspberry, connecting the 5 V pins to a source to feed energy directly to the board. This type of supply allows a multimeter to be connected in series, without having to modify the cable (that would be connected to the micro USB port) or the board’s power connector.
In this way, data analysis of the energy consumed in each experiment was carried out using an UNI-T UT61E digital multimeter (UNI-T Co., Dongguan, China), together with a constant voltage source (DC power supply) to maintain stable power reliably. The positive pole of the source of current should be connected to the positive (red) lead of the multimeter, whereas its ground connection (of the power supply) is connected to pin number 6 of the GPIO (according to the technical specifications of RPi [1], pins 9, 14, 20, 25, 30, 34 and 39 would also be valid for the same purpose. In the same way, the negative lead of the multimeter should be connected to pin number 2 (or 4), thus closing the circuit (see Figure 1)).
The results were obtained with the analysis software provided by the multimeter manufacturer (UT61E Interface Program version 4.01), using a computer. The electrical energy consumed in each experiment was continuously monitored during the executions, with a sample rate of two measurements per second. In this way, current values were collected in real time and transmitted through a serial cable connected to a serial-to-usb converter plugged into the computer and stored into a log file which would later be analyzed to extract the results and calculate the average electric current. The meter was set to measure up to a maximum of 10 A, since the instantaneous current values were in a range between 200 mA and 800 mA during the experiments. In the meter, this range implies a resolution of 1 mA with a margin of error of ±(0.5% + 10), and the measurement should be displayed and registered in amps. However, in the experiments (discussed below) the current is shown in milliamps for readability, in order to avoid the use of the five decimals that would be necessary to represent the standard deviation if the result were expressed directly in amps.
Electric power (measured in watts) is calculated by multiplying the voltage (5 V) by the electric current, modelled as follows:
P o w e r ( W ) = V × I ,
where V is voltage (in volts, V), I is electric current (in amperes, A) and P o w e r is meant as average power during the code execution. Then energy (measured in joules) can be calculated with the following formula (mentioned in Section 2):
E n e r g y ( J ) = P × t
where P is electric power (average power during the code execution, in watts, W) and t is time (in seconds, s).

5. Techniques to Write Energy-Efficient Code

The following techniques were selected from the literature [18,19,20,21,22,23,24,25,26,27] with the objective of using them in an extensive range of programming routines and tasks. They have been analyzed for the current proposal with the aim of demonstrating that, in addition to their suitability for reducing execution times (as demonstrated in [11]), they can also be recommended for writing energy-efficient code for Raspberry Pi boards.
A complete description of each of these techniques, together with the source code of all the designed tests, can be found in [11] along with supplementary materials. Next, a brief excerpt is shown as follows:
T1
Bit fields: a bit field structure holds a sequence of a certain number of bits to improve the use of memory space. However, using an integer instead is recommended.
T2
Boolean return: returning boolean variables at the end of a function is not recommended. It is preferable to convert them into a single u n s i g n e d i n t along with the use of associated flags to perform the checks with a single logical operation.
T3
Cascaded function calls: it is advisable to avoid the use of cascaded function calls that return pointers or references.
T4
Row-major accessing: there are two ways of traversing a two-dimensional array. In C and C++ the leftmost index should be incremented first, in order to achieve better cache hit ratio, since data are stored in a contiguous by row-major order.
T5
Constructor initialization lists: it is recommended to use initialization lists to set the initial values of the variables when defining constructors.
T6
Common subexpression elimination: it consists of avoiding the repetition of identical expressions which can be modified so that a single variable holds their computed values.
T7
Mapping structures: in the case of mapping tables, it is recommended to use loops to traverse them, instead of nested i f statements.
T8
Dead code elimination: this well-known and widely used technique consists of eliminating instructions that are totally unreachable or do not affect the result (e.g., never used variables).
T9
Exception handling: in order to significantly improve energy efficiency, some exceptions can be replaced by c o n t i n u e or b r e a k statements when they are located within loops.
T10
Global variables within loops: as far as possible, the use of assignments to global variables within loops should be avoided. Local variables can be used instead until the end of the loop is reached.
T11
Function inlining: in many cases, overhead caused by call and return statements can be avoided by directly inserting the code for the function instead of calling it. This technique is considered one of the most important code optimization techniques [21] and has significant advantages over the use of # d e f i n e macros [19].
T12
Global variables: the heavy use of global variables is not recommended, due to their associated overhead. In addition, their values can be modified through the program, opening the possibility of collateral problems later.
T13
Constants inside loops: it is recommended to avoid continuous access to constants within loops, even the risk of poor readability.
T14
Initialization versus assignment: variables should be directly initialized, instead of using a subsequent assignment, with the objective of avoiding the assignment of the instantiation.
T15
Division by a power-of-two denominator: division expressions with power-of-two denominators can be changed by shift expressions.
T16
Multiplication by a power-of-two factor: as in the previous technique, multiplication expressions with power-of-two factors can also be changed by shift expressions.
T17
Integer versus character: for arithmetic operations integers should be used instead of characters because in C and C++ char values are converted to integers before operating.
T18
Loop count down: a loop can be traversed in the opposite direction when the order of its counter is not determinative. Traversing the loop in this way implies a faster process, because less instructions are required.
T19
Loop unrolling: some small loops can be unrolled with the objective of decreasing the number of iterations. However, one should be careful to use this technique without reducing the performance of the cache due to an increase in code size, among other reasons.
T20
Passing structures by reference instead of value: it is recommended to pass structures by reference on function calls whenever possible, with the objective of avoiding the overhead of copying all the structures when they are passed by value.
T21
Pointer aliasing: due to the possibility that the same address may be pointed to by two pointers, some optimizations offered by the compiler cannot be automatically applied. For instance, common subexpression should be eliminated manually by the programmer.
T22
Chains of pointers: when using chains of pointers, performance can be improved by the utilization of intermediate local variables to access the final links instead of following the entire chain every time.
T23
Pre-increment versus post-increment: in the case of data types with classes that overload increment operators, it is recommended to use the pre-increment instead of the post-increment operator to avoid the previous copy of the object.
T24
Linear search: w h i l e statements are recommended to control loop iterations when using linear search method, since they imply a single comparison ( w h i l e ( l i s t [ i ] ! = s e a r c h e d ) ) instead of the usual two comparisons (one to control the iterations and another to find the desired key).
T25
Invariant IF statements within loops: it is advisable to take invariant conditional expressions out of the loops whenever possible, although this means an increase in the number of loops.
With the objective of demonstrating the effectiveness of these 25 techniques, and following the measurement algorithm that we introduced in [11], two specific tests were performed for each technique: one test with a standard code, and a second with the result of applying the corresponding efficient technique.
It is important to remember that although all the experiments were based on C++ code, they apply equally to C, and the objective of this research is to demonstrate that the proposed techniques should be taken into account in order to write energy-efficient code.

6. Experimental Results and Discussion

Table 2, Table 3, Table 4 and Table 5 show the energy saving results related to the application of the proposed techniques in the different RPi devices (2B, 3B, 3B+ and 4).
Optimization levels 1 and 2 have been omitted in the tables, since their values do not improve the results and they are not particularly representative for the objectives of the current approach. Nevertheless, complete results of the experiments conducted can be consulted in the Supplementary Materials.
The general pseudocode followed in all the experiments is shown in Algorithm 1. As can be observed it is a linear time algorithm with complexity O ( n ) , where n is the number of iterations of the loop. As described in Section 4, each test is repeated one hundred million times. Thus, the initial measurements should be divided by the number of iterations (to extract the data for a single execution). The internal complexity of each test varies depending on each technique, although, as shown in the source code of the tests (available at [46]) the complexity is constant or linear in most cases except in the row-major accessing technique (T4) due to the double nested loop used to traverse the two-dimensional array generating a quadratic complexity ( O ( n 2 ) ) since it is a square matrix.
Algorithm 1 Test execution
1:
procedure
2:
     s t a r t t i m e
3:
    for j 0 , 100000000 do
4:
         e x e c u t e t e s t
5:
    end for
6:
     g e t t i m e
7:
end procedure
In addition, as mentioned above, each procedure was executed ten times, in order to obtain the average result of those ten measurements. The standard deviation was also calculated in order to quantify the dispersion of the measurements. In this sense, it is noteworthy that the standard deviations obtained (that can be consulted in the Supplementary Materials) were very small (mean deviation of 0.28%), indicating that the results tended to be close to the averages shown in the tables.
In addition, as mentioned in the previous section, two tests were implemented for each technique. Thus, the tables show the energy consumed in nanojoules of both tests (standard code and energy-efficient code) for each technique, applying and not applying the automatic optimization offered by the compiler (optimization levels three and zero respectively). Tables also show the percentage of improvement between the execution of the standard code and the efficient one.
With the objective of enhancing the understanding of the data, Figure 2 and Figure 3 are provided to summarize the previous tables.
Both figures show on the horizontal axes the numbers that identify each of the applied techniques, whereas the percentages of energy saving achieved (with respect to the standard code versions) when applying each technique are shown on the verticals. The four models of RPi used in the experiments are represented: 2B (yellow bars), 3B (orange), 3B+ (blue) and 4 (green). Figure 2 shows the results when using optimization level zero (0), that is, no automatic optimization of the compiler is used, whereas Figure 3 represents the data obtained when the tests are compiled with optimization level 3.
It is important to take into account the results obtained with the optimization level zero, since in these cases, unlike in the rest of the optimization levels offered by the compiler, the ability to debug the programs remains unaltered and the expected results can be obtained. Thus, as shown in Figure 2, the use of the proposed techniques is especially recommended for cases in which the debugging processes takes considerable time.
In terms of energy saving, the percentages of improvement obtained are similar to those achieved in terms of decreasing execution time in our previous work [11]. The RPi 4, which did not exist when our previous work was published, demonstrates that the more advanced the Raspberry Pi model is, the shorter its execution times are.
As can be seen in Figure 2 and Figure 3 and Table 2, Table 3, Table 4 and Table 5, the application of these techniques achieve energy savings of up to 99.56%. Especially noteworthy are the improvements obtained when applying two widely known techniques: exception handling (T9) and passing structures by reference instead of by value (T20), as in the analysis of execution time conducted in [11].
In general, the improvement percentages are similar when applying a technique in the four models of RPi, although there are some significant differences produced mainly by the RPi 4 tests. For instance, in the case of the optimization level zero (0) (see Figure 2), the following techniques achieve a greater energy saving (up to 10 percentage points more) with the RPi 4 than with the other models: bit fields (T1); row-major accessing (T4); function inlining (T11); loop unrolling (T19); and linear search (T24).
In contrast, the percentage of energy saving with this model is much lower (even non-existent) in the following cases (when compared to the results of the other three models): cascaded function calls (T3); common subexpression elimination (T6); global variables within loops (T10); global variables (T12); constants inside loops (T13); pointer aliasing (T21); chains of pointers (T22); and invariant IF statements within loops (T25).
With regard to optimization level 3 (see Figure 3), the RPi 4, achieves better energy results than the rest of the models when applying these techniques: cascaded function call (T3); constructor initialization lists (T5); dead code elimination (T8); and pointer aliasing (T21). Whereas, the improvement is smaller for the following techniques: bit fields (T1); common subexpression elimination (T6); global variables (T12); initialization versus assignment (T14); loop count down (T18); and linear search (T24).
Returning to the energy savings obtained without the help of the automatic optimizations of the compiler (see Figure 2), and now considering all the RPi models used, there are several techniques that produce no or very limited improvement. This means their energy efficient code did not consume less energy than the corresponding standard code. This occurs when applying the following techniques: row-major accessing (T4); mapping structures (T7); division by a power-of-two denominator (T15); multiplication by a power-of-two factor (T16); loop count down (T18); and pre-increment versus post-increment (T23). The other nineteen techniques demonstrated their efficiency in writing energy-efficient code when compiler optimization is set to default (i.e., with level zero), achieving an average energy saving of 33.66%, considering the four different models of RPi.
When using optimization level 3 together with the application of the energy-efficient techniques, the automatic help offered by the compiler achieve significant results in most of the tests performed (see Figure 3). However, writing efficient code manually is still recommended with regards to the following techniques, which achieve an average energy saving of 51.33%: cascaded function calls (T3); exception handling (T9); initialization versus assignment (T14); loop count down (T18); passing structures by reference (T20); and linear search (T24). Next, these techniques are analyzed in greater depth using RPi models 3B+ and 4, because these devices achieve better execution times. In addition, RPi 3B+ will remain in production until at least January 2026, and RPi 4 has been recently released (in September 2019).

6.1. Cascaded Function Calls (T3)

Results achieved when applying this technique have demonstrated here that avoiding cascaded function calls that return pointers or references is recommended. The role of the programmer is especially important for this technique, since he or she, unlike the compiler, are able to know if the reference returned by a function remains unchanged during the execution of a particular code fragment. This can be observed in the tests (see Listing 1) which were developed to analyze the percentage of energy saving achieved when using this technique. The standard test consists of a loop that traverses an array and calls a function in each iteration. In the energy-efficient test, just one call is made outside the loop and the value returned by the function is stored in an auxiliary variable which is checked inside the loop in each iteration.
Listing 1. Cascaded function calls. Standard and energy-efficient code.
Electronics 08 01192 i001
As shown in Figure 4, energy savings of up to 95% are achieved thanks to this technique, with an improvement of 89.04% when using an array of just 20 elements (that is, with just 20 loop iterations). In addition, energy savings vary depending on the size of the array. The improvement of 51.37% reached when using an array size of 3 elements (just three loop iterations) is also noteworthy. From 100 or more calls, the energy saving stabilizes at around 90%. This demonstrates the effectiveness of a technique which should be applied whenever the above conditions are met.

6.2. Row-Major Accessing (T4)

Some languages support two-dimensional arrays stored in a contiguous by column-major order, whereas others such as C and C++ use a row-major one, that is, row-by-row, so that the element x + 1 is stored right next to x. Therefore, two-dimensional arrays should be traversed in the order they were stored, that is, the leftmost index should be incremented first, with the objective of achieving higher rates of cache hits during the accesses. In standard code the array is traversed by iterating over each column first (the outer loop processes the columns whereas the rows are processed by the inner one). Instead, row-major iteration is used for traversing the energy-efficient code (see Listing 2).
The percentages of energy saving achieved by applying this technique grow depending on the array size by up to 85.52%, so that greater percentages of improvement are obtained as the size of the vector increases, principally due to the work increment of the cache (see Figure 5). In this way, as the test is developed by using arrays that represent square matrices, the improvement is influenced by the size of both dimensions. Therefore, a deeper analysis of the effects produced by variations in array sizes will be addressed in future work.
Listing 2. Row-major accessing. Standard and energy-efficient code.
Electronics 08 01192 i002
The difference between the results of both models, due to fact that the Cortex-A72 of the model 4 features a larger cache which leads to a reduction in the miss penalty when applying standard code, is also noteworthy. In this way, from 40 or more elements, the percentage stabilizes around an improvement of 80% in RPi 3B+ and 60% in RPi 4. This fact also strongly influences the results obtained with an array size of 30 elements, where the cache hit ratio increases.

6.3. Exception Handling (T9)

Although exceptions are needed to detect and manage unexpected errors, they involve significant time penalties which also involve energy consumption. They are produced by successive calls to the exception handler passing a parameter as an argument. When its type and the type of parameter specified by the handler match, the handler takes control of the execution flow.
In some cases when these exceptions are within loops, it is possible to replace them with other statements, such as c o n t i n u e and b r e a k , which allow changing the flow of execution and control possible errors in the same way that exceptions do, but with lower cost (see Listing 3).
As expected, the percentage of energy saving depends on the number of exceptions thrown and the structure of the data, so there are infinite possible variations that can be applied and analyzed in this experiment. Therefore, the evaluation in greater depth of the conditions that influence these improvements has been omitted, along with the comparative graph, especially given the differences obtained between the different RPi models were not significant (as shown in Figure 3).
The objective is to demonstrate that significant energy efficiency improvements can be achieved when this technique is applied. In the standard test, 100 simple exceptions were thrown and, although they did not have any content apart from its declaration ( c l a s s m y e x c e p t i o n : p u b l i c e x c e p t i o n { } m y e x ; ), energy saving reached 99%. Thus, it is recommended to apply this technique to control unexpected errors within loops whenever possible under the above conditions.
Listing 3. Exceptions. Standard and energy-efficient code.
Electronics 08 01192 i003

6.4. Initialization versus Assignment (T14)

Whatever the type of data, it is highly advisable to initialize variables directly when they are declared, since a subsequent instantiation implies an unnecessary assignment that can be avoided. The tests (see Listing 4) analyze the energy savings achieved by using complex double numbers and compare direct initialization (energy-efficient code) with the alternative use of a subsequent assignment (standard code). Energy savings of up to 52.97% are achieved using this technique (as shown in Figure 3).
With regard to this technique, the percentage of energy saving depends on the data types, so there are many possible variations that can be applied and analyzed in this experiment (considering primitive, derived and abstract or used-defined data types, along with datatype modifiers, e.g., unsigned or long). Thus, in this case, the evaluation in greater depth of the conditions that influence these percentages of improvement has also been omitted, along with the comparative graph, since the differences obtained between the different RPi models were not significant.
Listing 4. Initialization versus assignment. Standard and energy-efficient code.
Electronics 08 01192 i004

6.5. Loop Count Down (T18)

Those loops in which the order of its counter is not determinative can be traversed in the opposite direction (instead of traversing it forward). The reason lies in the fact that it is faster to process “i- -” (energy-efficient code) than i = 0 ; i < 100 (standard code) as a loop condition, since traversing it forward implies more steps (see Listing 5). These include subtraction, evaluation of the result, iterator increment (if the result is not zero) and continue. It is worth noting that the loop termination clause also has an important impact on the improvement, since they have to be evaluated an extensive number of times.
As shown in Figure 6, energy savings from 20% to 30% can be achieved when applying this technique using model 3B+ and arrays with more than 20 elements, whereas in model 4 the improvement is almost nil (between 1.29% and 2.86%).
To understand this, it is important to highlight that runtime results are significantly lower in the RPi 4, so that even the execution time of the standard code on the model 4 is up to 50% faster than the execution time of the efficient code on the RPi 3B+ (as can be consulted in the Supplementary Materials). Thus, this significantly reduces the chances of further improving the results by applying energy-efficient code. This is due not only to the out of order execution and the larger cache of the model 4 (which leads to a reduction in the miss penalty when applying the standard code, reducing the difference with the energy-efficient one), but because of the specific improvements introduced in the Cortex-A72 of the model 4 (that add power and performance optimizations to the previous A53 design of the model 3B+ including an improved branch prediction algorithm, increased dispatch bandwidth, lower-latency execution units, and higher bandwidth L2 cache) there is a performance improvement from 10 to 50% according to Arm [47], especially regarding floating-point workloads.
Listing 5. Loop count down. Standard and energy-efficient code.
Electronics 08 01192 i005

6.6. Passing Structures by Reference (T20)

Regarding function calls, structures passed by value imply significant overhead produced by the need for a complete copy of each structure (including constructor and destructor classes). Instead, this overhead can be avoided if the structures are passed by reference (see Listing 6). However, it is important to take into account the fact that, unlike value arguments, reference arguments can alter the original instance. Therefore, it is advisable that pointers to structures be declared as constants if the intention is not to modify their pointed values.
The percentage of energy saving produced by this technique depends on the data structures used, therefore there are infinite number of possible variations that can be applied and analyzed in this experiment. Thus, the evaluation in greater depth of the conditions that influence these improvements has also been omitted, along with the comparative graph, since, in addition, the differences obtained between the different RPi models were not significant.
As can be observed, the structure used to demonstrate the effectiveness of this technique consists of a class with two string members and a data substructure formed by an array of 10 elements and an integer variable that serves as an index. The class constructor consists of three assignments (corresponding to the initialization of the two string attributes and the index of the substructure). In addition, the g e t I n d e x function simply returns the value of the index.
In the standard code, the class is passed by value (implying a complete copy of its structure) and the index is directly accessed ( v a l u e . g e t I n d e x ), whereas in the energy-efficient code the class is passed by reference so that the index is accessed through a pointer ( r e f e r e n c e –> g e t I n d e x ( ) ). This simple modification resulted in an improvement of around 90.54% in the four RPi models.
Listing 6. Passing structures by reference. Standard and energy-efficient code.
Electronics 08 01192 i006

6.7. Linear Search (T24)

In general, two comparisons are required to conduct a common linear search for finding an element within a list: the first comparison to control the loop iterations, and a second one to check if the current element matches the targeted value. In this way, the algorithm sequentially checks all the elements until founding a match or reaching the end of the list with an unsuccessful outcome. This energy-efficient technique consists of replacing the f o r loop with a w h i l e statement (see Listing 7). In this way, only one comparison ( l i s t [ i ] ! = s e a r c h ) is required within the loop. In addition, it should also be noted that the array size should be increased by one element to insert the target value at the end to avoid potential problems arising if the search value is not contained within the list. In this way, when the found index corresponds to the last position it means that the target value is not contained in the array. The arrays of both types of code (standard and energy-efficient) were initialized by placing the target element in the last position.
As shown in Figure 7, improvements from 20% to 33% with array sizes between 20 and 30 elements are achieved when applying this technique using the RPi 3B+, whereas with model 4 the percentage of improvement is significantly reduced and only reaches 7.63%. It is also important to highlight that although there are faster algorithms, linear search is practical when using short lists or performing single searches in un-ordered lists. In addition, it is a well-known and widely used algorithm which is especially recommended for beginners in programming, since it is simple to implement.
Listing 7. Linear search. Standard and energy-efficient code.
Electronics 08 01192 i007
In this case, runtime is also significantly lower in the RPi 4 so that even the execution time of the standard code on the model 4 is up to 50% faster than the execution time of the efficient code on the RPi 3B+ (as can be consulted in the Supplementary Materials). Thus, this significantly reduces the chances of further improving the results by applying energy-efficient code (as discussed in Section 6.5).
In general, the application of these twenty-five techniques achieves significant energy savings and their improvements are similar in the four models of Raspberry Pi used. However, it should also be noted that in some experiments (discussed in greater depth in Section 6.2, Section 6.5 and Section 6.7), model 3B+ achieves better energy savings than model 4, due to the differences between the efficiency-focused Cortex-A53 of the model 3B+ and the performance-oriented Cortex-A72 of the model 4.

7. Limitations and Future Work

An extensive number of different tests could have been designed to demonstrate the effectiveness of each energy-efficient technique, since there are infinite possible variations which could have been applied and analyzed in each of the experiments. These variations, together with the wide range of possible workloads, may significantly influence the improvement percentages discussed above. In addition, although the discussed results can be extrapolated to other IoT devices, their percentages of improvement will be also conditioned by the programming language and hardware architecture used.
Consequently, future work is expected to expand the current research to other IoT devices, regardless of architecture, with the objective of analysing the range of potential applications available for these techniques. In addition, the use of other programming languages and different compilers, apart from GCC, will also be addressed.
With regard to the techniques that have achieved the best results, we hope to evaluate in greater depth various aspects that may improve energy efficiency, such as data types or workloads that need to be considered when writing energy-efficient code. In the same way, conducting a detailed analysis of the improvements that could be achieved by combining some of the proposed techniques will also be considered.
It is also hoped that in the future the current proposal can be extended and applied to energy-efficient networked computing architectures [48], and thus help resolve the challenges that the unpredictable large volume of data generated by Internet of Everything currently faces.

8. Conclusions

A set of twenty-five techniques have been analyzed to demonstrate their effectiveness for writing energy-efficient code for Raspberry Pi boards. They were previously selected from the literature with the objective of being used in an extensive range of programming routines and tasks. All of them are focused on transformations aimed at reducing running time and energy consumption while preserving the semantics of the program without altering the algorithm.
The application of these techniques achieves energy savings of up to 99.56% and their improvements are similar in the four models of Raspberry Pi used, although in some experiments, model 3B+ achieves better energy savings than model 4, due to the differences between the efficiency-focused Cortex-A53 of the model 3B+ and the performance-oriented Cortex-A72 of the model 4. In addition, this proposal analyzes the energy consumed through the manual application of these techniques compared to the result of directly applying the automatic optimizations offered by the GCC compiler. In this way, it has been demonstrated that the role of the programmer is essential when it comes to achieving the best energy savings, since the compiler does not obtain the same improvements that a programmer can achieve when applying theses energy-efficient techniques manually.
Therefore, programmers should be aware of the important impact that even small and simple portions of code can have on energy consumption. Applying energy-efficient techniques analyzed here is recommended, especially given that these improvements become important when they are applied to code in programs that run non-stop, very common in IoT devices.
Seven of the twenty-five techniques were analyzed in greater depth, with the objective of evaluating the conditions that influence energy efficiency improvements. In addition, the results discussed in the current research can be extrapolated to other devices with similar Arm architectures, especially those related to the IoT.

Supplementary Materials

The following are available online at at https://www.mdpi.com/2079-9292/8/10/1192/s1, Spreadsheet S1: complete experimental results.

Author Contributions

Conceptualization, J.C.-G.; formal analysis, J.C.-G. and F.L.-P.; funding acquisition, J.-L.G.-S.; investigation, J.C.-G. and F.L.-P.; methodology, J.C.-G.; project administration, J.-L.G.-S. and M.-Á.P.-T.; software, J.C.-G.; supervision, J.-L.G.-S. and M.-Á.P.-T.; validation, J.C.-G. and F.L.-P.; visualization, J.C.-G. and F.L.-P.; writing—original draft, J.C.-G.; writing—review and editing, J.C.-G., F.L.-P., J.-L.G.-S. and M.-Á.P.-T.

Funding

This research is partly financed by the European Union through the European Regional Development Fund (ERDF) Programme: Extremadura Operational Programme 2014–2020, Thematic objective 1: Research and Innovation, and Thematic Objective 2: Information and communication technologies. Ref. 2018.14.02.332A.444.00, CultivData Project. This work was also supported in part by the European Regional Development Fund, and the Regional Ministry of Economy, Science and Digital Agenda of the Junta of Extremadura under project GR18195.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Raspberry Pi Foundation. Available online: https://www.raspberrypi.org (accessed on 29 September 2019).
  2. Khan, T. A Deep Learning Model for Snoring Detection and Vibration Notification Using a Smart Wearable Gadget. Electronics 2019, 8, 987. [Google Scholar] [CrossRef]
  3. Alarcón-Paredes, A.; Francisco-García, V.; Guzmán-Guzmán, I.P.; Cantillo-Negrete, J.; Cuevas-Valencia, R.E.; Alonso-Silverio, G.A. An IoT-Based Non-Invasive Glucose Level Monitoring System Using Raspberry Pi. Appl. Sci. 2019, 9, 46. [Google Scholar] [CrossRef]
  4. Aghenta, L.O.; Iqbal, M.T. Low-Cost, Open Source IoT-Based SCADA System Design Using Thinger.IO and ESP32 Thing. Electronics 2019, 8, 822. [Google Scholar] [CrossRef]
  5. Ambrož, M.; Hudomalj, U.; Marinšek, A.; Kamnik, R. Raspberry Pi-Based Low-Cost Connected Device for Assessing Road Surface Friction. Electronics 2019, 8, 341. [Google Scholar] [CrossRef]
  6. Ali, A.S.; Coté, C.; Heidarinejad, M.; Stephens, B. Elemental: An Open-Source Wireless Hardware and Software Platform for Building Energy and Indoor Environmental Monitoring and Control. Sensors 2019, 19, 17. [Google Scholar] [CrossRef]
  7. Thomas, A.; Hedley, J. FumeBot: A Deep Convolutional Neural Network Controlled Robot. Robotics 2019, 8, 62. [Google Scholar] [CrossRef]
  8. Sobota, J.; PiŜl, R.; Balda, P.; Schlegel, M. Raspberry Pi and Arduino boards in control education. IFAC Proc. Vol. 2013, 46, 7–12. [Google Scholar] [CrossRef]
  9. Urban, P.L. Prototyping Instruments for the Chemical Laboratory Using Inexpensive Electronic Modules. Angew. Chem. Int. Ed. 2018, 57, 11074–11077. [Google Scholar] [CrossRef] [PubMed]
  10. Pereira, R.; Couto, M.; Ribeiro, F.; Rua, R.; Cunha, J.; Fernandes, J.P.; Saraiva, J. Energy Efficiency Across Programming Languages: How Do Energy, Time, and Memory Relate? In Proceedings of the 10th ACM SIGPLAN International Conference on Software Language Engineering (SLE 2017), Vancouver, BC, Canada, 23–27 October 2017; ACM: New York, NY, USA, 2017; pp. 256–267. [Google Scholar] [CrossRef]
  11. Corral-García, J.; González-Sánchez, J.L.; Pérez-Toledano, M.A. Evaluation of Strategies for the Development of Efficient Code for Raspberry Pi Devices. Sensors 2018, 18, 4066. [Google Scholar] [CrossRef] [PubMed]
  12. GCC, the GNU Compiler Collection. Available online: https://gcc.gnu.org (accessed on 29 September 2019).
  13. Dawson-Haggerty, S.; Krioukov, A.; Culler, D.E. Power Optimization—A Reality Check; Tech. Rep. UCB/EECS-2009-140; EECS Department, University of California: Berkeley, CA, USA, 2009. [Google Scholar]
  14. Abdulsalam, S.; Lakomski, D.; Gu, Q.; Jin, T.; Zong, Z. Program energy efficiency: The impact of language, compiler and implementation choices. In Proceedings of the International Green Computing Conference, Dallas, TX, USA, 3–5 November 2014; pp. 1–6. [Google Scholar] [CrossRef]
  15. Shore, C. Efficient C Code for ARM Devices. In Proceedings of the ARM Technology Conference, Santa Clara, CA, USA, 9–11 November 2010; pp. 1–14. [Google Scholar]
  16. Mantovani, F.; Calore, E. Performance and Power Analysis of HPC Workloads on Heterogeneous Multi-Node Clusters. J. Low Power Electron. Appl. 2018, 8, 13. [Google Scholar] [CrossRef]
  17. Calore, E.; Mantovani, F.; Ruiz, D. Advanced Performance Analysis of HPC Workloads on Cavium ThunderX. In Proceedings of the 2018 International Conference on High Performance Computing Simulation (HPCS), Orleans, France, 16–20 July 2018; pp. 375–382. [Google Scholar] [CrossRef]
  18. Fog, A. Optimizing Software in C++—An Optimization Guide for Windows, Linux and Mac Platforms; Copenhagen University College of Engineering: Ballerup, Denmark, 2018. [Google Scholar]
  19. Sloss, A.; Symes, D.; Wright, C. ARM System Developer’s Guide: Designing and Optimizing System Software; Elsevier: Amsterdam, The Netherlands, 2004. [Google Scholar]
  20. Goldthwaite, L. Technical Report on C++ Performance; ISO/IEC PDTR 18015; ISO: Geneva, Switzerland, 2006. [Google Scholar]
  21. Guntheroth, K. Optimized C++: Proven Techniques for Heightened Performance; O’Reilly Media, Inc.: Sebastopol, CA, USA, 2016. [Google Scholar]
  22. Malviya, N.; Khunteta, A. Code Optimization using Code Purifier. Int. J. Comput. Sci. Inf. Technol. 2015, 6, 4753–4757. [Google Scholar]
  23. Gupta, N.; Seth, N.; Verma, P. Optimal Code Compiling in C. Int. J. Comput. Sci. Inf. Technol. 2015, 6, 2050–2057. [Google Scholar]
  24. Cooper, K.D.; Mckinley, K.S.; Torczon, L. Compiler-Based Code-Improvement Techniques. 1998. Available online: http://www.cs.tufts.edu/~nr/cs257/archive/keith-cooper/survey.pdf (accessed on 29 September 2019).
  25. Lee, M.E. Optimization of Computer Programs in C. Available online: http://leto.net/docs/C-optimization.php (accessed on 29 September 2019).
  26. Ghosh, K. Writing Efficient C and C Code Optimization. Available online: https://www.codeproject.com/Articles/6154/Writing-Efficient-C-and-C-Code-Optimization (accessed on 29 September 2019).
  27. Isensee, P. C++ Optimization Strategies and Techniques. Available online: http://www.tantalon.com/pete/cppopt/main.htm (accessed on 29 September 2019).
  28. Kim, D.; Hong, J.E.; Yoon, I.; Lee, S.H. Code refactoring techniques for reducing energy consumption in embedded computing environment. Clust. Comput. 2018, 21, 1079–1095. [Google Scholar] [CrossRef]
  29. Park, J.J.; Hong, J.E.; Lee, S.H. Investigation for Software Power Consumption of Code Refactoring Techniques. In Proceedings of the 26th International Conference on Software Engineering and Knowledge Engineering, Vancouver, BC, Canada, 1–3 July 2014; pp. 717–722. [Google Scholar]
  30. Gottschalk, M.; Jelschen, J.; Winter, A. Energy-efficient code by refactoring. Softwaretechnik-Trends 2013, 33. [Google Scholar] [CrossRef]
  31. Mont Blanc Project. Available online: https://www.montblanc-project.eu (accessed on 29 September 2019).
  32. Yokoyama, D.; Schulze, B.; Borges, F.; Mc Evoy, G. The survey on ARM processors for HPC. J. Supercomput. 2019, 75, 7003–7036. [Google Scholar] [CrossRef]
  33. Calore, E.; Schifano, S.F.; Tripiccione, R. Energy-Performance Tradeoffs for HPC Applications on Low Power Processors. In Euro-Par 2015: Parallel Processing Workshops; Hunold, S., Costan, A., Giménez, D., Iosup, A., Ricci, L., Gómez Requena, M.E., Scarano, V., Varbanescu, A.L., Scott, S.L., Lankes, S., Eds.; Springer International Publishing: Cham, Switzerland, 2015; pp. 737–748. [Google Scholar]
  34. Jubertie, S.; Melin, E.; Raliravaka, N.; Bodèle, E.; Bocanegra, P.E. Impact of Vectorization and Multithreading on Performance and Energy Consumption on Jetson Boards. In Proceedings of the 2018 International Conference on High Performance Computing Simulation (HPCS), Orleans, France, 16–20 July 2018; pp. 276–283. [Google Scholar] [CrossRef]
  35. Ardito, L.; Torchiano, M. Creating and evaluating a software power model for linux single board computers. In Proceedings of the 6th International Workshop on Green and Sustainable Software, Gothenburg, Sweden, 27 May 2018; pp. 1–8. [Google Scholar]
  36. Kaup, F.; Gottschling, P.; Hausheer, D. PowerPi: Measuring and modeling the power consumption of the Raspberry Pi. In Proceedings of the 2014 IEEE 39th Conference on Local Computer Networks (LCN), Edmonton, AB, Canada, 8–11 September 2014; pp. 236–243. [Google Scholar]
  37. Bekaroo, G.; Santokhee, A. Power consumption of the Raspberry Pi: A comparative analysis. In Proceedings of the IEEE International Conference on Emerging Technologies and Innovative Business Practices for the Transformation of Societies (EmergiTech), Balaclava, Mauritius, 3–6 August 2016; pp. 361–366. [Google Scholar]
  38. Qureshi, B.; Koubaa, A. On Energy Efficiency and Performance Evaluation of Single Board Computer Based Clusters: A Hadoop Case Study. Electronics 2019, 8, 182. [Google Scholar] [CrossRef]
  39. He, Q.; Weaver, V.; Segee, B. Comparing Power and Energy Usage for Scientific Calculation with and without GPU Acceleration on a Raspberry Pi Model B+ and 3B. In Proceedings of the International Conference on Internet Computing (ICOMP), Las Vegas, NV, USA, 30 July–2 August 2018; The Steering Committee of The World Congress in Computer Science, Computer: San Diego, CA, USA, 2018; pp. 3–9. [Google Scholar]
  40. Nakhkash, M.R.; Gia, T.N.; Azimi, I.; Anzanpour, A.; Rahmani, A.M.; Liljeberg, P. Analysis of Performance and Energy Consumption of Wearable Devices and Mobile Gateways in IoT Applications. In Proceedings of the International Conference on Omni-Layer Intelligent Systems, Crete, Greece, 5–7 May 2019; pp. 68–73. [Google Scholar]
  41. Chávez, F.; de Vega, F.F.; Díaz, J.; García, J.; Rodriguez, F.; Castillo, P.A. Energy-consumption prediction of genetic programming algorithms using a fuzzy rule-based system. In Proceedings of the Genetic and Evolutionary Computation Conference Companion, Kyoto, Japan, 15–19 July 2018; pp. 9–10. [Google Scholar]
  42. Toldinas, J.; Lozinskis, B.; Baranauskas, E.; Dobrovolskis, A. MQTT Quality of Service versus Energy Consumption. In Proceedings of the 2019 23rd International Conference Electronics, Palanga, Lithuania, 17–19 June 2019; pp. 1–4. [Google Scholar]
  43. Oma, R.; Nakamura, S.; Enokido, T.; Takizawa, M. An Energy-Efficient Model of Fog and Device Nodes in IoT. In Proceedings of the 2018 32nd International Conference on Advanced Information Networking and Applications Workshops (WAINA), Krakow, Poland, 16–18 May 2018; pp. 301–306. [Google Scholar] [CrossRef]
  44. Yosuf, B.; Musa, M.; Elgorashi, T.; Lawey, A.Q.; Elmirghani, J.M. Energy Efficient Service Distribution in Internet of Things. In Proceedings of the 2018 20th International Conference on Transparent Optical Networks (ICTON), Bucharest, Romania, 1–5 July 2018; pp. 1–4. [Google Scholar]
  45. Kaup, F.; Hacker, S.; Mentzendorff, E.; Meurisch, C.; Hausheer, D. The Progress of the Energy-Efficiency of Single-Board Computers. Tech. Rep. NetSys-TR-2018-01. Otto-von-Guericke-University, Institute for Intelligent Cooperative Systems, 2018. Available online: https://www.netsys.ovgu.de/netsys_media/publications/NetSys_TR_2018_01.pdf (accessed on 29 September 2019).
  46. Source Code of the Tests Developed for the Manuscript Evaluation of Strategies for the Development of Efficient Code for Raspberry Pi Devices. Available online: https://www.mdpi.com/1424-8220/18/11/4066/s1 (accessed on 29 September 2019).
  47. Arm Cortex-A72 CPU. Available online: https://www.arm.com/products/silicon-ip-cpu/cortex-a/cortex-a72 (accessed on 29 September 2019).
  48. Baccarelli, E.; Naranjo, P.G.V.; Scarpiniti, M.; Shojafar, M.; Abawajy, J.H. Fog of Everything: Energy-Efficient Networked Computing Architectures, Research Challenges, and a Case Study. IEEE Access 2017, 5, 9882–9910. [Google Scholar] [CrossRef]
Figure 1. Current measuring circuit.
Figure 1. Current measuring circuit.
Electronics 08 01192 g001
Figure 2. Percentages of energy saving achieved by writing energy-efficient code (without compiler optimization).
Figure 2. Percentages of energy saving achieved by writing energy-efficient code (without compiler optimization).
Electronics 08 01192 g002
Figure 3. Percentages of energy saving achieved by writing energy-efficient code (with compiler optimization level 3).
Figure 3. Percentages of energy saving achieved by writing energy-efficient code (with compiler optimization level 3).
Electronics 08 01192 g003
Figure 4. Cascaded function calls. Percentage of energy saving according to the number of calls to the function (number of iterations of the loop) in RPi 3B+ and 4B.
Figure 4. Cascaded function calls. Percentage of energy saving according to the number of calls to the function (number of iterations of the loop) in RPi 3B+ and 4B.
Electronics 08 01192 g004
Figure 5. Row-major accessing. Percentage of energy saving according to the matrix size in RPi 3B+ and 4B.
Figure 5. Row-major accessing. Percentage of energy saving according to the matrix size in RPi 3B+ and 4B.
Electronics 08 01192 g005
Figure 6. Loop count down. Percentages of energy saving according to the array size (number of elements) in RPi 3B+ and 4B.
Figure 6. Loop count down. Percentages of energy saving according to the array size (number of elements) in RPi 3B+ and 4B.
Electronics 08 01192 g006
Figure 7. Linear search. Percentages of energy saving according to the array size (number of elements) in RPi 3B+ and 4B.
Figure 7. Linear search. Percentages of energy saving according to the array size (number of elements) in RPi 3B+ and 4B.
Electronics 08 01192 g007
Table 1. Raspberry Pi (RPi) comparison chart.
Table 1. Raspberry Pi (RPi) comparison chart.
ModelRPi 2 BRPi 3 BRPi 3 B+RPi 4 B
SOC TypeBroadcom BCM2836Broadcom BCM2837Broadcom BCM2837B0Broadcom BCM2711
CPU Clock4 × Arm Cortex-A7, 900 MHz4 × Arm Cortex-A53, 1.2 GHz4 × Arm Cortex-A53, 1.4 GHz4 × Arm Cortex-A72, 1.5 GHz
RAM1 GB1 GB1 GB1 GB/2 GB/4 GB
GPUBroadcom VideoCore IVBroadcom VideoCore IVBroadcom VideoCore IVBroadcom VideoCore VI
USB Ports4444 (2 × USB 3.0 + 2 × USB 2.0)
Ethernet100 Mbit/s base Ethernet100 Mbit/s base EthernetGigabit Ethernet (max. 300 Mbps)Gigabit Ethernet (no limit)
Power over EthernetNoNoYes (requires separate PoE HAT)Yes (requires separate PoE HAT)
WiFiNoWiFi 802.11nWiFi 802.11ac Dual BandWiFi 802.11ac Dual Band
BluetoothNo4.14.2 BLE5.0 BLE
Video OutputHDMI/3.5 mm Comp./DSIHDMI/3.5 mm Comp./DSIHDMI/3.5 mm Comp./DSImicro-HDMI/3.5 mm Comp./DSI
Audio OutputI 2 S/HDMI/3.5 mm CompositeI 2 S/HDMI/3.5 mm CompositeI 2 S/HDMI/3.5 mm CompositeI 2 S/HDMI/3.5 mm Composite
Camera Input15 Pin CSI15 Pin CSI15 Pin CSI15 Pin CSI
GPIO Pins40404040
MemoryMicroSDMicroSDMicroSDMicroSD
Table 2. Energy results and percentages of improvement in Raspberry Pi 2B.
Table 2. Energy results and percentages of improvement in Raspberry Pi 2B.
TechniqueEnergy Consumed (Without Optimization)Energy Consumed (Optimization Level 3)
Standard (nJ)Efficient (nJ)Improvement (%)Standard (nJ)Efficient (nJ)Improvement (%)
1Bit fields121.9666.0745.8251.2248.545.24
2Boolean return56.7252.397.6228.0427.990.18
3Cascaded function calls1121.10573.2248.87705.75116.9983.42
4Row-major accessing13,890.6213,943.610.001951.87522.3673.24
5Constructor initialization lists1487.911462.101.731418.831353.564.60
6Common subexpression elimination98.0374.0624.4648.7247.123.28
7Mapping structures732.291117.320.00638.66627.111.81
8Dead code elimination44.7434.1223.7423.6423.530.44
9Exception handling13,250.9658.2799.5612,868.4014.1399.89
10Global variables within loops745.19572.4223.18119.66121.630.00
11Function inlining77.2149.7935.5228.0227.960.19
12Global variables2126.281659.5421.95980.14822.5616.08
13Constants inside loops673.31473.7129.64315.76316.250.00
14Initialization versus assignment80.4439.6450.7376.5013.9581.76
15Division by a power-of-two denominator49.9849.810.3627.9827.860.42
16Multiplication by a power-of-two factor49.9649.830.2527.9227.810.37
17Integer versus character81.5473.909.3727.8228.050.00
18Loop count down2061.132503.400.00511.80503.341.65
19Loop unrolling1058.70678.3635.92121.24105.8212.72
20Passing structures by reference572.9261.2289.31547.4313.8997.46
21Pointer aliasing164.54154.486.1299.0294.184.88
22Chains of pointers112.1083.8725.1934.1734.060.29
23Pre-increment versus post-increment3706.043805.120.00991.48990.060.14
24Linear search3378.412740.7918.87969.45530.2945.30
25Invariant IF statements within loops2990.672067.0330.88185.21185.200.01
Table 3. Energy results and percentages of improvement in Raspberry Pi 3B.
Table 3. Energy results and percentages of improvement in Raspberry Pi 3B.
TechniqueEnergy Consumed (Without Optimization)Energy Consumed (Optimization Level 3)
Standard (nJ)Efficient (nJ)Improvement (%)Standard (nJ)Efficient (nJ)Improvement (%)
1Bit fields105.1758.4944.3847.4046.062.83
2Boolean return61.2047.5622.3023.9424.080.00
3Cascaded function calls998.58550.2444.90592.8097.0383.63
4Row-major accessing12,681.5512,696.560.001903.67267.2385.96
5Constructor initialization lists1211.801162.434.071191.651150.583.45
6Common subexpression elimination90.7369.5823.3148.4046.344.26
7Mapping structures754.681022.390.00649.29715.810.00
8Dead code elimination39.6328.9327.0221.2020.772.02
9Exception handling10,676.1751.5399.5210,861.1912.8699.88
10Global variables within loops703.81522.7025.73147.87144.622.20
11Function inlining71.3545.1436.7323.9824.100.00
12Global variables1743.591449.8816.841023.41925.879.53
13Constants inside loops635.06442.5230.32281.49272.233.29
14Initialization versus assignment76.8936.1752.9671.2212.6682.23
15Division by a power-of-two denominator44.3844.500.0023.9923.900.39
16Multiplication by a power-of-two factor44.4244.370.1123.9723.940.11
17Integer versus character75.8967.2311.4123.8323.810.09
18Loop count down1919.362402.280.00549.88393.3328.47
19Loop unrolling993.81623.3537.2894.94105.220.00
20Passing structures by reference592.7856.2290.52498.6512.7697.44
21Pointer aliasing153.20143.676.2290.7286.334.83
22Chains of pointers108.1880.6325.4731.6031.500.32
23Pre-increment versus post-increment3476.963564.700.001065.111046.031.79
24Linear search3112.782473.1220.55865.26578.8833.10
25Invariant IF statements within loops2839.551922.7532.29129.04129.640.00
Table 4. Energy results and percentages of improvement in Raspberry Pi 3B+.
Table 4. Energy results and percentages of improvement in Raspberry Pi 3B+.
TechniqueEnergy Consumed (Without Optimization)Energy Consumed (Optimization Level 3)
Standard (nJ)Efficient (nJ)Improvement (%)Standard (nJ)Efficient (nJ)Improvement (%)
1Bit fields149.4582.7344.6566.5464.533.03
2Boolean return86.6167.2222.3933.6833.760.00
3Cascaded function calls1401.71769.4045.11827.05134.8283.70
4Row-major accessing18,009.0118,051.360.002658.73375.4685.88
5Constructor initialization lists1689.811617.214.301651.051591.843.59
6Common subexpression elimination128.2297.7823.7467.6564.604.51
7Mapping structures1068.111421.710.00906.92995.190.00
8Dead code elimination55.5340.3027.4229.7128.952.54
9Exception handling14,790.1772.0199.5115,265.7017.8899.88
10Global variables within loops987.25730.9225.96205.91200.432.66
11Function inlining100.3463.2336.9833.7933.960.00
12Global variables2427.072012.8217.071426.081288.639.64
13Constants inside loops887.88617.3330.47392.18379.023.36
14Initialization versus assignment107.2750.6052.8399.6517.7582.18
15Division by a power-of-two denominator62.6162.640.0033.8433.750.28
16Multiplication by a power-of-two factor62.9262.790.2133.8733.690.52
17Integer versus character106.4394.6011.1233.5633.640.00
18Loop count down2683.043353.650.00761.17541.7528.83
19Loop unrolling1386.73868.1337.40132.23147.560.00
20Passing structures by reference751.4879.4889.42692.3217.6197.46
21Pointer aliasing215.79201.786.49126.51120.055.11
22Chains of pointers152.42113.1225.7944.4244.310.25
23Pre-increment versus post-increment4843.874946.660.001474.571442.732.16
24Linear search4346.573483.1219.871201.38799.3233.47
25Invariant IF statements within loops3995.832700.4232.42180.29180.580.00
Table 5. Energy results and percentages of improvement in Raspberry Pi 4B.
Table 5. Energy results and percentages of improvement in Raspberry Pi 4B.
TechniqueEnergy Consumed (Without Optimization)Energy Consumed (Optimization Level 3)
Standard (nJ)Efficient (nJ)Improvement (%)Standard (nJ)Efficient (nJ)Improvement (%)
1Bit fields93.0840.8456.1229.3829.570.00
2Boolean return43.9934.3022.0218.6418.650.00
3Cascaded function calls755.31806.870.00707.7277.1589.10
4Row-major accessing18,990.9616,691.1812.112377.83516.6178.27
5Constructor initialization lists944.10925.122.011430.881282.5110.37
6Common subexpression elimination62.9859.275.8827.9831.840.00
7Mapping structures880.961133.150.00814.32855.690.00
8Dead code elimination24.4818.3624.9718.7217.536.38
9Exception handling9795.1344.6299.549510.5119.9399.79
10Global variables within loops486.16437.4810.01131.38131.050.25
11Function inlining56.8232.1643.4118.5818.710.00
12Global variables1300.581163.0410.58912.82822.389.91
13Constants inside loops403.26338.5816.04231.32229.930.60
14Initialization versus assignment54.4825.6352.9753.8317.7866.98
15Division by a power-of-two denominator29.2732.000.0018.5519.400.00
16Multiplication by a power-of-two factor29.5131.980.0018.6220.540.00
17Integer versus character64.5358.918.7118.4018.620.00
18Loop count down3735.863788.180.00564.20552.822.02
19Loop unrolling1922.48917.6652.27143.33126.7011.61
20Passing structures by reference409.6345.2688.95378.9618.6395.08
21Pointer aliasing103.04105.810.0071.6262.0413.37
22Chains of pointers78.2989.630.0025.9126.540.00
23Pre-increment versus post-increment7309.777349.940.001077.511068.810.81
24Linear search2382.021684.4829.28641.00591.537.72
25Invariant IF statements within loops4031.943760.776.73170.33170.320.00

Share and Cite

MDPI and ACS Style

Corral-García, J.; Lemus-Prieto, F.; González-Sánchez, J.-L.; Pérez-Toledano, M.-Á. Analysis of Energy Consumption and Optimization Techniques for Writing Energy-Efficient Code. Electronics 2019, 8, 1192. https://doi.org/10.3390/electronics8101192

AMA Style

Corral-García J, Lemus-Prieto F, González-Sánchez J-L, Pérez-Toledano M-Á. Analysis of Energy Consumption and Optimization Techniques for Writing Energy-Efficient Code. Electronics. 2019; 8(10):1192. https://doi.org/10.3390/electronics8101192

Chicago/Turabian Style

Corral-García, Javier, Felipe Lemus-Prieto, José-Luis González-Sánchez, and Miguel-Ángel Pérez-Toledano. 2019. "Analysis of Energy Consumption and Optimization Techniques for Writing Energy-Efficient Code" Electronics 8, no. 10: 1192. https://doi.org/10.3390/electronics8101192

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop