-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract_plot.c
117 lines (91 loc) · 2.69 KB
/
extract_plot.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
/* extract_plot.c
Generate a plot of the channel matrix, suitable for gnuplot 'with image'.
This code is experimental, and error-handling is primitive.
*/
/* Copyright 2013, NICTA. See COPYRIGHT for license details. */
#include <assert.h>
#include <inttypes.h>
#include <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "sparse.h"
int
main(int argc, char *argv[]) {
FILE *in;
csc_mat_t *M;
csc_errno_t e;
uint64_t cmin= ULONG_MAX, cmax= 0, ccount;
uint64_t nrow, ncol, rowbin, colskip;
uint64_t xmin= ULONG_MAX, xmax= 0, ymin= ULONG_MAX, ymax= 0;
int c, x, y;
float *plot;
if(argc < 4) {
fprintf(stderr, "Usage: %s <matrix_filename> <nrow> <ncol>\n",
argv[0]);
exit(EXIT_FAILURE);
}
in= fopen(argv[1], "rb");
if(!in) { perror("fopen"); exit(EXIT_FAILURE); }
nrow= atoi(argv[2]);
if(0 >= nrow) {
fprintf(stderr, "nrow <= 0\n");
exit(EXIT_FAILURE);
}
ncol= atoi(argv[3]);
if(0 >= ncol) {
fprintf(stderr, "ncol <= 0\n");
exit(EXIT_FAILURE);
}
M= csc_load_binary(in, &e);
if(!M) { csc_perror(e, "csc_load_binary"); exit(EXIT_FAILURE); }
fclose(in);
if(!csc_check(M, 1)) abort();
printf("# ");
csc_stats(M);
if(nrow > M->nrow) nrow= M->nrow;
if(ncol > M->ncol) ncol= M->ncol;
if(STRIDE_OF(M) != 1) {
fprintf(stderr, "Too lazy to handle strided matrices\n");
exit(EXIT_FAILURE);
}
for(c= 0; c < M->ncol; c++) {
if(M->ci[c] < M->ci[c+1]) {
if(c < cmin) cmin= c;
if(c > cmax) cmax= c;
}
}
ccount= cmax - cmin + 1;
if(ncol > ccount) ncol= ccount;
plot= calloc(nrow * ncol, sizeof(float));
for(c= 0; c < M->ncol; c++) {
int i;
for(i= M->ci[c]; i < M->ci[c+1]; i++) {
if(M->entries[i] > 0) {
uint64_t r= M->rows[i];
uint64_t x= (r * nrow) / M->nrow;
uint64_t y= ((c-cmin) * ncol) / ccount;
plot[y * nrow + x]+= M->entries[i];
if(x < xmin) xmin= x;
if(x > xmax) xmax= x;
if(y < ymin) ymin= y;
if(y > ymax) ymax= y;
}
}
}
rowbin= M->nrow / nrow;
colskip= ccount / ncol;
for(x= xmin; x <= xmax; x++) {
uint64_t r= ((x * rowbin) + ((x+1) * rowbin -1))/2;
for(y= ymin; y <= ymax; y++) {
uint64_t c= y * colskip + cmin;
printf("%"PRIu64" %"PRIu64" %.12e\n", r, c,
plot[y * nrow + x] / rowbin);
}
}
free(plot);
csc_mat_destroy(M);
return 0;
}