summaryrefslogtreecommitdiff
path: root/langevin.cpp
blob: a4c9cf31365571f542baaef06ac2eda7634a7afe (plain)
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
#include <exception>
#include <getopt.h>

#include <eigen3/Eigen/LU>
#include <utility>

#include "complex_normal.hpp"
#include "p-spin.hpp"
#include "stereographic.hpp"

#include "pcg-cpp/include/pcg_random.hpp"
#include "randutils/randutils.hpp"
#include "unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h"

using Rng = randutils::random_generator<pcg32>;

Vector normalize(const Vector& z) {
  return z * sqrt((double)z.size() / (Scalar)(z.transpose() * z));
}

template <class Distribution, class Generator>
Vector randomVector(unsigned N, Distribution d, Generator& r) {
  Vector z(N);

  for (unsigned i = 0; i < N; i++) {
    z(i) = d(r);
  }

  return z;
}

class gradientDescentStallException: public std::exception {
  virtual const char* what() const throw() {
    return "Gradient descent stalled.";
  }
} gradientDescentStall;

std::tuple<double, Vector> gradientDescent(const Tensor& J, const Vector& z0, double ε, double γ0 = 1, double δγ = 2) {
  Vector z = z0;
  double γ = γ0;

  auto [W, dW] = WdW(J, z);

  while (W > ε) {
    Vector zNew = normalize(z - γ * dW.conjugate());

    auto [WNew, dWNew] = WdW(J, zNew);

    if (WNew < W) { // If the step lowered the objective, accept it!
      z = zNew;
      W = WNew;
      dW = dWNew;
      γ = γ0;
    } else { // Otherwise, shrink the step and try again.
      γ /= δγ;
    }

    if (γ < 1e-50) {
      throw gradientDescentStall;
    }
  }

  return {W, z};
}

Vector findSaddle(const Tensor& J, const Vector& z0, double ε, double δW = 2, double γ0 = 1, double δγ = 2) {
  Vector z = z0;
  Vector ζ = euclideanToStereographic(z);

  double W;
  std::tie(W, std::ignore) = WdW(J, z);

  Vector dH;
  Matrix ddH;
  std::tie(std::ignore, dH, ddH) = stereographicHamGradHess(J, ζ, z);

  while (W > ε) {
    // ddH is complex symmetric, which is (almost always) invertible, so a
    // partial pivot LU decomposition can be used.
    Vector dζ = ddH.partialPivLu().solve(dH);
    Vector ζNew = ζ -;
    Vector zNew = stereographicToEuclidean(ζNew);

    double WNew;
    std::tie(WNew, std::ignore) = WdW(J, zNew);

    if (WNew < W) { // If Newton's step lowered the objective, accept it!
      ζ = ζNew;
      z = zNew;
      W = WNew;
    } else { // Otherwise, do gradient descent until W is a factor δW smaller.
      std::tie(W, z) = gradientDescent(J, z, W / δW, γ0, δγ);
      ζ = euclideanToStereographic(z);
    }

    std::tie(std::ignore, dH, ddH) = stereographicHamGradHess(J, ζ, z);
  }

  return z;
}

std::tuple<double, Vector> langevin(const Tensor& J, const Vector& z0, double T, double γ, unsigned N, Rng& r) {
  Vector z = z0;

  double W;
  std::tie(W, std::ignore) = WdW(J, z);

  complex_normal_distribution<> d(0, γ, 0);

  for (unsigned i = 0; i < N; i++) {
    Vector dz = randomVector(z.size(), d, r.engine());
    Vector zNew = normalize(z + dz);

    double WNew;
    std::tie(WNew, std::ignore) = WdW(J, zNew);

    if (exp((W - WNew) / T) > r.uniform(0.0, 1.0)) {
      z = zNew;
      W = WNew;
    }
  }

  return {W, z};
}

int main(int argc, char* argv[]) {
  // model parameters
  unsigned N = 10; // number of spins
  double T = 1;    // temperature
  double= 1;   // real part of distribution parameter
  double= 0;   // imaginary part of distribution parameter

  // simulation parameters
  double ε = 1e-4;
  double εJ = 1e-2;
  double δ = 1e-2;   // threshold for determining saddle
  double Δ = 1e-3;
  double γ = 1e-2;   // step size
  unsigned t = 1000; // number of Langevin steps
  unsigned M = 100;
  unsigned n = 100;

  int opt;

  while ((opt = getopt(argc, argv, "N:M:n:T:e:r:i:g:t:E:")) != -1) {
    switch (opt) {
    case 'N':
      N = (unsigned)atof(optarg);
      break;
    case 't':
      t = (unsigned)atof(optarg);
      break;
    case 'T':
      T = atof(optarg);
      break;
    case 'e':
      δ = atof(optarg);
      break;
    case 'E':
      ε = atof(optarg);
      break;
    case 'g':
      γ = atof(optarg);
    case 'r':= atof(optarg);
      break;
    case 'i':= atof(optarg);
      break;
    case 'n':
      n = (unsigned)atof(optarg);
      break;
    case 'M':
      M = (unsigned)atof(optarg);
      break;
    default:
      exit(1);
    }
  }

  Scalar κ(,);
  double σ = sqrt(factorial(p) / (2.0 * pow(N, p - 1)));

  Rng r;

  Tensor J = generateCouplings<Scalar, PSPIN_P>(N, complex_normal_distribution<>(0, σ, κ), r.engine());
  Vector z0 = normalize(randomVector(N, complex_normal_distribution<>(0, 1, 0), r.engine()));

  Vector zSaddle = findSaddle(J, z0, ε);
  Vector zSaddlePrev = Vector::Zero(N);
  Vector z = zSaddle;

  while (δ < (zSaddle - zSaddlePrev).norm()) { // Until we find two saddles sufficiently close...
    std::tie(std::ignore, z) = langevin(J, z, T, γ, M, r);
    try {
      Vector zSaddleNext = findSaddle(J, z, ε);
      if (Δ < (zSaddleNext - zSaddle).norm()) { // Ensure we are finding distinct saddles.
        zSaddlePrev = zSaddle;
        zSaddle = zSaddleNext;
      }
    } catch (std::exception& e) {
      std::cerr << "Could not find a saddle: " << e.what() << std::endl;
    }

    std::cerr << "Current saddles are " << (zSaddle - zSaddlePrev).norm() << " apart." << std::endl;
  }

  std::cerr << "Found sufficiently nearby saddles, perturbing J." << std::endl;

  complex_normal_distribution<> dJ(0, εJ * σ, 0);

  std::function<void(Tensor&, std::array<unsigned, p>)> perturbJ =
    [&dJ, &r] (Tensor& JJ, std::array<unsigned, p> ind) {
      Scalar Ji = getJ<Scalar, p>(JJ, ind);
      setJ<Scalar, p>(JJ, ind, Ji + dJ(r.engine()));
    };

  for (unsigned i = 0; i < n; i++) {
    Tensor Jp = J;

    iterateOver<Scalar, p>(Jp, perturbJ);

    try {
      Vector zSaddleNew = findSaddle(Jp, zSaddle, ε);
      Vector zSaddlePrevNew = findSaddle(Jp, zSaddlePrev, ε);

      std::cout << zSaddleNew.transpose() << " " << zSaddlePrevNew.transpose() << std::endl;
    } catch (std::exception& e) {
      std::cerr << "Couldn't find a saddle with new couplings, skipping." << std::endl;
    }
  }

  return 0;
}