-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial. strbench from http://pasky.or.cz/dev/glibc/strbench/
- Loading branch information
0 parents
commit 602ae2f
Showing
2 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE := strbench | ||
LOCAL_SRC_FILES := strbench.c | ||
|
||
|
||
LOCAL_SHARED_LIBRARIES := \ | ||
liblog \ | ||
libcutils \ | ||
libbinder \ | ||
libutils | ||
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) | ||
LOCAL_MODULE_TAGS := eng,debug | ||
|
||
include $(BUILD_EXECUTABLE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* | ||
* (c) Petr Baudis <[email protected]> 2009 | ||
* MIT licence. | ||
* | ||
* Simple tool for benchmarking string functions. | ||
* Compile with: gcc -std=c99 -Wall -O3 -fno-builtin -o strbench strbench.c | ||
* Run like: ./strbench memcmp 4096 4 8 16 32 128 512 | ||
*/ | ||
|
||
#include<assert.h> | ||
#include<stdlib.h> | ||
#include<stdio.h> | ||
#include<string.h> | ||
#include<sys/times.h> | ||
#include<unistd.h> | ||
|
||
#define READSIZE (1024*1024) | ||
const int samplesizes[] = { 4, 8, 16, 128, 512 }; | ||
|
||
void | ||
strcmp_bench(char *s1, char *s2, int sample_len) | ||
{ | ||
#undef strcmp | ||
volatile int r = strcmp(s1, s2); | ||
assert(!r || r); | ||
} | ||
|
||
void | ||
strncmp_bench(char *s1, char *s2, int sample_len) | ||
{ | ||
#undef strncmp | ||
volatile int r = strncmp(s1, s2, sample_len); | ||
assert(!r || r); | ||
} | ||
|
||
void | ||
memcmp_bench(char *s1, char *s2, int sample_len) | ||
{ | ||
#undef memcmp | ||
volatile int r = memcmp(s1, s2, sample_len); | ||
assert(!r || r); | ||
} | ||
|
||
void | ||
strlen_bench(char *s1, char *s2, int sample_len) | ||
{ | ||
#undef strlen | ||
volatile int r = strlen(s1); | ||
assert(r <= sample_len - 0); | ||
r = strlen(s2); | ||
assert(r <= sample_len - 1); | ||
} | ||
|
||
struct bench { | ||
char *name; | ||
void (*func)(char *s1, char *s2, int sample_len); | ||
} benches[] = { | ||
{ "strcmp", strcmp_bench }, | ||
{ "strncmp", strncmp_bench }, | ||
{ "memcmp", memcmp_bench }, | ||
{ "strlen", strlen_bench }, | ||
{ NULL, NULL } | ||
}; | ||
|
||
int | ||
main(int argc, char *argv[]) | ||
{ | ||
if (argc < 3) { | ||
fprintf(stderr, "Usage: %s {strcmp|strncmp|memcmp|strlen} ITERS SAMPLESIZE..\n", argv[0]); | ||
exit(EXIT_FAILURE); | ||
} | ||
char *func = argv[1]; | ||
int iters = atoi(argv[2]); | ||
|
||
struct bench *b; | ||
for (b = benches; b->name; b++) | ||
if (!strcmp(func, b->name)) | ||
break; | ||
if (!b->name) { | ||
fprintf(stderr, "unknown benchmark name: %s\n", func); | ||
exit(EXIT_FAILURE); | ||
} | ||
|
||
/* Load up samples. */ | ||
char *sample = malloc(READSIZE); | ||
if (!sample) { perror("malloc"); exit(EXIT_FAILURE); } | ||
FILE *f = fopen("/dev/urandom", "rb"); | ||
if (!f) { perror("fopen"); exit(EXIT_FAILURE); } | ||
fread(sample, READSIZE, 1, f); | ||
fclose(f); | ||
|
||
srand(sample[0] | (sample[1] << 8)); | ||
/* Benchmark different sample sizes. */ | ||
for (int s = 3; s < argc; s++) { | ||
int size = atoi(argv[s]); | ||
int samples = READSIZE / size; | ||
|
||
/* Punch zeros at sample ends. */ | ||
for (int i = 0; i < samples; i++) | ||
sample[(i + 1) * size - 1] = 0; | ||
|
||
/* Run benchmark! */ | ||
struct tms tstart; | ||
clock_t start = times(&tstart); | ||
for (int k = 0; k < iters; k++) | ||
for (int i = 0; i < samples; i += 2) | ||
b->func(&sample[i * size], &sample[i * size + 1], size); | ||
|
||
/* Print time... */ | ||
struct tms tnow; | ||
clock_t now = times(&tnow); | ||
int u = sysconf(_SC_CLK_TCK); | ||
printf("%d %d\t%f %f %f\t(size, samples, TIMES[s] - user, system, total)\n", | ||
size, samples, | ||
(float)(tnow.tms_utime - tstart.tms_utime) / u, | ||
(float)(tnow.tms_stime - tstart.tms_stime) / u, | ||
(float)(now - start) / u); | ||
|
||
/* Restore sample ends. */ | ||
for (int i = 0; i < samples; i++) | ||
sample[(i + 1) * size - 1] = rand(); | ||
} | ||
|
||
return EXIT_SUCCESS; | ||
} |