forked from vonj/snippets.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bitcnts.c
83 lines (72 loc) · 2 KB
/
bitcnts.c
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
** BITCNTS.C - Test program for bit counting functions
**
** public domain by Bob Stout & Auke Reitsma
*/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <limits.h>
#include <time.h>
#include <float.h>
#include "bitops.h"
#define ITERS 1500000L
#define FUNCS 8
static int CDECL bit_shifter(long int x);
int main(void)
{
clock_t start, stop;
double ct, cmin = DBL_MAX, cmax = 0;
int i, cminix, cmaxix;
long j, n;
static int (* CDECL pBitCntFunc[FUNCS])(long) = {
bit_count,
bitcount,
ntbl_bitcnt,
ntbl_bitcount,
btbl_bitcnt,
BW_btbl_bitcount,
AR_btbl_bitcount,
bit_shifter
};
static char *text[FUNCS] = {
"Optimized 1 bit/loop counter",
"Ratko's mystery algorithm",
"Recursive bit count by nybbles",
"Non-recursive bit count by nybbles",
"Recursive bit count by bytes",
"Non-recursive bit count by bytes (BW)",
"Non-recursive bit count by bytes (AR)",
"Shift and count bits"
};
puts("Bit counter algorithm benchmark\n");
for (i = 0; i < FUNCS; i++)
{
start = clock();
for (j = n = 0; j < ITERS; j++)
n += pBitCntFunc[i](j);
stop = clock();
ct = (stop - start) / (double)CLOCKS_PER_SEC;
if (ct < cmin)
{
cmin = ct;
cminix = i;
}
if (ct > cmax)
{
cmax = ct;
cmaxix = i;
}
printf("%-38s> Time: %7.3f sec.; Bits: %ld\n", text[i], ct, n);
}
printf("\nBest > %s\n", text[cminix]);
printf("Worst > %s\n", text[cmaxix]);
return 0;
}
static int CDECL bit_shifter(long int x)
{
int i, n;
for (i = n = 0; x && (i < (sizeof(long) * CHAR_BIT)); ++i, x >>= 1)
n += (int)(x & 1L);
return n;
}