-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeoptimizer.cpp
executable file
·467 lines (421 loc) · 14.2 KB
/
deoptimizer.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
// Copyright (c) Dietmar Wolz.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory.
// Eigen based implementation of differential evolution using on the DE/best/1 strategy.
// Uses two deviations from the standard DE algorithm:
// a) temporal locality introduced in
// https://www.researchgate.net/publication/309179699_Differential_evolution_for_protein_folding_optimization_based_on_a_three-dimensional_AB_off-lattice_model
// b) reinitialization of individuals based on their age.
// requires https://github.com/imneme/pcg-cpp
#include <Eigen/Core>
#include <iostream>
#include <float.h>
#include <stdint.h>
#include <ctime>
#include <random>
#include <queue>
#include <tuple>
#include "pcg_random.hpp"
#include "evaluator.h"
using namespace std;
namespace differential_evolution {
class DeOptimizer {
public:
DeOptimizer(long runid_, Fitness *fitfun_, int dim_, int seed_,
int popsize_, int maxEvaluations_, double keep_,
double stopfitness_, double F_, double CR_) {
// runid used to identify a specific run
runid = runid_;
// fitness function to minimize
fitfun = fitfun_;
// Number of objective variables/problem dimension
dim = dim_;
// Population size
popsize = popsize_ > 0 ? popsize_ : 15 * dim;
// maximal number of evaluations allowed.
maxEvaluations = maxEvaluations_ > 0 ? maxEvaluations_ : 50000;
// keep best young after each iteration.
keep = keep_ > 0 ? keep_ : 30;
// Limit for fitness value.
stopfitness = stopfitness_;
F = F0 = F_ > 0 ? F_ : 0.5;
CR = CR0 = CR_ > 0 ? CR_ : 0.9;
// Number of iterations already performed.
iterations = 0;
bestY = DBL_MAX;
// stop criteria
stop = 0;
pos = 0;
//std::random_device rd;
rs = new pcg64(seed_);
init();
}
~DeOptimizer() {
delete rs;
}
double rnd01() {
return distr_01(*rs);
}
int rndInt(int max) {
return (int) (max * distr_01(*rs));
}
vec nextX(int p, const vec &xp, const vec &xb) {
if (p == 0) {
iterations++;
CR = iterations % 2 == 0 ? 0.5 * CR0 : CR0;
F = iterations % 2 == 0 ? 0.5 * F0 : F0;
}
int r1, r2;
do {
r1 = rndInt(popsize);
} while (r1 == p || r1 == bestI);
do {
r2 = rndInt(popsize);
} while (r2 == p || r2 == bestI || r2 == r1);
vec x1 = popX.col(r1);
vec x2 = popX.col(r2);
vec x = xb + (x1 - x2) * F;
int r = rndInt(dim);
for (int j = 0; j < dim; j++)
if (j != r && rnd01() > CR)
x[j] = xp[j];
return fitfun->getClosestFeasible(x);
}
vec next_improve(const vec &xb, const vec &x, const vec &xi) {
return fitfun->getClosestFeasible(xb + ((x - xi) * 0.5));
}
vec ask(int &p) {
// ask for one new argument vector.
if (improvesX.empty()) {
p = pos;
vec x = nextX(p, popX.col(p), popX.col(bestI));
pos = (pos + 1) % popsize;
return x;
} else {
p = improvesP.front();
vec x = improvesX.front();
improvesP.pop();
improvesX.pop();
return x;
}
}
int tell(double y, const vec &x, int p) {
//tell function value for a argument list retrieved by ask_one().
if (isfinite(y) && y < popY[p]) {
if (iterations > 1) {
// temporal locality
improvesP.push(p);
improvesX.push(next_improve(popX.col(bestI), x, popX0.col(p)));
}
popX0.col(p) = popX.col(p);
popX.col(p) = x;
popY[p] = y;
popIter[p] = iterations;
if (y < popY[bestI]) {
bestI = p;
if (y < bestY) {
bestY = y;
bestX = x;
if (isfinite(stopfitness) && bestY < stopfitness)
stop = 1;
}
}
} else {
// reinitialize individual
if (keep * rnd01() < iterations - popIter[p]) {
popX.col(p) = fitfun->sample(*rs);
popY[p] = DBL_MAX;
}
}
return stop;
}
void doOptimize() {
// -------------------- Generation Loop --------------------------------
for (iterations = 1; fitfun->evaluations() < maxEvaluations
&& !fitfun->terminate(); iterations++) {
CR = iterations % 2 == 0 ? 0.5 * CR0 : CR0;
F = iterations % 2 == 0 ? 0.5 * F0 : F0;
for (int p = 0; p < popsize; p++) {
vec xp = popX.col(p);
vec xb = popX.col(bestI);
int r1, r2;
do {
r1 = rndInt(popsize);
} while (r1 == p || r1 == bestI);
do {
r2 = rndInt(popsize);
} while (r2 == p || r2 == bestI || r2 == r1);
vec x1 = popX.col(r1);
vec x2 = popX.col(r2);
int r = rndInt(dim);
vec x = vec(xp);
for (int j = 0; j < dim; j++) {
if (j == r || rnd01() < CR) {
x[j] = xb[j] + F * (x1[j] - x2[j]);
if (!fitfun->feasible(j, x[j]))
x[j] = fitfun->sample_i(j, *rs);
}
}
double y = fitfun->eval(x);
if (isfinite(y) && y < popY[p]) {
// temporal locality
vec x2 = next_improve(xb, x, xp);
double y2 = fitfun->eval(x2);
if (isfinite(y2) && y2 < y) {
y = y2;
x = x2;
}
popX.col(p) = x;
popY(p) = y;
popIter[p] = iterations;
if (y < popY[bestI]) {
bestI = p;
if (y < bestY) {
bestY = y;
bestX = x;
if (isfinite(stopfitness) && bestY < stopfitness) {
stop = 1;
return;
}
}
}
} else {
// reinitialize individual
if (keep * rnd01() < iterations - popIter[p]) {
popX.col(p) = fitfun->sample(*rs);
popY[p] = DBL_MAX;
}
}
}
}
}
void do_optimize_delayed_update(int workers) {
iterations = 0;
fitfun->resetEvaluations();
workers = std::min(workers, popsize); // workers <= popsize
evaluator eval(fitfun, 1, workers);
int evals_size = popsize*10;
vec evals_x[evals_size];
int evals_p[evals_size];
int cp = 0;
// fill eval queue with initial population
for (int i = 0; i < workers; i++) {
int p;
vec x = ask(p);
eval.evaluate(x, cp);
evals_x[cp] = x;
evals_p[cp] = p;
cp = (cp + 1) % evals_size;
}
while (fitfun->evaluations() < maxEvaluations && !fitfun->terminate()) {
vec_id* vid = eval.result();
vec y = vec(vid->_v);
int id = vid->_id;
delete vid;
vec x = evals_x[id];
int p = evals_p[id];
tell(y(0), x, p); // tell evaluated x
if (fitfun->evaluations() >= maxEvaluations)
break;
x = ask(p);
eval.evaluate(x, cp);
evals_x[cp] = x;
evals_p[cp] = p;
cp = (cp + 1) % evals_size;
}
}
void init() {
popX = mat(dim, popsize);
popX0 = mat(dim, popsize);
popY = vec(popsize);
for (int p = 0; p < popsize; p++) {
popX0.col(p) = popX.col(p) = fitfun->sample(*rs);
popY[p] = DBL_MAX; // compute fitness
}
bestI = 0;
bestX = popX.col(bestI);
popIter = zeros(popsize);
}
vec getBestX() {
return bestX;
}
double getBestValue() {
return bestY;
}
mat getX() {
return popX;
}
mat getY() {
return popY;
}
double getIterations() {
return iterations;
}
double getStop() {
return stop;
}
Fitness* getFitfun() {
return fitfun;
}
int getDim() {
return dim;
}
private:
long runid;
Fitness *fitfun;
int popsize; // population size
int dim;
int maxEvaluations;
double keep;
double stopfitness;
int iterations;
double bestY;
vec bestX;
int bestI;
int stop;
double F0;
double CR0;
double F;
double CR;
pcg64 *rs;
mat popX;
mat popX0;
vec popY;
vec popIter;
queue<vec> improvesX;
queue<int> improvesP;
int pos;
};
// see https://cvstuff.wordpress.com/2014/11/27/wraping-c-code-with-python-ctypes-memory-and-pointers/
}
using namespace differential_evolution;
/*
* Class: fcmaes_core_Jni
* Method: optimizeDE
* Signature: (Lfcmaes/core/Fitness;[D[D[DIDIDDDJII)I
*/
JNIEXPORT jint JNICALL Java_fcmaes_core_Jni_optimizeDE(JNIEnv *env, jclass cls,
jobject func, jdoubleArray jlower, jdoubleArray jupper,
jdoubleArray jresult, jint maxEvals, jdouble stopfitness, jint popsize,
jdouble keep, jdouble F, jdouble CR, jlong seed, jint runid, jint workers) {
double *result = env->GetDoubleArrayElements(jresult, JNI_FALSE);
double *lower = env->GetDoubleArrayElements(jlower, JNI_FALSE);
double *upper = env->GetDoubleArrayElements(jupper, JNI_FALSE);
int dim = env->GetArrayLength(jlower);
vec lower_limit(dim), upper_limit(dim);
for (int i = 0; i < dim; i++) {
lower_limit[i] = lower[i];
upper_limit[i] = upper[i];
}
CallJava callJava(func, env);
Fitness fitfun(&callJava, dim, 1, lower_limit, upper_limit);
DeOptimizer opt(runid, &fitfun, dim, seed, popsize, maxEvals, keep,
stopfitness, F, CR);
try {
if (workers <= 1)
opt.doOptimize();
else
opt.do_optimize_delayed_update(workers);
vec bestX = opt.getBestX();
double bestY = opt.getBestValue();
for (int i = 0; i < dim; i++)
result[i] = bestX[i];
env->SetDoubleArrayRegion(jresult, 0, dim, (jdouble*) result);
env->ReleaseDoubleArrayElements(jresult, result, 0);
env->ReleaseDoubleArrayElements(jupper, upper, 0);
env->ReleaseDoubleArrayElements(jlower, lower, 0);
return fitfun.evaluations();
} catch (std::exception &e) {
cout << e.what() << endl;
return fitfun.evaluations();
}
return 0;
}
/*
* Class: fcmaes_core_Jni
* Method: initDE
* Signature: (Lfcmaes/core/Fitness;[D[DIDDDJI)J
*/
JNIEXPORT jlong JNICALL Java_fcmaes_core_Jni_initDE(JNIEnv *env, jclass cls,
jobject func, jdoubleArray jlower, jdoubleArray jupper,
jint popsize, jdouble keep, jdouble F, jdouble CR, jlong seed,
jint runid) {
double *lower = env->GetDoubleArrayElements(jlower, JNI_FALSE);
double *upper = env->GetDoubleArrayElements(jupper, JNI_FALSE);
int dim = env->GetArrayLength(jlower);
vec lower_limit(dim), upper_limit(dim);
for (int i = 0; i < dim; i++) {
lower_limit[i] = lower[i];
upper_limit[i] = upper[i];
}
CallJava* callJava = new CallJava(func, env);
Fitness* fitfun = new Fitness(callJava, dim, 1, lower_limit, upper_limit);
DeOptimizer *opt = new DeOptimizer(runid, fitfun, dim, seed, popsize,
INT_MAX, keep, -DBL_MAX, F, CR);
env->ReleaseDoubleArrayElements(jupper, upper, 0);
env->ReleaseDoubleArrayElements(jlower, lower, 0);
return (intptr_t) opt;
}
/*
* Class: fcmaes_core_Jni
* Method: destroyDE
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_fcmaes_core_Jni_destroyDE(JNIEnv *env, jclass cls, intptr_t ptr) {
DeOptimizer* opt = (DeOptimizer*)ptr;
Fitness* fitfun = opt->getFitfun();
delete fitfun->getFunc();
delete fitfun;
delete opt;
}
/*
* Class: fcmaes_core_Jni
* Method: askDE
* Signature: (J)[D
*/
JNIEXPORT jdoubleArray JNICALL Java_fcmaes_core_Jni_askDE(JNIEnv *env,
jclass cls, intptr_t ptr) {
DeOptimizer *opt = (DeOptimizer*) ptr;
int dim = opt->getDim();
jdoubleArray jx = env->NewDoubleArray(dim + 1);
double x[dim + 1];
int p;
vec args = opt->ask(p);
for (int i = 0; i < dim; i++)
x[i] = args[i];
x[dim] = p;
env->SetDoubleArrayRegion(jx, 0, dim + 1, x);
return jx;
}
/*
* Class: fcmaes_core_Jni
* Method: tellDE
* Signature: (J[DDI)I
*/
JNIEXPORT jint JNICALL Java_fcmaes_core_Jni_tellDE(JNIEnv *env, jclass cls,
intptr_t ptr, jdoubleArray jx, jdouble y, jint p) {
DeOptimizer *opt = (DeOptimizer*) ptr;
int dim = opt->getDim();
double *x = env->GetDoubleArrayElements(jx, JNI_FALSE);
vec args(dim);
for (int i = 0; i < dim; i++)
args[i] = x[i];
opt->tell(y, args, p);
env->ReleaseDoubleArrayElements(jx, x, 0);
return opt->getStop();
}
/*
* Class: fcmaes_core_Jni
* Method: populationDE
* Signature: (J)[D
*/
JNIEXPORT jdoubleArray JNICALL Java_fcmaes_core_Jni_populationDE(JNIEnv *env,
jclass cls, intptr_t ptr) {
DeOptimizer *opt = (DeOptimizer*) ptr;
int size = opt->getX().size();
double* xdata = opt->getX().data();
jdoubleArray jres = env->NewDoubleArray(size);
env->SetDoubleArrayRegion(jres, 0, size, (jdouble*) xdata);
return jres;
}