forked from cjdelisle/cjdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAverage.h
47 lines (43 loc) · 1.53 KB
/
Average.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* vim: set expandtab ts=4 sw=4: */
/*
* You may redistribute this program and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
struct Average
{
uint64_t shiftedAvg;
int shiftCount;
int weight;
};
static inline void Average_init(struct Average* average, uint64_t factor, uint64_t weight)
{
average->weight = Bits_log2x64(weight);
average->shiftCount = Bits_log2x64(factor);
average->shiftedAvg = 0;
// must be a power of 2
Assert_true((1 << average->shiftCount) == factor);
Assert_true((1 << average->weight) == weight);
}
static inline void Average_accumulate(struct Average* average, uint64_t value)
{
if (!average->shiftedAvg) {
average->shiftedAvg = value << average->shiftCount;
return;
}
uint64_t sha = average->shiftedAvg;
sha = ( (sha << average->weight) - sha + (value << avg->shiftCount) ) >> average->weight;
average->shiftedAvg = sha;
}
static inline uint64_t Average_value(struct Average* average)
{
return avg->shiftedAvg >> avg->shiftCount;
}