-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrite_residual_slave.cpp
283 lines (254 loc) · 11 KB
/
write_residual_slave.cpp
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include "data.h"
#include "cmd_slave.h"
#include <fstream>
#include <vector>
#include <stdio.h>
#include <string.h>
#include "sagecal.h"
#include "utils.h"
#include "utils_dn.h"
using namespace std;
using namespace Data;
#ifndef LMCUT
#define LMCUT 40
#endif
int write_residual_slave(dlg_app_info *app) {
/*-----------------------------------------------input------------------------------------------------------------*/
Data::IOData iodata;
baseline_t *barr;
Data::LBeam beam;
int sources_precessed = get_last_iter(app->uid);
int start_iter = 0;
int M, Mt;
openblas_set_num_threads(1);
srand(time(0));
int flag = 3;
app->inputs[0].read((char *)&flag, sizeof(int)); /*--skip flag--*/
load_iodata_dn(&(app->inputs[0]),&iodata);
cout << "[write_residual_slave]======"<< iodata.msname << ", iodata.N/M/Mt/Nms:" << iodata.N << "/" << iodata.M << "/" << iodata.Mt << "/" << iodata.Nms
<< ", iodata.freq0:" << iodata.freq0/ 1e6<< "Mhz" << endl;
if (Data::doBeam) {
load_share_beam(Data::shareDir, iodata.msname, &beam);
}
if ((barr = (baseline_t *) calloc((size_t) iodata.Nbase * iodata.tilesz, sizeof(baseline_t))) == 0) {
fprintf(stderr, "%s: %d: no free memory\n", __FILE__, __LINE__);
exit(1);
}
load_share_barr(Data::shareDir, iodata.msname, &iodata, barr);
/*----------------------------------------------------------------------------------------------------------------*/
clus_source_t *carr;
read_sky_cluster(Data::SkyModel, Data::Clusters, &carr, &M, iodata.freq0, iodata.ra0, iodata.dec0, Data::format);
if (M <= 0) {
fprintf(stderr, "%s: %d: no clusters to solve\n", __FILE__, __LINE__);
exit(1);
} else {
printf("%s:Got %d clusters\n", __FILE__, M);
}
Mt = 0;
int ci = 0, ck = 0,cj = 0;
for (ci = 0; ci < M; ci++) {
//printf("cluster %d has %d time chunks\n",carr[ci].id,carr[ci].nchunk);
Mt += carr[ci].nchunk;
}
/* update cluster array with correct pointers to parameters */
for (ci = 0; ci < M; ci++) {
if ((carr[ci].p = (int *) calloc((size_t) carr[ci].nchunk, sizeof(int))) == 0) {
fprintf(stderr, "%s: %d: no free memory\n", __FILE__, __LINE__);
exit(1);
}
for (ck = 0; ck < carr[ci].nchunk; ck++) {
carr[ci].p[ck] = cj * 8 * iodata.N;
cj++;
}
}
/*----------------------------------------------------------------------------------------------------------------*/
double *xbackup = 0;
if (iodata.Nchan > 1 || Data::whiten) {
if ((xbackup = (double *) calloc((size_t) iodata.Nbase * 8 * iodata.tilesz, sizeof(double))) == 0) {
fprintf(stderr, "%s: %d: no free memory\n", __FILE__, __LINE__);
exit(1);
}
read_share_XYZ(Data::shareDir, iodata.msname, xbackup, iodata.Nbase * 8 * iodata.tilesz, "xbackup");
}
complex double *coh;
if ((coh = (complex double *) calloc((size_t)(iodata.M * iodata.Nbase * iodata.tilesz * 4), sizeof(complex double)))==0) {
fprintf(stderr, "%s: %d: no free memory\n", __FILE__, __LINE__);
exit(1);
}
load_share_coh(Data::shareDir, iodata.msname, &iodata, coh);
double *p, *pinit;
/* parameters 8*N*M ==> 8*N*Mt */
if ((p = (double *) calloc((size_t) iodata.N * 8 * Mt, sizeof(double))) == 0) {
fprintf(stderr, "%s: %d: no free memory\n", __FILE__, __LINE__);
exit(1);
}
read_share_XYZ(Data::shareDir, iodata.msname, p, iodata.N * 8 * Mt, "p");
/* backup of default initial values */
if ((pinit = (double *) calloc((size_t) iodata.N * 8 * Mt, sizeof(double))) == 0) {
fprintf(stderr, "%s: %d: no free memory\n", __FILE__, __LINE__);
exit(1);
}
read_share_XYZ(Data::shareDir, iodata.msname, pinit, iodata.N * 8 * Mt, "pinit");
/*----------------------------------------------------------------------------------------------------------------*/
int tilex = 0;
double res_0, res_1, res_00, res_01;
double mean_nu;
/* previous residual */
double res_prev = CLM_DBL_MAX;
double res_ratio = 15.0; /* how much can the residual increase before resetting solutions, set higher than stand alone mode */
res_0 = res_1 = res_00 = res_01 = 0.0;
load_share_res(Data::shareDir, iodata.msname, &start_iter, &res_0, &res_1, &res_00, &res_01, &mean_nu, &tilex);
/*------------------------------------------processing-------------------------------------------------------------*/
/* write residuals to output */
if (!doBeam) {
calculate_residuals_multifreq(iodata.u, iodata.v, iodata.w, p, iodata.xo, iodata.N, iodata.Nbase,
iodata.tilesz, barr, carr, M, iodata.freqs, iodata.Nchan, iodata.deltaf,
iodata.deltat, iodata.dec0, Data::Nt, Data::ccid, Data::rho, Data::phaseOnly);
} else {
calculate_residuals_multifreq_withbeam(iodata.u, iodata.v, iodata.w, p, iodata.xo, iodata.N, iodata.Nbase,
iodata.tilesz, barr, carr, M, iodata.freqs, iodata.Nchan,
iodata.deltaf, iodata.deltat, iodata.dec0,
beam.p_ra0, beam.p_dec0, iodata.freq0, beam.sx, beam.sy,
beam.time_utc, beam.Nelem, beam.xx, beam.yy, beam.zz, Data::Nt,
Data::ccid, Data::rho, Data::phaseOnly);
}
tilex += iodata.tilesz;
/* ---------------------------------------------------print solutions to file ------------------------------------*/
char ms_full_name[256];
sprintf(ms_full_name,"%s", iodata.msname);
char short_name[128];
ms_short_name(ms_full_name, short_name);
char solutionFile[256];
sprintf(solutionFile,"%s/%s.solution",Data::solfile, short_name);
FILE *sfp = 0;
/* always create default solution file name MS+'.solutions' */
if ((sfp = fopen(solutionFile, "a+")) == 0) {
fprintf(stderr, "%s: %d: no file\n", __FILE__, __LINE__);
return 1;
}
/* write additional info to solution file */
if (Data::solfile && sources_precessed==0) {
fprintf(sfp, "# solution file created by SAGECal-Daliuge\n");
fprintf(sfp, "# freq(MHz) bandwidth(MHz) time_interval(min) stations clusters effective_clusters\n");
fprintf(sfp, "%lf %lf %lf %d %d %d\n", iodata.freq0 * 1e-6, iodata.deltaf * 1e-6,
(double) iodata.tilesz * iodata.deltat / 60.0, iodata.N, M, Mt);
}
if (Data::solfile) {
for (cj = 0; cj < iodata.N * 8; cj++) {
fprintf(sfp, "%d ", cj);
for (ci = M - 1; ci >= 0; ci--) {
for (ck = 0; ck < carr[ci].nchunk; ck++) {
/* print solution */
fprintf(sfp, " %e", p[carr[ci].p[ck] + cj]);
}
}
fprintf(sfp, "\n");
}
}
/* do some quality control */
/* if residual has increased too much, or all are flagged (0 residual)
or NaN
reset solutions to original
initial values : use residual at 1st ADMM */
/* do not reset if initial residual is 0, because by def final one will be higher */
if (res_00 != 0.0 && (res_01 == 0.0 || !isfinite(res_01) || res_01 > res_ratio * res_prev)) {
cout << "Resetting Solution" << endl;
/* reset solutions so next iteration has default initial values */
memcpy(p, pinit, (size_t) iodata.N * 8 * Mt * sizeof(double));
/* also assume iterations have restarted from scratch */
start_iter = 1;
/* also forget min residual (otherwise will try to reset it always) */
if (res_01 != 0.0 && isfinite(res_01)) {
res_prev = res_01;
}
} else if (res_01 < res_prev) { /* only store the min value */
res_prev = res_01;
}
if (solver_mode == SM_OSLM_OSRLM_RLBFGS || solver_mode == SM_RLM_RLBFGS || solver_mode == SM_RTR_OSRLM_RLBFGS ||
solver_mode == SM_NSD_RLBFGS) {
if (Data::verbose) {
cout << "nu=" << mean_nu << endl;
}
}
if (Data::verbose) {
cout << iodata.msname << ": Timeslot: " << tilex << " residual: initial=" << res_00 << "/" << res_0 << ",final="
<< res_01 << "/" << res_1 << endl;
}
dump_share_barr(Data::shareDir,iodata.msname,&iodata,barr);
write_share_XYZ(Data::shareDir, iodata.msname, p, iodata.N * 8 * Mt, "p");
dump_share_res(Data::shareDir, iodata.msname, &start_iter, &res_0, &res_1, &res_00, &res_01, &mean_nu,&tilex);
dump_share_iodata(Data::shareDir,iodata.msname,&iodata);
if (Data::doBeam) {
dump_share_beam(Data::shareDir,iodata.msname,&iodata,&beam);
}
dump_share_barr(Data::shareDir,iodata.msname,&iodata,barr);
/*--------------------------------------------output---------------------------------------------------------------*/
dump_iodata_dn(&(app->outputs[0]), &iodata);
/*------------------------------------free ----------------------------------------------------------------------*/
/* free data memory */
if (!doBeam) {
Data::freeData(iodata);
} else {
Data::freeData(iodata, beam);
}
exinfo_gaussian *exg;
exinfo_disk *exd;
exinfo_ring *exr;
exinfo_shapelet *exs;
for (ci = 0; ci < M; ci++) {
free(carr[ci].ll);
free(carr[ci].mm);
free(carr[ci].nn);
free(carr[ci].sI);
free(carr[ci].p);
free(carr[ci].ra);
free(carr[ci].dec);
for (cj = 0; cj < carr[ci].N; cj++) {
/* do a proper typecast before freeing */
switch (carr[ci].stype[cj]) {
case STYPE_GAUSSIAN:
exg = (exinfo_gaussian *) carr[ci].ex[cj];
if (exg) free(exg);
break;
case STYPE_DISK:
exd = (exinfo_disk *) carr[ci].ex[cj];
if (exd) free(exd);
break;
case STYPE_RING:
exr = (exinfo_ring *) carr[ci].ex[cj];
if (exr) free(exr);
break;
case STYPE_SHAPELET:
exs = (exinfo_shapelet *) carr[ci].ex[cj];
if (exs) {
if (exs->modes) {
free(exs->modes);
}
free(exs);
}
break;
default:
break;
}
}
free(carr[ci].ex);
free(carr[ci].stype);
free(carr[ci].sI0);
free(carr[ci].f0);
free(carr[ci].spec_idx);
free(carr[ci].spec_idx1);
free(carr[ci].spec_idx2);
}
free(carr);
free(barr);
free(p);
if (iodata.Nchan > 1 || Data::whiten) {
free(xbackup);
}
free(coh);
if (sfp) {
fclose(sfp);
}
cout << "[write_residual_slave]========, Done." << endl;
return 0;
}