ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/bench.c
(Generate patch)

Comparing liblzf/bench.c (file contents):
Revision 1.8 by root, Tue May 6 22:49:18 2008 UTC vs.
Revision 1.12 by root, Sun May 30 05:46:56 2010 UTC

1#include <stdio.h> 1#include <stdio.h>
2#include <assert.h> 2#include <assert.h>
3#include <string.h> 3#include <string.h>
4#include <time.h> 4#include <time.h>
5#include <sys/time.h> 5#include <sys/time.h>
6#include <sys/times.h>
6#include <sys/types.h> 7#include <sys/types.h>
7#include <sys/socket.h> 8#include <sys/socket.h>
9#include <sys/mman.h>
8#include <sys/ioctl.h> 10#include <sys/ioctl.h>
11#include <sys/stat.h>
12#include <sys/resource.h>
9#include <math.h> 13#include <math.h>
10#include <signal.h> 14#include <signal.h>
11#include <X11/Xlib.h> 15#include <X11/Xlib.h>
12 16
13#include "lzf.h" 17#include "lzf.h"
52 int lp; 56 int lp;
53 char buf[8192]; 57 char buf[8192];
54 int p[2]; 58 int p[2];
55 int evfd = eventfd (0, 0); 59 int evfd = eventfd (0, 0);
56 long ctr = 1; 60 long ctr = 1;
61 struct stat sbuf;
57 62
58 pipe (p); 63 pipe (p);
59 64
60 FILE *f = fopen ("data", "r"); 65 FILE *f = fopen ("data", "r");
61 fread (data, DSIZE, 1, f); 66 fread (data, DSIZE, 1, f);
62 fclose (f); 67 fclose (f);
63 68
64 signal (SIGURG, sigu); 69 signal (SIGURG, sigu);
65 70
66 for (lp = 0; lp < 100000; lp++) { 71 for (lp = 0; lp < 1000000; lp++) {
67 s=stamp(); 72 s=stamp();
68 73
69 snprintf (buf, 64, "<1.%llx>", (unsigned long long)0xa234567812ULL); 74 //struct timespec ts; clock_gettime (CLOCK_THREAD_CPUTIME_ID, &ts);
75 //printf ("%9ld\n", ts.tv_nsec);//D
76 //struct rusage usage; getrusage (RUSAGE_SELF, &usage);
77 //struct tms tms; times (&tms);
78
70 //kill (0, SIGURG); 79 //kill (0, SIGURG);
71 //write (evfd, &ctr, 8); 80 //write (evfd, &ctr, 8);
72 //read (evfd, &ctr, 8); 81 //read (evfd, &ctr, 8);
73// write (p[1], &buf, 1); 82 //write (p[1], &buf, 1);
74// read (p[0], &buf, 4); 83 //read (p[0], &buf, 4);
84 //stat ("/etc/passwd", &sbuf);
85 //struct timeval tv; gettimeofday (&tv, 0);
86 //void *x = mmap (0, 16384, PROT_READ|PROT_WRITE, MAP_ANONYMOUS|MAP_PRIVATE,-1,0);
87
88 l = lzf_compress (data, DSIZE, data2, DSIZE*2);
89 assert(l);
90
91 j = lzf_decompress (data2, l, data3, DSIZE*2);
92 assert (j == DSIZE);
75 93
76 si[0]=measure(s); 94 si[0]=measure(s);
77 95
78 //j = lzf_decompress (data2, l, data3, DSIZE*2); 96 assert (!memcmp (data, data3, DSIZE));
79 97
80 printf ("\r%10d (%d) ", si[0], l); 98 printf ("\r%10d (%d) ", si[0], l);
81 if (si[0] < min && si[0] > 0) 99 if (si[0] < min && si[0] > 0)
82 { 100 {
83 printf ("\n"); 101 printf ("\n");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines