-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrsl-test.c
177 lines (133 loc) · 5.24 KB
/
grsl-test.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* grsl-test.c
*
* ---------------------------------------------------------------------
* A small and very daft little set of tests for GrSL's sampling
* functions.
* ---------------------------------------------------------------------
*
* Copyright (C) 2010 Joseph Rushton Wakeling
*
* This program is free software: you can redistribute it 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 <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <config.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_randist.h>
#include <gsl/gsl_sampling.h>
void grsl_test_simple(const gsl_sampler *s, const gsl_rng *r, size_t n, size_t N)
{
size_t i, current_record, selected_record;
gsl_sampler_init(s,r,n,N);
current_record = 1;
printf("%s, %zu from %zu:\n",s->algorithm->name, n, N);
for ( i = 0 ; i < s->sample->total ; ++i)
{
selected_record = gsl_sampler_select(s,r,¤t_record);
printf("\tselected record %zu.",selected_record);
printf("\trecords remaining: %zu.",s->records->remaining);
printf("\tremaining to select: %zu.\n",s->sample->remaining);
}
}
void grsl_test_aggregate(const gsl_sampler *s, const gsl_rng *r, size_t n, size_t N,
size_t repeats)
{
size_t i, j, current_record, selected_record;
size_t *record_count;
clock_t start_time, end_time;
record_count = malloc(N*sizeof(size_t));
for(i=0;i<N;++i)
record_count[i] = 0;
printf("%s, %zu from %zu x %zu:\n",s->algorithm->name, n, N, repeats);
start_time = clock();
for(i=0;i<repeats;++i)
{
gsl_sampler_init(s,r,n,N);
current_record = 0; /* note that we start with record 0 this time,
as we are going to be picking from an array ... */
for ( j = 0 ; j < s->sample->total ; ++j)
{
selected_record = gsl_sampler_select(s,r,¤t_record);
record_count[selected_record]++;
}
}
end_time = clock();
for(i=0;i<N;++i)
printf("\trecord %zu was picked %zu times.\n",i+1,record_count[i]);
printf("\t\tsampling completed in %g seconds.\n",
((double) (end_time-start_time))/CLOCKS_PER_SEC);
free(record_count);
}
int main(int argc, char *argv[])
{
size_t i;
gsl_sampler *s = gsl_sampler_alloc(gsl_sampler_vitter_a);
gsl_sampler *sd = gsl_sampler_alloc(gsl_sampler_vitter_d);
gsl_rng *r = gsl_rng_alloc(gsl_rng_mt19937);
double *dest, *src;
time_t ranseed;
clock_t start_time, end_time;
if(argc>1)
ranseed = atoi(argv[1]);
else
time(&ranseed);
gsl_rng_set(r, ranseed);
printf("[Random seed set to %lu.]\n\n",(unsigned long int) ranseed);
printf("Hello! I'm GrSL, the GSL random Sampling Library.\n\n");
printf("Basically, I'm a cheeky little scamp from out of town with dreams of\n");
printf("joining the GNU Scientific Library when I grow up.\n\n");
printf("Let me show you what I can do so far.\n\n");
printf("First, I'm going to make some samples of 5 records out of 100.\n\n");
grsl_test_simple(s, r, 5, 100);
grsl_test_simple(sd, r, 5, 100);
printf("\n");
printf("Now, I'm going to make a sample of 5 records out of 100, but do so\n");
printf("10 million times. Then you can count how many times each record gets\n");
printf("picked. (This is just a stupid way of checking for obvious bias:-)\n\n");
grsl_test_aggregate(s, r, 5, 100, 10000000);
grsl_test_aggregate(sd, r, 5, 100, 10000000);
printf("\n");
printf("Next up, we provide a comparison of the gsl_ran_choose function with\n");
printf("the new gsl_sampler_choose, which provides the same functionality but\n");
printf("employing the new sampling algorithms provided by GrSL.\n\n");
printf("We are going to pick 100,000 records from an array of 10 million.\n");
src = malloc(10000000*sizeof(*src));
dest = malloc(100000*sizeof(*dest));
for(i=0;i<10000000;++i)
src[i] = i+1;
printf("\tgsl_ran_choose:\n");
start_time = clock();
gsl_ran_choose(r, dest, 100000, src, 10000000, sizeof(double));
end_time = clock();
printf("\t\tfinished in %g seconds.\n",
((double) (end_time-start_time))/CLOCKS_PER_SEC);
printf("\tgsl_sampler_choose:\n");
start_time = clock();
gsl_sampler_choose(s, r, dest, 100000, src, 10000000, sizeof(double));
end_time=clock();
printf("\t\tfinished in %g seconds with %s.\n",
((double) (end_time-start_time))/CLOCKS_PER_SEC, s->algorithm->name);
start_time = clock();
gsl_sampler_choose(sd, r, dest, 100000, src, 10000000, sizeof(double));
end_time=clock();
printf("\t\tfinished in %g seconds with %s.\n",
((double) (end_time-start_time))/CLOCKS_PER_SEC, sd->algorithm->name);
free(dest);
free(src);
gsl_sampler_free(s);
gsl_sampler_free(sd);
gsl_rng_free(r);
return EXIT_SUCCESS;
}