X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=microbench%2Freadbench.c;h=5a397e3102e771d1fc4ea1119e7f0ac5e1582c59;hb=f25981daece838a116a21ba8a7dc89582f1641d5;hp=88eb8884d00a75bb0eb3d990cc72c121b6b2325b;hpb=9882dff622103ee844eb1af5608ac48157ecfabb;p=bluesky.git diff --git a/microbench/readbench.c b/microbench/readbench.c index 88eb888..5a397e3 100644 --- a/microbench/readbench.c +++ b/microbench/readbench.c @@ -1,14 +1,17 @@ +#include +#include +#include +#include #include #include -#include -#include -#include -#include +#include +#include #include -#include +#include struct thread_state { pthread_t thread; + const char *filename; int thread_num; long long timestamp; }; @@ -54,21 +57,23 @@ void *benchmark_thread(void *arg) { struct thread_state *ts = (struct thread_state *)arg; - char namebuf[64]; - sprintf(namebuf, "file-%d", ts->thread_num); - printf("Opening %s\n", namebuf); + printf("Opening %s\n", ts->filename); int64_t start, end; start = now_hires(); - FILE *f = fopen(namebuf, "rb"); + + //struct stat stat_buf; + //stat(namebuf, &stat_buf); + + FILE *f = fopen(ts->filename, "rb"); if (f == NULL) { perror("fopen"); return NULL; } - char buf[4096]; - fread(buf, 1, sizeof(buf), f); + char buf[65536]; + while (fread(buf, 1, sizeof(buf), f) > 0) { } end = now_hires(); printf("Thread %d: Time = %"PRIi64"\n", ts->thread_num, end - start); @@ -78,10 +83,11 @@ void *benchmark_thread(void *arg) return NULL; } -void launch_thread(int i) +void launch_thread(int i, const char *filename) { threads[i].thread_num = i; - printf("Launching thread %d...\n", i); + threads[i].filename = filename; + printf("Launching thread %d [%s]...\n", i, filename); if (pthread_create(&threads[i].thread, NULL, benchmark_thread, &threads[i]) != 0) { fprintf(stderr, "Error launching thread!\n"); exit(1); @@ -96,11 +102,15 @@ void wait_thread(int n) int main(int argc, char *argv[]) { - for (int i = 0; i < 8; i++) { - launch_thread(i); + int threads = argc - 1; + + printf("Testing with %d threads\n", threads); + + for (int i = 0; i < threads; i++) { + launch_thread(i, argv[i + 1]); } - for (int i = 0; i < 8; i++) { + for (int i = 0; i < threads; i++) { wait_thread(i); }