-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstructure_factor_routine.py
More file actions
420 lines (368 loc) · 14.5 KB
/
structure_factor_routine.py
File metadata and controls
420 lines (368 loc) · 14.5 KB
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
from functools import partial
import enum
import jax.numpy as jnp
from jax import jit, custom_vjp, vjp, tree_util
from jax.lax import cond, while_loop
import jax.debug as jdebug
import logging
import time
logger = logging.getLogger("varipeps.ctmrg")
from varipeps import varipeps_config, varipeps_global_state
from varipeps.peps import PEPS_Tensor, PEPS_Unit_Cell
from varipeps.utils.debug_print import debug_print
from .structure_factor_absorption import do_absorption_step_structure_factor
from .routine import CTMRGNotConvergedError
from typing import Sequence, Tuple, List, Optional
@enum.unique
class CTM_Enum_Structure_Factor(enum.IntEnum):
C1 = enum.auto()
C2 = enum.auto()
C3 = enum.auto()
C4 = enum.auto()
C1_Phase = enum.auto()
C2_Phase = enum.auto()
C3_Phase = enum.auto()
C4_Phase = enum.auto()
T1 = enum.auto()
T2 = enum.auto()
T3 = enum.auto()
T4 = enum.auto()
@partial(jit, static_argnums=(2,), inline=True)
def _calc_corner_svds_structure_factor(
peps_tensors: List[PEPS_Tensor],
old_corner_svd: jnp.ndarray,
tensor_shape: Optional[Tuple[int, int, int]],
) -> jnp.ndarray:
if tensor_shape is None:
step_corner_svd = jnp.zeros_like(old_corner_svd)
else:
step_corner_svd = jnp.zeros(tensor_shape, dtype=jnp.float64)
for ti, t in enumerate(peps_tensors):
C1_svd = jnp.linalg.svd(t.C1, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 0, : C1_svd.shape[0]].set(
C1_svd, indices_are_sorted=True, unique_indices=True
)
C2_svd = jnp.linalg.svd(t.C2, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 1, : C2_svd.shape[0]].set(
C2_svd, indices_are_sorted=True, unique_indices=True
)
C3_svd = jnp.linalg.svd(t.C3, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 2, : C3_svd.shape[0]].set(
C3_svd, indices_are_sorted=True, unique_indices=True
)
C4_svd = jnp.linalg.svd(t.C4, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 3, : C4_svd.shape[0]].set(
C4_svd, indices_are_sorted=True, unique_indices=True
)
C1_phase_svd = jnp.linalg.svd(t.C1_phase, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 4, : C1_phase_svd.shape[0]].set(
C1_phase_svd, indices_are_sorted=True, unique_indices=True
)
C2_phase_svd = jnp.linalg.svd(t.C2_phase, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 5, : C2_phase_svd.shape[0]].set(
C2_phase_svd, indices_are_sorted=True, unique_indices=True
)
C3_phase_svd = jnp.linalg.svd(t.C3_phase, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 6, : C3_phase_svd.shape[0]].set(
C3_phase_svd, indices_are_sorted=True, unique_indices=True
)
C4_phase_svd = jnp.linalg.svd(t.C4_phase, full_matrices=False, compute_uv=False)
step_corner_svd = step_corner_svd.at[ti, 7, : C4_phase_svd.shape[0]].set(
C4_phase_svd, indices_are_sorted=True, unique_indices=True
)
return step_corner_svd
@jit
def _ctmrg_body_func_structure_factor(carry):
(
w_tensors,
w_unitcell_last_step,
converged,
last_corner_svd,
eps,
count,
norm_smallest_S,
structure_factor_gates,
structure_factor_outer_factors,
structure_factor_inner_factors,
state,
config,
) = carry
w_unitcell, norm_smallest_S = do_absorption_step_structure_factor(
w_tensors,
w_unitcell_last_step,
structure_factor_gates,
structure_factor_outer_factors,
structure_factor_inner_factors,
config,
state,
)
verbose_data = [] if config.ctmrg_verbose_output else None
if last_corner_svd is None:
corner_svd = None
converged = False
measure = jnp.nan
else:
corner_svd = _calc_corner_svds_structure_factor(
w_unitcell.get_unique_tensors(), last_corner_svd, None
)
measure = jnp.linalg.norm(corner_svd - last_corner_svd)
converged = measure < eps
if logger.isEnabledFor(logging.DEBUG):
jdebug.callback(lambda cnt, msr: logger.debug(f"CTMRG: Step {cnt}: {msr}"), count, measure, ordered=True)
if config.ctmrg_verbose_output:
for ti, ctm_enum_i, diff in verbose_data:
debug_print(
"CTMRG: Verbose: ti {}, CTM tensor {}, Diff {}",
ti,
CTM_Enum(ctm_enum_i).name,
diff,
)
count += 1
return (
w_tensors,
w_unitcell,
converged,
corner_svd,
eps,
count,
norm_smallest_S,
structure_factor_gates,
structure_factor_outer_factors,
structure_factor_inner_factors,
state,
config,
)
@jit
def _ctmrg_while_wrapper_structure_factor(start_carry):
def cond_func(carry):
_, _, converged, _, _, count, _, _, _, _, _, config = carry
return jnp.logical_not(converged) & (count < config.ctmrg_max_steps)
(
_,
working_unitcell,
converged,
_,
_,
end_count,
norm_smallest_S,
_,
_,
_,
_,
_,
) = while_loop(cond_func, _ctmrg_body_func_structure_factor, start_carry)
return working_unitcell, converged, end_count, norm_smallest_S
def calc_ctmrg_env_structure_factor(
peps_tensors: Sequence[jnp.ndarray],
unitcell: PEPS_Unit_Cell,
structure_factor_gates: Sequence[jnp.ndarray],
structure_factor_outer_factors: Sequence[float],
structure_factor_inner_factors: Sequence[float],
*,
eps: Optional[float] = None,
_return_truncation_eps: bool = False,
) -> PEPS_Unit_Cell:
"""
Calculate the new converged CTMRG tensors for the unit cell. The function
updates the environment all iPEPS tensors in the unit cell according to the
periodic structure. This routine also calculates the tensors including
the phase factor for a structure factor calculation.
Args:
peps_tensors (:term:`sequence` of :obj:`jax.numpy.ndarray`):
The sequence of unique PEPS tensors the unitcell consists of.
unitcell (:obj:`~varipeps.peps.PEPS_Unit_Cell`):
The unitcell to work on.
structure_factor_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`):
The sequence with the observables which is absorbed into the CTM tensors
containing the phase for the structure factor calculation. Expected to
be a sequence where the gate is already multiplied with identities to
match the physical dimension of the coarse-grained tensor
structure_factor_outer_factors (:obj:`float`):
The sequence with factors used to calculate the new tensors by shifting
one site in the square lattice. Likely something like
``jnp.exp(- 1j * q_vector @ r_vector)``. If length two, the first
argument will be used for bottom absorption and its complex conjugate for
top and the second one for right and its complex conjugate for left
absorption. If length four, it will be used in the order
(top, bottom, left, right).
structure_factor_inner_factors (:term:`sequence` of :obj:`float`):
For coarse-grained systems the sequence with the factors used to
calculate the phase by shifting one site inside one coarse-grained
square site. Set it to None, [] or [1] if system has
no coarsed-grained structure. If used likely something like
``jnp.exp(- 1j * q_vector @ r_vector)``.
Keyword args:
eps (:obj:`float`):
The convergence criterion.
Returns:
:obj:`~varipeps.peps.PEPS_Unit_Cell`:
New instance of the unitcell with all updated converged CTMRG tensors of
all elements of the unitcell.
"""
eps = eps if eps is not None else varipeps_config.ctmrg_convergence_eps
shape_corner_svd = (
unitcell.get_len_unique_tensors(),
8,
unitcell[0, 0][0][0].chi,
)
init_corner_singular_vals = _calc_corner_svds_structure_factor(
unitcell.get_unique_tensors(), None, shape_corner_svd
)
initial_unitcell = unitcell
working_unitcell = unitcell
varipeps_global_state.ctmrg_effective_truncation_eps = None
norm_smallest_S = jnp.nan
already_tried_chi = {working_unitcell[0, 0][0][0].chi}
t0 = time.perf_counter()
while True:
tmp_count = 0
corner_singular_vals = None
while any(
i.C1.shape[0] != i.chi for i in working_unitcell.get_unique_tensors()
):
(
_,
working_unitcell,
_,
corner_singular_vals,
_,
tmp_count,
_,
_,
_,
_,
_,
_,
) = _ctmrg_body_func_structure_factor(
(
peps_tensors,
working_unitcell,
False,
init_corner_singular_vals,
eps,
tmp_count,
jnp.inf,
structure_factor_gates,
structure_factor_outer_factors,
structure_factor_inner_factors,
varipeps_global_state,
varipeps_config,
)
)
working_unitcell, converged, end_count, norm_smallest_S = (
_ctmrg_while_wrapper_structure_factor(
(
peps_tensors,
working_unitcell,
False,
(
corner_singular_vals
if corner_singular_vals is not None
else init_corner_singular_vals
),
eps,
tmp_count,
jnp.inf,
structure_factor_gates,
structure_factor_outer_factors,
structure_factor_inner_factors,
varipeps_global_state,
varipeps_config,
)
)
)
if not converged and logger.isEnabledFor(logging.WARNING):
logger.warning(
"CTMRG (SF): ❌ did not converge, took %.2f seconds. (Steps: %d, Smallest SVD Norm: %.3e)",
time.perf_counter() - t0, end_count, norm_smallest_S
)
elif logger.isEnabledFor(logging.INFO):
logger.info(
"CTMRG (SF): ✅ converged, took %.2f seconds. (Steps: %d, Smallest SVD Norm: %.3e)",
time.perf_counter() - t0, end_count, norm_smallest_S
)
current_truncation_eps = (
varipeps_config.ctmrg_truncation_eps
if varipeps_global_state.ctmrg_effective_truncation_eps is None
else varipeps_global_state.ctmrg_effective_truncation_eps
)
if (
varipeps_config.ctmrg_heuristic_increase_chi
and norm_smallest_S > varipeps_config.ctmrg_heuristic_increase_chi_threshold
and working_unitcell[0, 0][0][0].chi < working_unitcell[0, 0][0][0].max_chi
):
new_chi = (
working_unitcell[0, 0][0][0].chi
+ varipeps_config.ctmrg_heuristic_increase_chi_step_size
)
if new_chi > working_unitcell[0, 0][0][0].max_chi:
new_chi = working_unitcell[0, 0][0][0].max_chi
if not new_chi in already_tried_chi:
working_unitcell = working_unitcell.change_chi(new_chi)
initial_unitcell = initial_unitcell.change_chi(new_chi)
if logger.isEnabledFor(logging.INFO):
logger.info(
"CTMRG (SF): Increasing chi to %d since smallest SVD Norm was %.3e.",
new_chi,
norm_smallest_S,
)
already_tried_chi.add(new_chi)
continue
elif (
varipeps_config.ctmrg_heuristic_decrease_chi
and norm_smallest_S < current_truncation_eps
and working_unitcell[0, 0][0][0].chi > 2
):
new_chi = (
working_unitcell[0, 0][0][0].chi
- varipeps_config.ctmrg_heuristic_decrease_chi_step_size
)
if new_chi < 2:
new_chi = 2
if not new_chi in already_tried_chi:
working_unitcell = working_unitcell.change_chi(new_chi)
if logger.isEnabledFor(logging.INFO):
logger.info(
"CTMRG (SF): Decreasing chi to %d since smallest SVD Norm was %.3e.",
new_chi,
norm_smallest_S,
)
already_tried_chi.add(new_chi)
continue
if (
varipeps_config.ctmrg_increase_truncation_eps
and end_count == varipeps_config.ctmrg_max_steps
and not converged
):
new_truncation_eps = (
current_truncation_eps
* varipeps_config.ctmrg_increase_truncation_eps_factor
)
if (
new_truncation_eps
<= varipeps_config.ctmrg_increase_truncation_eps_max_value
):
if logger.isEnabledFor(logging.INFO):
logger.info(
"CTMRG (SF): Increasing SVD truncation eps to %g.",
new_truncation_eps,
)
varipeps_global_state.ctmrg_effective_truncation_eps = (
new_truncation_eps
)
working_unitcell = initial_unitcell
already_tried_chi = {working_unitcell[0, 0][0][0].chi}
continue
break
if _return_truncation_eps:
last_truncation_eps = varipeps_global_state.ctmrg_effective_truncation_eps
varipeps_global_state.ctmrg_effective_truncation_eps = None
if (
varipeps_config.ctmrg_fail_if_not_converged
and end_count == varipeps_config.ctmrg_max_steps
and not converged
):
raise CTMRGNotConvergedError
if _return_truncation_eps:
return working_unitcell, last_truncation_eps, norm_smallest_S
return working_unitcell, norm_smallest_S