-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestlib.c
59 lines (43 loc) · 1.1 KB
/
testlib.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
/* testlib.c
Helpers for both test_hist and test_sparse.
This code is experimental, and error-handling is primitive.
*/
/* Copyright 2013, NICTA. See COPYRIGHT for license details. */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "sparse.h"
#include "testlib.h"
bsc_hist_t *
bsc_random(int nrows, int ncols, int nent, int quiet) {
bsc_hist_t *H;
int i;
if(!quiet) {
printf("Generating a %dx%dx%d bsc histogram...", nrows, ncols, nent);
fflush(stdout);
}
H= bsc_hist_new();
for(i= 0; i < nent; i++) {
int c, r;
c= random() % ncols;
r= random() % nrows;
bsc_hist_count(H, c, r, 1);
}
if(!quiet) printf(" done.\n");
return H;
}
dv_t *
dv_random(int length, float mag, int quiet) {
dv_t *v;
int i;
assert(0 <= length);
if(!quiet) {
printf("Generating random vector of length %d...", length);
fflush(stdout);
}
v= dv_new(length);
for(i= 0; i < length; i++)
v->entries[i]= (mag * random()) / RAND_MAX;
if(!quiet) printf(" done.\n");
return v;
}