Two-orbital Hubbard model
You will generalize the previous study to a two-orbital problem. We will still focus on a Bethe lattice so that the DMFT self-consistency is simple. For the interaction Hamiltonian, we will consider the Hubbard-Kanamori model for two bands. The Hamiltonian consists of density-density, spin-flip and pair-hopping terms:
For this problem, the DMFT self-consistency still reads
Note that the Green’s functions are diagonal in spin and orbital indices.
Exercise 1
Modify the script for the single-band Hubbard model to work here. We will be interested in the half- and quarter-filled cases, for which the respective chemical potentials are:
\(\mu_{\rm half} = 0.5 U + 0.5 (U-2J) + 0.5 (U-3J)\)
\(\mu_{\rm quarter} = -0.81 + (0.6899 - 1.1099 \, J/U) U + (-0.02548 + 0.02709 \, J/U -0.1606 \, (J/U)^2) U^2\)
Note: In general when performing DMFT calculations at fixed density, the required chemical potential may be unknown and has to then be determined self-consistently after each DMFT loop.
[1]:
# TO BE MODIFIED: Find below the previous script scripts/one_band.py
from triqs.gfs import *
from triqs.operators import *
from h5 import *
from triqs_cthyb import Solver
import numpy as np
import os
if not os.path.exists('data/one_band'):
os.makedirs('data/one_band')
# Parameters of the model
t = 1.0
beta = 10.0
n_loops = 10
# Construct the impurity solver
S = Solver(beta = beta, gf_struct = [('up',1), ('down',1)] )
# I run for several values of U
for U in np.arange(1.0, 13.0):
print('U =', U)
# This is a first guess for G
S.G_iw << SemiCircular(2*t)
# DMFT loop with self-consistency
for i in range(n_loops):
print("\n\nIteration = %i / %i" % (i+1, n_loops))
# Symmetrize the Green's function and use self-consistency
g = 0.5 * ( S.G_iw['up'] + S.G_iw['down'] )
for name, g0 in S.G0_iw:
g0 << inverse( iOmega_n + U/2.0 - t**2 * g )
# Solve the impurity problem
S.solve(h_int = U * n('up',0) * n('down',0), # Local Hamiltonian
n_cycles = 10000, # Number of QMC cycles
n_warmup_cycles = 5000, # Warmup cycles
)
# Save iteration in archive
with HDFArchive("data/one_band/half-U%.2f.h5"%U) as A:
A['G-%i'%i] = S.G_iw
A['Sigma-%i'%i] = S.Sigma_iw
Warning: could not identify MPI environment!
U = 1.0
Iteration = 1 / 10
Starting serial run at: 2026-06-28 08:08:17.166589
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:17 24.36% done, ETA 00:00:00, cycle 1218 of 5000, 1.22e+04 cycles/sec
[Rank 0] 08:08:17 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.23e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:17 13.13% done, ETA 00:00:00, cycle 1313 of 10000, 1.31e+04 cycles/sec
[Rank 0] 08:08:18 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.25e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4068 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7970 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.25e+04
[Rank 0] Measurement durations (total = 0.0041):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0027
[Rank 0] Move durations (total = 0.7664):
[Rank 0] Move set Insert two operators: Duration = 0.1152
[Rank 0] Move Insert Delta_up: Duration = 0.0535
[Rank 0] Move Insert Delta_down: Duration = 0.0540
[Rank 0] Move set Remove two operators: Duration = 0.1077
[Rank 0] Move Remove Delta_up: Duration = 0.0501
[Rank 0] Move Remove Delta_down: Duration = 0.0499
[Rank 0] Move set Insert four operators: Duration = 0.1415
[Rank 0] Move Insert Delta_up_up: Duration = 0.0375
[Rank 0] Move Insert Delta_up_down: Duration = 0.0292
[Rank 0] Move Insert Delta_down_up: Duration = 0.0288
[Rank 0] Move Insert Delta_down_down: Duration = 0.0378
[Rank 0] Move set Remove four operators: Duration = 0.0945
[Rank 0] Move Remove Delta_up_up: Duration = 0.0182
[Rank 0] Move Remove Delta_up_down: Duration = 0.0248
[Rank 0] Move Remove Delta_down_up: Duration = 0.0247
[Rank 0] Move Remove Delta_down_down: Duration = 0.0187
[Rank 0] Move Shift one operator: Duration = 0.3074
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100057, Accepted = 13427, Rate = 0.1342
[Rank 0] Move Insert Delta_up: Proposed = 49868, Accepted = 6739, Rate = 0.1351
[Rank 0] Move Insert Delta_down: Proposed = 50189, Accepted = 6688, Rate = 0.1333
[Rank 0] Move set Remove two operators: Proposed = 99733, Accepted = 13372, Rate = 0.1341
[Rank 0] Move Remove Delta_up: Proposed = 49920, Accepted = 6714, Rate = 0.1345
[Rank 0] Move Remove Delta_down: Proposed = 49813, Accepted = 6658, Rate = 0.1337
[Rank 0] Move set Insert four operators: Proposed = 100124, Accepted = 2375, Rate = 0.0237
[Rank 0] Move Insert Delta_up_up: Proposed = 25131, Accepted = 663, Rate = 0.0264
[Rank 0] Move Insert Delta_up_down: Proposed = 24969, Accepted = 537, Rate = 0.0215
[Rank 0] Move Insert Delta_down_up: Proposed = 24998, Accepted = 482, Rate = 0.0193
[Rank 0] Move Insert Delta_down_down: Proposed = 25026, Accepted = 693, Rate = 0.0277
[Rank 0] Move set Remove four operators: Proposed = 99739, Accepted = 2401, Rate = 0.0241
[Rank 0] Move Remove Delta_up_up: Proposed = 24728, Accepted = 675, Rate = 0.0273
[Rank 0] Move Remove Delta_up_down: Proposed = 25161, Accepted = 506, Rate = 0.0201
[Rank 0] Move Remove Delta_down_up: Proposed = 24828, Accepted = 513, Rate = 0.0207
[Rank 0] Move Remove Delta_down_down: Proposed = 25022, Accepted = 707, Rate = 0.0283
[Rank 0] Move Shift one operator: Proposed = 100347, Accepted = 84155, Rate = 0.8386
Total number of measures: 10000
Total cycles (measures) / second: 1.25e+04
Average sign: 1
Average order: 8.1807
Auto-correlation time: 1.58633 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:18 25.68% done, ETA 00:00:00, cycle 1284 of 5000, 1.28e+04 cycles/sec
[Rank 0] 08:08:18 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.31e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:18 12.74% done, ETA 00:00:00, cycle 1274 of 10000, 1.27e+04 cycles/sec
[Rank 0] 08:08:19 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.27e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3806 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7883 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.27e+04
[Rank 0] Measurement durations (total = 0.0041):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0026
[Rank 0] Move durations (total = 0.7580):
[Rank 0] Move set Insert two operators: Duration = 0.1146
[Rank 0] Move Insert Delta_up: Duration = 0.0533
[Rank 0] Move Insert Delta_down: Duration = 0.0534
[Rank 0] Move set Remove two operators: Duration = 0.1069
[Rank 0] Move Remove Delta_up: Duration = 0.0500
[Rank 0] Move Remove Delta_down: Duration = 0.0493
[Rank 0] Move set Insert four operators: Duration = 0.1402
[Rank 0] Move Insert Delta_up_up: Duration = 0.0373
[Rank 0] Move Insert Delta_up_down: Duration = 0.0285
[Rank 0] Move Insert Delta_down_up: Duration = 0.0287
[Rank 0] Move Insert Delta_down_down: Duration = 0.0373
[Rank 0] Move set Remove four operators: Duration = 0.0943
[Rank 0] Move Remove Delta_up_up: Duration = 0.0182
[Rank 0] Move Remove Delta_up_down: Duration = 0.0246
[Rank 0] Move Remove Delta_down_up: Duration = 0.0244
[Rank 0] Move Remove Delta_down_down: Duration = 0.0187
[Rank 0] Move Shift one operator: Duration = 0.3021
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99935, Accepted = 13744, Rate = 0.1375
[Rank 0] Move Insert Delta_up: Proposed = 49896, Accepted = 6916, Rate = 0.1386
[Rank 0] Move Insert Delta_down: Proposed = 50039, Accepted = 6828, Rate = 0.1365
[Rank 0] Move set Remove two operators: Proposed = 99870, Accepted = 13547, Rate = 0.1356
[Rank 0] Move Remove Delta_up: Proposed = 50031, Accepted = 6859, Rate = 0.1371
[Rank 0] Move Remove Delta_down: Proposed = 49839, Accepted = 6688, Rate = 0.1342
[Rank 0] Move set Insert four operators: Proposed = 100015, Accepted = 2481, Rate = 0.0248
[Rank 0] Move Insert Delta_up_up: Proposed = 25118, Accepted = 729, Rate = 0.0290
[Rank 0] Move Insert Delta_up_down: Proposed = 24879, Accepted = 505, Rate = 0.0203
[Rank 0] Move Insert Delta_down_up: Proposed = 24988, Accepted = 530, Rate = 0.0212
[Rank 0] Move Insert Delta_down_down: Proposed = 25030, Accepted = 717, Rate = 0.0286
[Rank 0] Move set Remove four operators: Proposed = 99804, Accepted = 2576, Rate = 0.0258
[Rank 0] Move Remove Delta_up_up: Proposed = 24789, Accepted = 744, Rate = 0.0300
[Rank 0] Move Remove Delta_up_down: Proposed = 25153, Accepted = 523, Rate = 0.0208
[Rank 0] Move Remove Delta_down_up: Proposed = 24858, Accepted = 537, Rate = 0.0216
[Rank 0] Move Remove Delta_down_down: Proposed = 25004, Accepted = 772, Rate = 0.0309
[Rank 0] Move Shift one operator: Proposed = 100376, Accepted = 83279, Rate = 0.8297
Total number of measures: 10000
Total cycles (measures) / second: 1.27e+04
Average sign: 1
Average order: 8.0726
Auto-correlation time: 1.71842 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:19 23.96% done, ETA 00:00:00, cycle 1198 of 5000, 1.20e+04 cycles/sec
[Rank 0] 08:08:20 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.23e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:20 12.52% done, ETA 00:00:00, cycle 1252 of 10000, 1.25e+04 cycles/sec
[Rank 0] 08:08:20 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.22e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4057 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8175 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.22e+04
[Rank 0] Measurement durations (total = 0.0044):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0003
[Rank 0] Measure G_tau measure: Duration = 0.0029
[Rank 0] Move durations (total = 0.7860):
[Rank 0] Move set Insert two operators: Duration = 0.1187
[Rank 0] Move Insert Delta_up: Duration = 0.0550
[Rank 0] Move Insert Delta_down: Duration = 0.0556
[Rank 0] Move set Remove two operators: Duration = 0.1109
[Rank 0] Move Remove Delta_up: Duration = 0.0513
[Rank 0] Move Remove Delta_down: Duration = 0.0518
[Rank 0] Move set Insert four operators: Duration = 0.1450
[Rank 0] Move Insert Delta_up_up: Duration = 0.0386
[Rank 0] Move Insert Delta_up_down: Duration = 0.0296
[Rank 0] Move Insert Delta_down_up: Duration = 0.0298
[Rank 0] Move Insert Delta_down_down: Duration = 0.0386
[Rank 0] Move set Remove four operators: Duration = 0.0973
[Rank 0] Move Remove Delta_up_up: Duration = 0.0193
[Rank 0] Move Remove Delta_up_down: Duration = 0.0253
[Rank 0] Move Remove Delta_down_up: Duration = 0.0253
[Rank 0] Move Remove Delta_down_down: Duration = 0.0190
[Rank 0] Move Shift one operator: Duration = 0.3141
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100109, Accepted = 13684, Rate = 0.1367
[Rank 0] Move Insert Delta_up: Proposed = 49942, Accepted = 6798, Rate = 0.1361
[Rank 0] Move Insert Delta_down: Proposed = 50167, Accepted = 6886, Rate = 0.1373
[Rank 0] Move set Remove two operators: Proposed = 99700, Accepted = 13554, Rate = 0.1359
[Rank 0] Move Remove Delta_up: Proposed = 49876, Accepted = 6739, Rate = 0.1351
[Rank 0] Move Remove Delta_down: Proposed = 49824, Accepted = 6815, Rate = 0.1368
[Rank 0] Move set Insert four operators: Proposed = 99996, Accepted = 2443, Rate = 0.0244
[Rank 0] Move Insert Delta_up_up: Proposed = 25032, Accepted = 700, Rate = 0.0280
[Rank 0] Move Insert Delta_up_down: Proposed = 24885, Accepted = 529, Rate = 0.0213
[Rank 0] Move Insert Delta_down_up: Proposed = 24986, Accepted = 534, Rate = 0.0214
[Rank 0] Move Insert Delta_down_down: Proposed = 25093, Accepted = 680, Rate = 0.0271
[Rank 0] Move set Remove four operators: Proposed = 99732, Accepted = 2507, Rate = 0.0251
[Rank 0] Move Remove Delta_up_up: Proposed = 24863, Accepted = 743, Rate = 0.0299
[Rank 0] Move Remove Delta_up_down: Proposed = 25007, Accepted = 513, Rate = 0.0205
[Rank 0] Move Remove Delta_down_up: Proposed = 24875, Accepted = 522, Rate = 0.0210
[Rank 0] Move Remove Delta_down_down: Proposed = 24987, Accepted = 729, Rate = 0.0292
[Rank 0] Move Shift one operator: Proposed = 100463, Accepted = 83671, Rate = 0.8329
Total number of measures: 10000
Total cycles (measures) / second: 1.22e+04
Average sign: 1
Average order: 8.1617
Auto-correlation time: 1.43877 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:21 22.76% done, ETA 00:00:00, cycle 1138 of 5000, 1.14e+04 cycles/sec
[Rank 0] 08:08:21 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.18e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:21 12.40% done, ETA 00:00:00, cycle 1240 of 10000, 1.24e+04 cycles/sec
[Rank 0] 08:08:22 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.25e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4250 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8005 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.25e+04
[Rank 0] Measurement durations (total = 0.0042):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0028
[Rank 0] Move durations (total = 0.7696):
[Rank 0] Move set Insert two operators: Duration = 0.1167
[Rank 0] Move Insert Delta_up: Duration = 0.0544
[Rank 0] Move Insert Delta_down: Duration = 0.0543
[Rank 0] Move set Remove two operators: Duration = 0.1086
[Rank 0] Move Remove Delta_up: Duration = 0.0505
[Rank 0] Move Remove Delta_down: Duration = 0.0505
[Rank 0] Move set Insert four operators: Duration = 0.1417
[Rank 0] Move Insert Delta_up_up: Duration = 0.0376
[Rank 0] Move Insert Delta_up_down: Duration = 0.0288
[Rank 0] Move Insert Delta_down_up: Duration = 0.0289
[Rank 0] Move Insert Delta_down_down: Duration = 0.0379
[Rank 0] Move set Remove four operators: Duration = 0.0952
[Rank 0] Move Remove Delta_up_up: Duration = 0.0184
[Rank 0] Move Remove Delta_up_down: Duration = 0.0251
[Rank 0] Move Remove Delta_down_up: Duration = 0.0247
[Rank 0] Move Remove Delta_down_down: Duration = 0.0185
[Rank 0] Move Shift one operator: Duration = 0.3074
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100024, Accepted = 13791, Rate = 0.1379
[Rank 0] Move Insert Delta_up: Proposed = 49964, Accepted = 6934, Rate = 0.1388
[Rank 0] Move Insert Delta_down: Proposed = 50060, Accepted = 6857, Rate = 0.1370
[Rank 0] Move set Remove two operators: Proposed = 99738, Accepted = 13650, Rate = 0.1369
[Rank 0] Move Remove Delta_up: Proposed = 49897, Accepted = 6878, Rate = 0.1378
[Rank 0] Move Remove Delta_down: Proposed = 49841, Accepted = 6772, Rate = 0.1359
[Rank 0] Move set Insert four operators: Proposed = 99833, Accepted = 2400, Rate = 0.0240
[Rank 0] Move Insert Delta_up_up: Proposed = 25012, Accepted = 699, Rate = 0.0279
[Rank 0] Move Insert Delta_up_down: Proposed = 24901, Accepted = 481, Rate = 0.0193
[Rank 0] Move Insert Delta_down_up: Proposed = 24940, Accepted = 512, Rate = 0.0205
[Rank 0] Move Insert Delta_down_down: Proposed = 24980, Accepted = 708, Rate = 0.0283
[Rank 0] Move set Remove four operators: Proposed = 99991, Accepted = 2472, Rate = 0.0247
[Rank 0] Move Remove Delta_up_up: Proposed = 24883, Accepted = 677, Rate = 0.0272
[Rank 0] Move Remove Delta_up_down: Proposed = 25159, Accepted = 553, Rate = 0.0220
[Rank 0] Move Remove Delta_down_up: Proposed = 24828, Accepted = 542, Rate = 0.0218
[Rank 0] Move Remove Delta_down_down: Proposed = 25121, Accepted = 700, Rate = 0.0279
[Rank 0] Move Shift one operator: Proposed = 100414, Accepted = 83376, Rate = 0.8303
Total number of measures: 10000
Total cycles (measures) / second: 1.25e+04
Average sign: 1
Average order: 8.1484
Auto-correlation time: 1.56079 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:22 24.98% done, ETA 00:00:00, cycle 1249 of 5000, 1.25e+04 cycles/sec
[Rank 0] 08:08:22 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.26e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:22 11.33% done, ETA 00:00:00, cycle 1133 of 10000, 1.13e+04 cycles/sec
[Rank 0] 08:08:23 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.21e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3970 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8257 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.21e+04
[Rank 0] Measurement durations (total = 0.0042):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0027
[Rank 0] Move durations (total = 0.7940):
[Rank 0] Move set Insert two operators: Duration = 0.1200
[Rank 0] Move Insert Delta_up: Duration = 0.0555
[Rank 0] Move Insert Delta_down: Duration = 0.0562
[Rank 0] Move set Remove two operators: Duration = 0.1122
[Rank 0] Move Remove Delta_up: Duration = 0.0521
[Rank 0] Move Remove Delta_down: Duration = 0.0523
[Rank 0] Move set Insert four operators: Duration = 0.1468
[Rank 0] Move Insert Delta_up_up: Duration = 0.0390
[Rank 0] Move Insert Delta_up_down: Duration = 0.0299
[Rank 0] Move Insert Delta_down_up: Duration = 0.0302
[Rank 0] Move Insert Delta_down_down: Duration = 0.0390
[Rank 0] Move set Remove four operators: Duration = 0.0978
[Rank 0] Move Remove Delta_up_up: Duration = 0.0188
[Rank 0] Move Remove Delta_up_down: Duration = 0.0259
[Rank 0] Move Remove Delta_down_up: Duration = 0.0255
[Rank 0] Move Remove Delta_down_down: Duration = 0.0191
[Rank 0] Move Shift one operator: Duration = 0.3173
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99964, Accepted = 13608, Rate = 0.1361
[Rank 0] Move Insert Delta_up: Proposed = 49895, Accepted = 6751, Rate = 0.1353
[Rank 0] Move Insert Delta_down: Proposed = 50069, Accepted = 6857, Rate = 0.1370
[Rank 0] Move set Remove two operators: Proposed = 99798, Accepted = 13685, Rate = 0.1371
[Rank 0] Move Remove Delta_up: Proposed = 49934, Accepted = 6826, Rate = 0.1367
[Rank 0] Move Remove Delta_down: Proposed = 49864, Accepted = 6859, Rate = 0.1376
[Rank 0] Move set Insert four operators: Proposed = 99996, Accepted = 2460, Rate = 0.0246
[Rank 0] Move Insert Delta_up_up: Proposed = 25113, Accepted = 708, Rate = 0.0282
[Rank 0] Move Insert Delta_up_down: Proposed = 24875, Accepted = 517, Rate = 0.0208
[Rank 0] Move Insert Delta_down_up: Proposed = 24943, Accepted = 541, Rate = 0.0217
[Rank 0] Move Insert Delta_down_down: Proposed = 25065, Accepted = 694, Rate = 0.0277
[Rank 0] Move set Remove four operators: Proposed = 99809, Accepted = 2421, Rate = 0.0243
[Rank 0] Move Remove Delta_up_up: Proposed = 24788, Accepted = 674, Rate = 0.0272
[Rank 0] Move Remove Delta_up_down: Proposed = 25220, Accepted = 545, Rate = 0.0216
[Rank 0] Move Remove Delta_down_up: Proposed = 24797, Accepted = 503, Rate = 0.0203
[Rank 0] Move Remove Delta_down_down: Proposed = 25004, Accepted = 699, Rate = 0.0280
[Rank 0] Move Shift one operator: Proposed = 100433, Accepted = 83401, Rate = 0.8304
Total number of measures: 10000
Total cycles (measures) / second: 1.21e+04
Average sign: 1
Average order: 8.1626
Auto-correlation time: 1.81841 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:23 25.78% done, ETA 00:00:00, cycle 1289 of 5000, 1.29e+04 cycles/sec
[Rank 0] 08:08:23 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.23e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:23 11.52% done, ETA 00:00:00, cycle 1152 of 10000, 1.15e+04 cycles/sec
[Rank 0] 08:08:24 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.20e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4051 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8309 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.20e+04
[Rank 0] Measurement durations (total = 0.0043):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0027
[Rank 0] Move durations (total = 0.7992):
[Rank 0] Move set Insert two operators: Duration = 0.1204
[Rank 0] Move Insert Delta_up: Duration = 0.0562
[Rank 0] Move Insert Delta_down: Duration = 0.0562
[Rank 0] Move set Remove two operators: Duration = 0.1137
[Rank 0] Move Remove Delta_up: Duration = 0.0530
[Rank 0] Move Remove Delta_down: Duration = 0.0526
[Rank 0] Move set Insert four operators: Duration = 0.1483
[Rank 0] Move Insert Delta_up_up: Duration = 0.0394
[Rank 0] Move Insert Delta_up_down: Duration = 0.0302
[Rank 0] Move Insert Delta_down_up: Duration = 0.0303
[Rank 0] Move Insert Delta_down_down: Duration = 0.0396
[Rank 0] Move set Remove four operators: Duration = 0.0985
[Rank 0] Move Remove Delta_up_up: Duration = 0.0192
[Rank 0] Move Remove Delta_up_down: Duration = 0.0260
[Rank 0] Move Remove Delta_down_up: Duration = 0.0255
[Rank 0] Move Remove Delta_down_down: Duration = 0.0194
[Rank 0] Move Shift one operator: Duration = 0.3184
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99816, Accepted = 13638, Rate = 0.1366
[Rank 0] Move Insert Delta_up: Proposed = 49836, Accepted = 6875, Rate = 0.1380
[Rank 0] Move Insert Delta_down: Proposed = 49980, Accepted = 6763, Rate = 0.1353
[Rank 0] Move set Remove two operators: Proposed = 99894, Accepted = 13796, Rate = 0.1381
[Rank 0] Move Remove Delta_up: Proposed = 50036, Accepted = 6923, Rate = 0.1384
[Rank 0] Move Remove Delta_down: Proposed = 49858, Accepted = 6873, Rate = 0.1379
[Rank 0] Move set Insert four operators: Proposed = 99994, Accepted = 2571, Rate = 0.0257
[Rank 0] Move Insert Delta_up_up: Proposed = 25109, Accepted = 737, Rate = 0.0294
[Rank 0] Move Insert Delta_up_down: Proposed = 24911, Accepted = 530, Rate = 0.0213
[Rank 0] Move Insert Delta_down_up: Proposed = 25010, Accepted = 541, Rate = 0.0216
[Rank 0] Move Insert Delta_down_down: Proposed = 24964, Accepted = 763, Rate = 0.0306
[Rank 0] Move set Remove four operators: Proposed = 99927, Accepted = 2493, Rate = 0.0249
[Rank 0] Move Remove Delta_up_up: Proposed = 24807, Accepted = 721, Rate = 0.0291
[Rank 0] Move Remove Delta_up_down: Proposed = 25231, Accepted = 540, Rate = 0.0214
[Rank 0] Move Remove Delta_down_up: Proposed = 24879, Accepted = 517, Rate = 0.0208
[Rank 0] Move Remove Delta_down_down: Proposed = 25010, Accepted = 715, Rate = 0.0286
[Rank 0] Move Shift one operator: Proposed = 100369, Accepted = 83328, Rate = 0.8302
Total number of measures: 10000
Total cycles (measures) / second: 1.20e+04
Average sign: 1
Average order: 8.1595
Auto-correlation time: 1.96462 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:24 24.48% done, ETA 00:00:00, cycle 1224 of 5000, 1.22e+04 cycles/sec
[Rank 0] 08:08:25 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.23e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:25 12.82% done, ETA 00:00:00, cycle 1282 of 10000, 1.28e+04 cycles/sec
[Rank 0] 08:08:25 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.23e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4054 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8134 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.23e+04
[Rank 0] Measurement durations (total = 0.0042):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0027
[Rank 0] Move durations (total = 0.7821):
[Rank 0] Move set Insert two operators: Duration = 0.1191
[Rank 0] Move Insert Delta_up: Duration = 0.0553
[Rank 0] Move Insert Delta_down: Duration = 0.0558
[Rank 0] Move set Remove two operators: Duration = 0.1103
[Rank 0] Move Remove Delta_up: Duration = 0.0511
[Rank 0] Move Remove Delta_down: Duration = 0.0511
[Rank 0] Move set Insert four operators: Duration = 0.1439
[Rank 0] Move Insert Delta_up_up: Duration = 0.0384
[Rank 0] Move Insert Delta_up_down: Duration = 0.0293
[Rank 0] Move Insert Delta_down_up: Duration = 0.0295
[Rank 0] Move Insert Delta_down_down: Duration = 0.0382
[Rank 0] Move set Remove four operators: Duration = 0.0963
[Rank 0] Move Remove Delta_up_up: Duration = 0.0185
[Rank 0] Move Remove Delta_up_down: Duration = 0.0255
[Rank 0] Move Remove Delta_down_up: Duration = 0.0253
[Rank 0] Move Remove Delta_down_down: Duration = 0.0187
[Rank 0] Move Shift one operator: Duration = 0.3124
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100041, Accepted = 13874, Rate = 0.1387
[Rank 0] Move Insert Delta_up: Proposed = 49926, Accepted = 6929, Rate = 0.1388
[Rank 0] Move Insert Delta_down: Proposed = 50115, Accepted = 6945, Rate = 0.1386
[Rank 0] Move set Remove two operators: Proposed = 99689, Accepted = 13507, Rate = 0.1355
[Rank 0] Move Remove Delta_up: Proposed = 49950, Accepted = 6735, Rate = 0.1348
[Rank 0] Move Remove Delta_down: Proposed = 49739, Accepted = 6772, Rate = 0.1362
[Rank 0] Move set Insert four operators: Proposed = 99817, Accepted = 2384, Rate = 0.0239
[Rank 0] Move Insert Delta_up_up: Proposed = 25089, Accepted = 708, Rate = 0.0282
[Rank 0] Move Insert Delta_up_down: Proposed = 24883, Accepted = 467, Rate = 0.0188
[Rank 0] Move Insert Delta_down_up: Proposed = 24887, Accepted = 531, Rate = 0.0213
[Rank 0] Move Insert Delta_down_down: Proposed = 24958, Accepted = 678, Rate = 0.0272
[Rank 0] Move set Remove four operators: Proposed = 99944, Accepted = 2568, Rate = 0.0257
[Rank 0] Move Remove Delta_up_up: Proposed = 24815, Accepted = 737, Rate = 0.0297
[Rank 0] Move Remove Delta_up_down: Proposed = 25182, Accepted = 562, Rate = 0.0223
[Rank 0] Move Remove Delta_down_up: Proposed = 24903, Accepted = 574, Rate = 0.0230
[Rank 0] Move Remove Delta_down_down: Proposed = 25044, Accepted = 695, Rate = 0.0278
[Rank 0] Move Shift one operator: Proposed = 100509, Accepted = 83095, Rate = 0.8267
Total number of measures: 10000
Total cycles (measures) / second: 1.23e+04
Average sign: 1
Average order: 8.0322
Auto-correlation time: 2.57838 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:26 23.12% done, ETA 00:00:00, cycle 1156 of 5000, 1.16e+04 cycles/sec
[Rank 0] 08:08:26 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.22e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:26 11.45% done, ETA 00:00:00, cycle 1145 of 10000, 1.14e+04 cycles/sec
[Rank 0] 08:08:27 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.15e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4103 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8686 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.15e+04
[Rank 0] Measurement durations (total = 0.0046):
[Rank 0] Measure Auto-correlation time: Duration = 0.0011
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0003
[Rank 0] Measure G_tau measure: Duration = 0.0030
[Rank 0] Move durations (total = 0.8350):
[Rank 0] Move set Insert two operators: Duration = 0.1267
[Rank 0] Move Insert Delta_up: Duration = 0.0589
[Rank 0] Move Insert Delta_down: Duration = 0.0591
[Rank 0] Move set Remove two operators: Duration = 0.1182
[Rank 0] Move Remove Delta_up: Duration = 0.0547
[Rank 0] Move Remove Delta_down: Duration = 0.0551
[Rank 0] Move set Insert four operators: Duration = 0.1554
[Rank 0] Move Insert Delta_up_up: Duration = 0.0414
[Rank 0] Move Insert Delta_up_down: Duration = 0.0315
[Rank 0] Move Insert Delta_down_up: Duration = 0.0317
[Rank 0] Move Insert Delta_down_down: Duration = 0.0415
[Rank 0] Move set Remove four operators: Duration = 0.1027
[Rank 0] Move Remove Delta_up_up: Duration = 0.0201
[Rank 0] Move Remove Delta_up_down: Duration = 0.0270
[Rank 0] Move Remove Delta_down_up: Duration = 0.0267
[Rank 0] Move Remove Delta_down_down: Duration = 0.0199
[Rank 0] Move Shift one operator: Duration = 0.3320
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99779, Accepted = 13820, Rate = 0.1385
[Rank 0] Move Insert Delta_up: Proposed = 49784, Accepted = 6951, Rate = 0.1396
[Rank 0] Move Insert Delta_down: Proposed = 49995, Accepted = 6869, Rate = 0.1374
[Rank 0] Move set Remove two operators: Proposed = 99802, Accepted = 13818, Rate = 0.1385
[Rank 0] Move Remove Delta_up: Proposed = 50048, Accepted = 6854, Rate = 0.1369
[Rank 0] Move Remove Delta_down: Proposed = 49754, Accepted = 6964, Rate = 0.1400
[Rank 0] Move set Insert four operators: Proposed = 99973, Accepted = 2537, Rate = 0.0254
[Rank 0] Move Insert Delta_up_up: Proposed = 25070, Accepted = 735, Rate = 0.0293
[Rank 0] Move Insert Delta_up_down: Proposed = 24881, Accepted = 525, Rate = 0.0211
[Rank 0] Move Insert Delta_down_up: Proposed = 25062, Accepted = 514, Rate = 0.0205
[Rank 0] Move Insert Delta_down_down: Proposed = 24960, Accepted = 763, Rate = 0.0306
[Rank 0] Move set Remove four operators: Proposed = 100013, Accepted = 2538, Rate = 0.0254
[Rank 0] Move Remove Delta_up_up: Proposed = 24779, Accepted = 766, Rate = 0.0309
[Rank 0] Move Remove Delta_up_down: Proposed = 25165, Accepted = 547, Rate = 0.0217
[Rank 0] Move Remove Delta_down_up: Proposed = 24924, Accepted = 529, Rate = 0.0212
[Rank 0] Move Remove Delta_down_down: Proposed = 25145, Accepted = 696, Rate = 0.0277
[Rank 0] Move Shift one operator: Proposed = 100433, Accepted = 83092, Rate = 0.8273
Total number of measures: 10000
Total cycles (measures) / second: 1.15e+04
Average sign: 1
Average order: 8.0508
Auto-correlation time: 1.59832 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:27 22.30% done, ETA 00:00:00, cycle 1115 of 5000, 1.11e+04 cycles/sec
[Rank 0] 08:08:27 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.14e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:27 11.38% done, ETA 00:00:00, cycle 1138 of 10000, 1.14e+04 cycles/sec
[Rank 0] 08:08:28 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.15e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4392 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8699 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.15e+04
[Rank 0] Measurement durations (total = 0.0045):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0029
[Rank 0] Move durations (total = 0.8367):
[Rank 0] Move set Insert two operators: Duration = 0.1264
[Rank 0] Move Insert Delta_up: Duration = 0.0588
[Rank 0] Move Insert Delta_down: Duration = 0.0589
[Rank 0] Move set Remove two operators: Duration = 0.1183
[Rank 0] Move Remove Delta_up: Duration = 0.0550
[Rank 0] Move Remove Delta_down: Duration = 0.0548
[Rank 0] Move set Insert four operators: Duration = 0.1545
[Rank 0] Move Insert Delta_up_up: Duration = 0.0413
[Rank 0] Move Insert Delta_up_down: Duration = 0.0313
[Rank 0] Move Insert Delta_down_up: Duration = 0.0316
[Rank 0] Move Insert Delta_down_down: Duration = 0.0412
[Rank 0] Move set Remove four operators: Duration = 0.1028
[Rank 0] Move Remove Delta_up_up: Duration = 0.0200
[Rank 0] Move Remove Delta_up_down: Duration = 0.0271
[Rank 0] Move Remove Delta_down_up: Duration = 0.0268
[Rank 0] Move Remove Delta_down_down: Duration = 0.0201
[Rank 0] Move Shift one operator: Duration = 0.3347
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99824, Accepted = 13687, Rate = 0.1371
[Rank 0] Move Insert Delta_up: Proposed = 49818, Accepted = 6880, Rate = 0.1381
[Rank 0] Move Insert Delta_down: Proposed = 50006, Accepted = 6807, Rate = 0.1361
[Rank 0] Move set Remove two operators: Proposed = 99782, Accepted = 13657, Rate = 0.1369
[Rank 0] Move Remove Delta_up: Proposed = 49976, Accepted = 6844, Rate = 0.1369
[Rank 0] Move Remove Delta_down: Proposed = 49806, Accepted = 6813, Rate = 0.1368
[Rank 0] Move set Insert four operators: Proposed = 100119, Accepted = 2449, Rate = 0.0245
[Rank 0] Move Insert Delta_up_up: Proposed = 25224, Accepted = 712, Rate = 0.0282
[Rank 0] Move Insert Delta_up_down: Proposed = 24852, Accepted = 502, Rate = 0.0202
[Rank 0] Move Insert Delta_down_up: Proposed = 25033, Accepted = 530, Rate = 0.0212
[Rank 0] Move Insert Delta_down_down: Proposed = 25010, Accepted = 705, Rate = 0.0282
[Rank 0] Move set Remove four operators: Proposed = 99792, Accepted = 2464, Rate = 0.0247
[Rank 0] Move Remove Delta_up_up: Proposed = 24862, Accepted = 709, Rate = 0.0285
[Rank 0] Move Remove Delta_up_down: Proposed = 25079, Accepted = 558, Rate = 0.0222
[Rank 0] Move Remove Delta_down_up: Proposed = 24836, Accepted = 516, Rate = 0.0208
[Rank 0] Move Remove Delta_down_down: Proposed = 25015, Accepted = 681, Rate = 0.0272
[Rank 0] Move Shift one operator: Proposed = 100483, Accepted = 83596, Rate = 0.8319
Total number of measures: 10000
Total cycles (measures) / second: 1.15e+04
Average sign: 1
Average order: 8.1865
Auto-correlation time: 1.9537 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-0.5*c_dag('down',0)*c('down',0) + -0.5*c_dag('up',0)*c('up',0) + 1*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:28 23.96% done, ETA 00:00:00, cycle 1198 of 5000, 1.20e+04 cycles/sec
[Rank 0] 08:08:29 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.19e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:29 12.89% done, ETA 00:00:00, cycle 1289 of 10000, 1.29e+04 cycles/sec
[Rank 0] 08:08:29 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.20e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.4218 seconds [00:00:00]
[Rank 0] Simulation duration: 0.8348 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.20e+04
[Rank 0] Measurement durations (total = 0.0043):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0028
[Rank 0] Move durations (total = 0.8030):
[Rank 0] Move set Insert two operators: Duration = 0.1217
[Rank 0] Move Insert Delta_up: Duration = 0.0563
[Rank 0] Move Insert Delta_down: Duration = 0.0570
[Rank 0] Move set Remove two operators: Duration = 0.1135
[Rank 0] Move Remove Delta_up: Duration = 0.0527
[Rank 0] Move Remove Delta_down: Duration = 0.0527
[Rank 0] Move set Insert four operators: Duration = 0.1485
[Rank 0] Move Insert Delta_up_up: Duration = 0.0394
[Rank 0] Move Insert Delta_up_down: Duration = 0.0302
[Rank 0] Move Insert Delta_down_up: Duration = 0.0304
[Rank 0] Move Insert Delta_down_down: Duration = 0.0396
[Rank 0] Move set Remove four operators: Duration = 0.0989
[Rank 0] Move Remove Delta_up_up: Duration = 0.0191
[Rank 0] Move Remove Delta_up_down: Duration = 0.0260
[Rank 0] Move Remove Delta_down_up: Duration = 0.0259
[Rank 0] Move Remove Delta_down_down: Duration = 0.0194
[Rank 0] Move Shift one operator: Duration = 0.3204
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99996, Accepted = 13686, Rate = 0.1369
[Rank 0] Move Insert Delta_up: Proposed = 49925, Accepted = 6797, Rate = 0.1361
[Rank 0] Move Insert Delta_down: Proposed = 50071, Accepted = 6889, Rate = 0.1376
[Rank 0] Move set Remove two operators: Proposed = 99812, Accepted = 13623, Rate = 0.1365
[Rank 0] Move Remove Delta_up: Proposed = 50034, Accepted = 6809, Rate = 0.1361
[Rank 0] Move Remove Delta_down: Proposed = 49778, Accepted = 6814, Rate = 0.1369
[Rank 0] Move set Insert four operators: Proposed = 99909, Accepted = 2469, Rate = 0.0247
[Rank 0] Move Insert Delta_up_up: Proposed = 25038, Accepted = 729, Rate = 0.0291
[Rank 0] Move Insert Delta_up_down: Proposed = 24826, Accepted = 499, Rate = 0.0201
[Rank 0] Move Insert Delta_down_up: Proposed = 24968, Accepted = 517, Rate = 0.0207
[Rank 0] Move Insert Delta_down_down: Proposed = 25077, Accepted = 724, Rate = 0.0289
[Rank 0] Move set Remove four operators: Proposed = 99799, Accepted = 2500, Rate = 0.0251
[Rank 0] Move Remove Delta_up_up: Proposed = 24756, Accepted = 691, Rate = 0.0279
[Rank 0] Move Remove Delta_up_down: Proposed = 25186, Accepted = 532, Rate = 0.0211
[Rank 0] Move Remove Delta_down_up: Proposed = 24849, Accepted = 549, Rate = 0.0221
[Rank 0] Move Remove Delta_down_down: Proposed = 25008, Accepted = 728, Rate = 0.0291
[Rank 0] Move Shift one operator: Proposed = 100484, Accepted = 83485, Rate = 0.8308
Total number of measures: 10000
Total cycles (measures) / second: 1.20e+04
Average sign: 1
Average order: 8.1232
Auto-correlation time: 2.39582 cycles
U = 2.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:30 25.18% done, ETA 00:00:00, cycle 1259 of 5000, 1.26e+04 cycles/sec
[Rank 0] 08:08:30 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.28e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:30 12.72% done, ETA 00:00:00, cycle 1272 of 10000, 1.27e+04 cycles/sec
[Rank 0] 08:08:31 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.32e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3916 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7585 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.32e+04
[Rank 0] Measurement durations (total = 0.0041):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0026
[Rank 0] Move durations (total = 0.7269):
[Rank 0] Move set Insert two operators: Duration = 0.1135
[Rank 0] Move Insert Delta_up: Duration = 0.0524
[Rank 0] Move Insert Delta_down: Duration = 0.0530
[Rank 0] Move set Remove two operators: Duration = 0.1047
[Rank 0] Move Remove Delta_up: Duration = 0.0482
[Rank 0] Move Remove Delta_down: Duration = 0.0484
[Rank 0] Move set Insert four operators: Duration = 0.1426
[Rank 0] Move Insert Delta_up_up: Duration = 0.0377
[Rank 0] Move Insert Delta_up_down: Duration = 0.0291
[Rank 0] Move Insert Delta_down_up: Duration = 0.0293
[Rank 0] Move Insert Delta_down_down: Duration = 0.0380
[Rank 0] Move set Remove four operators: Duration = 0.0922
[Rank 0] Move Remove Delta_up_up: Duration = 0.0175
[Rank 0] Move Remove Delta_up_down: Duration = 0.0244
[Rank 0] Move Remove Delta_down_up: Duration = 0.0243
[Rank 0] Move Remove Delta_down_down: Duration = 0.0176
[Rank 0] Move Shift one operator: Duration = 0.2739
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99918, Accepted = 12537, Rate = 0.1255
[Rank 0] Move Insert Delta_up: Proposed = 49914, Accepted = 6247, Rate = 0.1252
[Rank 0] Move Insert Delta_down: Proposed = 50004, Accepted = 6290, Rate = 0.1258
[Rank 0] Move set Remove two operators: Proposed = 99792, Accepted = 12541, Rate = 0.1257
[Rank 0] Move Remove Delta_up: Proposed = 49852, Accepted = 6255, Rate = 0.1255
[Rank 0] Move Remove Delta_down: Proposed = 49940, Accepted = 6286, Rate = 0.1259
[Rank 0] Move set Insert four operators: Proposed = 99974, Accepted = 2468, Rate = 0.0247
[Rank 0] Move Insert Delta_up_up: Proposed = 25072, Accepted = 672, Rate = 0.0268
[Rank 0] Move Insert Delta_up_down: Proposed = 24860, Accepted = 538, Rate = 0.0216
[Rank 0] Move Insert Delta_down_up: Proposed = 24962, Accepted = 569, Rate = 0.0228
[Rank 0] Move Insert Delta_down_down: Proposed = 25080, Accepted = 689, Rate = 0.0275
[Rank 0] Move set Remove four operators: Proposed = 99751, Accepted = 2467, Rate = 0.0247
[Rank 0] Move Remove Delta_up_up: Proposed = 24764, Accepted = 667, Rate = 0.0269
[Rank 0] Move Remove Delta_up_down: Proposed = 25126, Accepted = 563, Rate = 0.0224
[Rank 0] Move Remove Delta_down_up: Proposed = 24819, Accepted = 548, Rate = 0.0221
[Rank 0] Move Remove Delta_down_down: Proposed = 25042, Accepted = 689, Rate = 0.0275
[Rank 0] Move Shift one operator: Proposed = 100565, Accepted = 70241, Rate = 0.6985
Total number of measures: 10000
Total cycles (measures) / second: 1.32e+04
Average sign: 1
Average order: 7.6646
Auto-correlation time: 2.74542 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:31 28.36% done, ETA 00:00:00, cycle 1418 of 5000, 1.42e+04 cycles/sec
[Rank 0] 08:08:31 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.39e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:31 14.15% done, ETA 00:00:00, cycle 1415 of 10000, 1.41e+04 cycles/sec
[Rank 0] 08:08:32 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.39e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3597 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7220 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.39e+04
[Rank 0] Measurement durations (total = 0.0038):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0024
[Rank 0] Move durations (total = 0.6920):
[Rank 0] Move set Insert two operators: Duration = 0.1095
[Rank 0] Move Insert Delta_up: Duration = 0.0507
[Rank 0] Move Insert Delta_down: Duration = 0.0509
[Rank 0] Move set Remove two operators: Duration = 0.1005
[Rank 0] Move Remove Delta_up: Duration = 0.0466
[Rank 0] Move Remove Delta_down: Duration = 0.0463
[Rank 0] Move set Insert four operators: Duration = 0.1375
[Rank 0] Move Insert Delta_up_up: Duration = 0.0365
[Rank 0] Move Insert Delta_up_down: Duration = 0.0280
[Rank 0] Move Insert Delta_down_up: Duration = 0.0282
[Rank 0] Move Insert Delta_down_down: Duration = 0.0364
[Rank 0] Move set Remove four operators: Duration = 0.0883
[Rank 0] Move Remove Delta_up_up: Duration = 0.0167
[Rank 0] Move Remove Delta_up_down: Duration = 0.0236
[Rank 0] Move Remove Delta_down_up: Duration = 0.0233
[Rank 0] Move Remove Delta_down_down: Duration = 0.0167
[Rank 0] Move Shift one operator: Duration = 0.2563
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99626, Accepted = 13005, Rate = 0.1305
[Rank 0] Move Insert Delta_up: Proposed = 49826, Accepted = 6545, Rate = 0.1314
[Rank 0] Move Insert Delta_down: Proposed = 49800, Accepted = 6460, Rate = 0.1297
[Rank 0] Move set Remove two operators: Proposed = 99706, Accepted = 12988, Rate = 0.1303
[Rank 0] Move Remove Delta_up: Proposed = 49881, Accepted = 6536, Rate = 0.1310
[Rank 0] Move Remove Delta_down: Proposed = 49825, Accepted = 6452, Rate = 0.1295
[Rank 0] Move set Insert four operators: Proposed = 100161, Accepted = 2710, Rate = 0.0271
[Rank 0] Move Insert Delta_up_up: Proposed = 25240, Accepted = 755, Rate = 0.0299
[Rank 0] Move Insert Delta_up_down: Proposed = 24943, Accepted = 594, Rate = 0.0238
[Rank 0] Move Insert Delta_down_up: Proposed = 24913, Accepted = 635, Rate = 0.0255
[Rank 0] Move Insert Delta_down_down: Proposed = 25065, Accepted = 726, Rate = 0.0290
[Rank 0] Move set Remove four operators: Proposed = 99923, Accepted = 2717, Rate = 0.0272
[Rank 0] Move Remove Delta_up_up: Proposed = 24922, Accepted = 741, Rate = 0.0297
[Rank 0] Move Remove Delta_up_down: Proposed = 25133, Accepted = 651, Rate = 0.0259
[Rank 0] Move Remove Delta_down_up: Proposed = 24747, Accepted = 614, Rate = 0.0248
[Rank 0] Move Remove Delta_down_down: Proposed = 25121, Accepted = 711, Rate = 0.0283
[Rank 0] Move Shift one operator: Proposed = 100584, Accepted = 68245, Rate = 0.6785
Total number of measures: 10000
Total cycles (measures) / second: 1.39e+04
Average sign: 1
Average order: 7.3414
Auto-correlation time: 2.24914 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:32 26.16% done, ETA 00:00:00, cycle 1308 of 5000, 1.31e+04 cycles/sec
[Rank 0] 08:08:32 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.34e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:32 14.12% done, ETA 00:00:00, cycle 1412 of 10000, 1.41e+04 cycles/sec
[Rank 0] 08:08:33 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.35e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3719 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7428 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.35e+04
[Rank 0] Measurement durations (total = 0.0040):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0025
[Rank 0] Move durations (total = 0.7120):
[Rank 0] Move set Insert two operators: Duration = 0.1122
[Rank 0] Move Insert Delta_up: Duration = 0.0521
[Rank 0] Move Insert Delta_down: Duration = 0.0521
[Rank 0] Move set Remove two operators: Duration = 0.1030
[Rank 0] Move Remove Delta_up: Duration = 0.0477
[Rank 0] Move Remove Delta_down: Duration = 0.0474
[Rank 0] Move set Insert four operators: Duration = 0.1407
[Rank 0] Move Insert Delta_up_up: Duration = 0.0373
[Rank 0] Move Insert Delta_up_down: Duration = 0.0288
[Rank 0] Move Insert Delta_down_up: Duration = 0.0289
[Rank 0] Move Insert Delta_down_down: Duration = 0.0372
[Rank 0] Move set Remove four operators: Duration = 0.0902
[Rank 0] Move Remove Delta_up_up: Duration = 0.0169
[Rank 0] Move Remove Delta_up_down: Duration = 0.0240
[Rank 0] Move Remove Delta_down_up: Duration = 0.0241
[Rank 0] Move Remove Delta_down_down: Duration = 0.0170
[Rank 0] Move Shift one operator: Duration = 0.2657
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100085, Accepted = 12788, Rate = 0.1278
[Rank 0] Move Insert Delta_up: Proposed = 50010, Accepted = 6447, Rate = 0.1289
[Rank 0] Move Insert Delta_down: Proposed = 50075, Accepted = 6341, Rate = 0.1266
[Rank 0] Move set Remove two operators: Proposed = 99633, Accepted = 12775, Rate = 0.1282
[Rank 0] Move Remove Delta_up: Proposed = 49818, Accepted = 6451, Rate = 0.1295
[Rank 0] Move Remove Delta_down: Proposed = 49815, Accepted = 6324, Rate = 0.1269
[Rank 0] Move set Insert four operators: Proposed = 100176, Accepted = 2571, Rate = 0.0257
[Rank 0] Move Insert Delta_up_up: Proposed = 25086, Accepted = 710, Rate = 0.0283
[Rank 0] Move Insert Delta_up_down: Proposed = 24920, Accepted = 583, Rate = 0.0234
[Rank 0] Move Insert Delta_down_up: Proposed = 25108, Accepted = 585, Rate = 0.0233
[Rank 0] Move Insert Delta_down_down: Proposed = 25062, Accepted = 693, Rate = 0.0277
[Rank 0] Move set Remove four operators: Proposed = 99605, Accepted = 2578, Rate = 0.0259
[Rank 0] Move Remove Delta_up_up: Proposed = 24716, Accepted = 687, Rate = 0.0278
[Rank 0] Move Remove Delta_up_down: Proposed = 25047, Accepted = 588, Rate = 0.0235
[Rank 0] Move Remove Delta_down_up: Proposed = 24905, Accepted = 624, Rate = 0.0251
[Rank 0] Move Remove Delta_down_down: Proposed = 24937, Accepted = 679, Rate = 0.0272
[Rank 0] Move Shift one operator: Proposed = 100501, Accepted = 68770, Rate = 0.6843
Total number of measures: 10000
Total cycles (measures) / second: 1.35e+04
Average sign: 1
Average order: 7.4618
Auto-correlation time: 2.50645 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:33 26.30% done, ETA 00:00:00, cycle 1315 of 5000, 1.31e+04 cycles/sec
[Rank 0] 08:08:33 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.37e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:33 13.95% done, ETA 00:00:00, cycle 1395 of 10000, 1.39e+04 cycles/sec
[Rank 0] 08:08:34 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.36e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3638 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7333 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.36e+04
[Rank 0] Measurement durations (total = 0.0039):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0024
[Rank 0] Move durations (total = 0.7029):
[Rank 0] Move set Insert two operators: Duration = 0.1120
[Rank 0] Move Insert Delta_up: Duration = 0.0518
[Rank 0] Move Insert Delta_down: Duration = 0.0523
[Rank 0] Move set Remove two operators: Duration = 0.1030
[Rank 0] Move Remove Delta_up: Duration = 0.0476
[Rank 0] Move Remove Delta_down: Duration = 0.0476
[Rank 0] Move set Insert four operators: Duration = 0.1393
[Rank 0] Move Insert Delta_up_up: Duration = 0.0367
[Rank 0] Move Insert Delta_up_down: Duration = 0.0285
[Rank 0] Move Insert Delta_down_up: Duration = 0.0288
[Rank 0] Move Insert Delta_down_down: Duration = 0.0371
[Rank 0] Move set Remove four operators: Duration = 0.0895
[Rank 0] Move Remove Delta_up_up: Duration = 0.0165
[Rank 0] Move Remove Delta_up_down: Duration = 0.0239
[Rank 0] Move Remove Delta_down_up: Duration = 0.0238
[Rank 0] Move Remove Delta_down_down: Duration = 0.0171
[Rank 0] Move Shift one operator: Duration = 0.2591
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99841, Accepted = 13149, Rate = 0.1317
[Rank 0] Move Insert Delta_up: Proposed = 49905, Accepted = 6519, Rate = 0.1306
[Rank 0] Move Insert Delta_down: Proposed = 49936, Accepted = 6630, Rate = 0.1328
[Rank 0] Move set Remove two operators: Proposed = 100099, Accepted = 13056, Rate = 0.1304
[Rank 0] Move Remove Delta_up: Proposed = 50109, Accepted = 6488, Rate = 0.1295
[Rank 0] Move Remove Delta_down: Proposed = 49990, Accepted = 6568, Rate = 0.1314
[Rank 0] Move set Insert four operators: Proposed = 99717, Accepted = 2708, Rate = 0.0272
[Rank 0] Move Insert Delta_up_up: Proposed = 25010, Accepted = 705, Rate = 0.0282
[Rank 0] Move Insert Delta_up_down: Proposed = 24729, Accepted = 640, Rate = 0.0259
[Rank 0] Move Insert Delta_down_up: Proposed = 24992, Accepted = 622, Rate = 0.0249
[Rank 0] Move Insert Delta_down_down: Proposed = 24986, Accepted = 741, Rate = 0.0297
[Rank 0] Move set Remove four operators: Proposed = 99848, Accepted = 2751, Rate = 0.0276
[Rank 0] Move Remove Delta_up_up: Proposed = 24768, Accepted = 712, Rate = 0.0287
[Rank 0] Move Remove Delta_up_down: Proposed = 25121, Accepted = 643, Rate = 0.0256
[Rank 0] Move Remove Delta_down_up: Proposed = 24918, Accepted = 631, Rate = 0.0253
[Rank 0] Move Remove Delta_down_down: Proposed = 25041, Accepted = 765, Rate = 0.0305
[Rank 0] Move Shift one operator: Proposed = 100495, Accepted = 67540, Rate = 0.6721
Total number of measures: 10000
Total cycles (measures) / second: 1.36e+04
Average sign: 1
Average order: 7.2379
Auto-correlation time: 2.44745 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:34 25.60% done, ETA 00:00:00, cycle 1280 of 5000, 1.28e+04 cycles/sec
[Rank 0] 08:08:34 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.35e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:35 13.27% done, ETA 00:00:00, cycle 1327 of 10000, 1.33e+04 cycles/sec
[Rank 0] 08:08:35 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.37e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3716 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7286 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.37e+04
[Rank 0] Measurement durations (total = 0.0038):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0023
[Rank 0] Move durations (total = 0.6984):
[Rank 0] Move set Insert two operators: Duration = 0.1113
[Rank 0] Move Insert Delta_up: Duration = 0.0518
[Rank 0] Move Insert Delta_down: Duration = 0.0515
[Rank 0] Move set Remove two operators: Duration = 0.1015
[Rank 0] Move Remove Delta_up: Duration = 0.0473
[Rank 0] Move Remove Delta_down: Duration = 0.0466
[Rank 0] Move set Insert four operators: Duration = 0.1388
[Rank 0] Move Insert Delta_up_up: Duration = 0.0368
[Rank 0] Move Insert Delta_up_down: Duration = 0.0284
[Rank 0] Move Insert Delta_down_up: Duration = 0.0286
[Rank 0] Move Insert Delta_down_down: Duration = 0.0366
[Rank 0] Move set Remove four operators: Duration = 0.0891
[Rank 0] Move Remove Delta_up_up: Duration = 0.0167
[Rank 0] Move Remove Delta_up_down: Duration = 0.0237
[Rank 0] Move Remove Delta_down_up: Duration = 0.0236
[Rank 0] Move Remove Delta_down_down: Duration = 0.0170
[Rank 0] Move Shift one operator: Duration = 0.2577
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100177, Accepted = 13180, Rate = 0.1316
[Rank 0] Move Insert Delta_up: Proposed = 50017, Accepted = 6688, Rate = 0.1337
[Rank 0] Move Insert Delta_down: Proposed = 50160, Accepted = 6492, Rate = 0.1294
[Rank 0] Move set Remove two operators: Proposed = 99676, Accepted = 13024, Rate = 0.1307
[Rank 0] Move Remove Delta_up: Proposed = 49861, Accepted = 6637, Rate = 0.1331
[Rank 0] Move Remove Delta_down: Proposed = 49815, Accepted = 6387, Rate = 0.1282
[Rank 0] Move set Insert four operators: Proposed = 100070, Accepted = 2762, Rate = 0.0276
[Rank 0] Move Insert Delta_up_up: Proposed = 25117, Accepted = 770, Rate = 0.0307
[Rank 0] Move Insert Delta_up_down: Proposed = 24907, Accepted = 635, Rate = 0.0255
[Rank 0] Move Insert Delta_down_up: Proposed = 25034, Accepted = 644, Rate = 0.0257
[Rank 0] Move Insert Delta_down_down: Proposed = 25012, Accepted = 713, Rate = 0.0285
[Rank 0] Move set Remove four operators: Proposed = 99658, Accepted = 2837, Rate = 0.0285
[Rank 0] Move Remove Delta_up_up: Proposed = 24818, Accepted = 785, Rate = 0.0316
[Rank 0] Move Remove Delta_up_down: Proposed = 25071, Accepted = 634, Rate = 0.0253
[Rank 0] Move Remove Delta_down_up: Proposed = 24799, Accepted = 664, Rate = 0.0268
[Rank 0] Move Remove Delta_down_down: Proposed = 24970, Accepted = 754, Rate = 0.0302
[Rank 0] Move Shift one operator: Proposed = 100419, Accepted = 68049, Rate = 0.6777
Total number of measures: 10000
Total cycles (measures) / second: 1.37e+04
Average sign: 1
Average order: 7.2701
Auto-correlation time: 1.83844 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:35 26.34% done, ETA 00:00:00, cycle 1317 of 5000, 1.32e+04 cycles/sec
[Rank 0] 08:08:36 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.37e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:36 13.80% done, ETA 00:00:00, cycle 1380 of 10000, 1.38e+04 cycles/sec
[Rank 0] 08:08:36 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.35e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3644 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7389 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.35e+04
[Rank 0] Measurement durations (total = 0.0040):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0026
[Rank 0] Move durations (total = 0.7084):
[Rank 0] Move set Insert two operators: Duration = 0.1115
[Rank 0] Move Insert Delta_up: Duration = 0.0517
[Rank 0] Move Insert Delta_down: Duration = 0.0520
[Rank 0] Move set Remove two operators: Duration = 0.1030
[Rank 0] Move Remove Delta_up: Duration = 0.0476
[Rank 0] Move Remove Delta_down: Duration = 0.0475
[Rank 0] Move set Insert four operators: Duration = 0.1404
[Rank 0] Move Insert Delta_up_up: Duration = 0.0375
[Rank 0] Move Insert Delta_up_down: Duration = 0.0286
[Rank 0] Move Insert Delta_down_up: Duration = 0.0289
[Rank 0] Move Insert Delta_down_down: Duration = 0.0372
[Rank 0] Move set Remove four operators: Duration = 0.0905
[Rank 0] Move Remove Delta_up_up: Duration = 0.0170
[Rank 0] Move Remove Delta_up_down: Duration = 0.0241
[Rank 0] Move Remove Delta_down_up: Duration = 0.0238
[Rank 0] Move Remove Delta_down_down: Duration = 0.0171
[Rank 0] Move Shift one operator: Duration = 0.2630
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100072, Accepted = 12791, Rate = 0.1278
[Rank 0] Move Insert Delta_up: Proposed = 50038, Accepted = 6398, Rate = 0.1279
[Rank 0] Move Insert Delta_down: Proposed = 50034, Accepted = 6393, Rate = 0.1278
[Rank 0] Move set Remove two operators: Proposed = 99870, Accepted = 12843, Rate = 0.1286
[Rank 0] Move Remove Delta_up: Proposed = 50014, Accepted = 6443, Rate = 0.1288
[Rank 0] Move Remove Delta_down: Proposed = 49856, Accepted = 6400, Rate = 0.1284
[Rank 0] Move set Insert four operators: Proposed = 100066, Accepted = 2710, Rate = 0.0271
[Rank 0] Move Insert Delta_up_up: Proposed = 25206, Accepted = 763, Rate = 0.0303
[Rank 0] Move Insert Delta_up_down: Proposed = 24889, Accepted = 608, Rate = 0.0244
[Rank 0] Move Insert Delta_down_up: Proposed = 24926, Accepted = 624, Rate = 0.0250
[Rank 0] Move Insert Delta_down_down: Proposed = 25045, Accepted = 715, Rate = 0.0285
[Rank 0] Move set Remove four operators: Proposed = 99821, Accepted = 2682, Rate = 0.0269
[Rank 0] Move Remove Delta_up_up: Proposed = 24788, Accepted = 728, Rate = 0.0294
[Rank 0] Move Remove Delta_up_down: Proposed = 25159, Accepted = 634, Rate = 0.0252
[Rank 0] Move Remove Delta_down_up: Proposed = 24811, Accepted = 620, Rate = 0.0250
[Rank 0] Move Remove Delta_down_down: Proposed = 25063, Accepted = 700, Rate = 0.0279
[Rank 0] Move Shift one operator: Proposed = 100171, Accepted = 68184, Rate = 0.6807
Total number of measures: 10000
Total cycles (measures) / second: 1.35e+04
Average sign: 1
Average order: 7.4495
Auto-correlation time: 2.98708 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:36 26.46% done, ETA 00:00:00, cycle 1323 of 5000, 1.32e+04 cycles/sec
[Rank 0] 08:08:37 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.38e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:37 14.43% done, ETA 00:00:00, cycle 1443 of 10000, 1.44e+04 cycles/sec
[Rank 0] 08:08:37 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.32e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3625 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7576 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.32e+04
[Rank 0] Measurement durations (total = 0.0040):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0025
[Rank 0] Move durations (total = 0.7260):
[Rank 0] Move set Insert two operators: Duration = 0.1148
[Rank 0] Move Insert Delta_up: Duration = 0.0532
[Rank 0] Move Insert Delta_down: Duration = 0.0535
[Rank 0] Move set Remove two operators: Duration = 0.1054
[Rank 0] Move Remove Delta_up: Duration = 0.0486
[Rank 0] Move Remove Delta_down: Duration = 0.0488
[Rank 0] Move set Insert four operators: Duration = 0.1436
[Rank 0] Move Insert Delta_up_up: Duration = 0.0381
[Rank 0] Move Insert Delta_up_down: Duration = 0.0294
[Rank 0] Move Insert Delta_down_up: Duration = 0.0296
[Rank 0] Move Insert Delta_down_down: Duration = 0.0382
[Rank 0] Move set Remove four operators: Duration = 0.0927
[Rank 0] Move Remove Delta_up_up: Duration = 0.0173
[Rank 0] Move Remove Delta_up_down: Duration = 0.0247
[Rank 0] Move Remove Delta_down_up: Duration = 0.0246
[Rank 0] Move Remove Delta_down_down: Duration = 0.0175
[Rank 0] Move Shift one operator: Duration = 0.2695
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100067, Accepted = 12872, Rate = 0.1286
[Rank 0] Move Insert Delta_up: Proposed = 50045, Accepted = 6425, Rate = 0.1284
[Rank 0] Move Insert Delta_down: Proposed = 50022, Accepted = 6447, Rate = 0.1289
[Rank 0] Move set Remove two operators: Proposed = 99557, Accepted = 12845, Rate = 0.1290
[Rank 0] Move Remove Delta_up: Proposed = 49876, Accepted = 6427, Rate = 0.1289
[Rank 0] Move Remove Delta_down: Proposed = 49681, Accepted = 6418, Rate = 0.1292
[Rank 0] Move set Insert four operators: Proposed = 100097, Accepted = 2650, Rate = 0.0265
[Rank 0] Move Insert Delta_up_up: Proposed = 25111, Accepted = 723, Rate = 0.0288
[Rank 0] Move Insert Delta_up_down: Proposed = 24940, Accepted = 587, Rate = 0.0235
[Rank 0] Move Insert Delta_down_up: Proposed = 25035, Accepted = 595, Rate = 0.0238
[Rank 0] Move Insert Delta_down_down: Proposed = 25011, Accepted = 745, Rate = 0.0298
[Rank 0] Move set Remove four operators: Proposed = 99835, Accepted = 2663, Rate = 0.0267
[Rank 0] Move Remove Delta_up_up: Proposed = 24731, Accepted = 683, Rate = 0.0276
[Rank 0] Move Remove Delta_up_down: Proposed = 25182, Accepted = 638, Rate = 0.0253
[Rank 0] Move Remove Delta_down_up: Proposed = 24904, Accepted = 621, Rate = 0.0249
[Rank 0] Move Remove Delta_down_down: Proposed = 25018, Accepted = 721, Rate = 0.0288
[Rank 0] Move Shift one operator: Proposed = 100444, Accepted = 68457, Rate = 0.6815
Total number of measures: 10000
Total cycles (measures) / second: 1.32e+04
Average sign: 1
Average order: 7.4043
Auto-correlation time: 1.80417 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:38 27.50% done, ETA 00:00:00, cycle 1375 of 5000, 1.37e+04 cycles/sec
[Rank 0] 08:08:38 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.39e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:38 13.95% done, ETA 00:00:00, cycle 1395 of 10000, 1.39e+04 cycles/sec
[Rank 0] 08:08:39 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.33e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3593 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7506 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.33e+04
[Rank 0] Measurement durations (total = 0.0040):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0003
[Rank 0] Measure G_tau measure: Duration = 0.0025
[Rank 0] Move durations (total = 0.7193):
[Rank 0] Move set Insert two operators: Duration = 0.1146
[Rank 0] Move Insert Delta_up: Duration = 0.0532
[Rank 0] Move Insert Delta_down: Duration = 0.0533
[Rank 0] Move set Remove two operators: Duration = 0.1043
[Rank 0] Move Remove Delta_up: Duration = 0.0481
[Rank 0] Move Remove Delta_down: Duration = 0.0482
[Rank 0] Move set Insert four operators: Duration = 0.1427
[Rank 0] Move Insert Delta_up_up: Duration = 0.0381
[Rank 0] Move Insert Delta_up_down: Duration = 0.0291
[Rank 0] Move Insert Delta_down_up: Duration = 0.0291
[Rank 0] Move Insert Delta_down_down: Duration = 0.0378
[Rank 0] Move set Remove four operators: Duration = 0.0919
[Rank 0] Move Remove Delta_up_up: Duration = 0.0173
[Rank 0] Move Remove Delta_up_down: Duration = 0.0246
[Rank 0] Move Remove Delta_down_up: Duration = 0.0244
[Rank 0] Move Remove Delta_down_down: Duration = 0.0170
[Rank 0] Move Shift one operator: Duration = 0.2659
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99756, Accepted = 13190, Rate = 0.1322
[Rank 0] Move Insert Delta_up: Proposed = 49909, Accepted = 6608, Rate = 0.1324
[Rank 0] Move Insert Delta_down: Proposed = 49847, Accepted = 6582, Rate = 0.1320
[Rank 0] Move set Remove two operators: Proposed = 99730, Accepted = 12951, Rate = 0.1299
[Rank 0] Move Remove Delta_up: Proposed = 49838, Accepted = 6455, Rate = 0.1295
[Rank 0] Move Remove Delta_down: Proposed = 49892, Accepted = 6496, Rate = 0.1302
[Rank 0] Move set Insert four operators: Proposed = 100014, Accepted = 2699, Rate = 0.0270
[Rank 0] Move Insert Delta_up_up: Proposed = 25173, Accepted = 768, Rate = 0.0305
[Rank 0] Move Insert Delta_up_down: Proposed = 24864, Accepted = 606, Rate = 0.0244
[Rank 0] Move Insert Delta_down_up: Proposed = 24987, Accepted = 594, Rate = 0.0238
[Rank 0] Move Insert Delta_down_down: Proposed = 24990, Accepted = 731, Rate = 0.0293
[Rank 0] Move set Remove four operators: Proposed = 99877, Accepted = 2818, Rate = 0.0282
[Rank 0] Move Remove Delta_up_up: Proposed = 24849, Accepted = 770, Rate = 0.0310
[Rank 0] Move Remove Delta_up_down: Proposed = 25147, Accepted = 695, Rate = 0.0276
[Rank 0] Move Remove Delta_down_up: Proposed = 24918, Accepted = 656, Rate = 0.0263
[Rank 0] Move Remove Delta_down_down: Proposed = 24963, Accepted = 697, Rate = 0.0279
[Rank 0] Move Shift one operator: Proposed = 100623, Accepted = 68190, Rate = 0.6777
Total number of measures: 10000
Total cycles (measures) / second: 1.33e+04
Average sign: 1
Average order: 7.242
Auto-correlation time: 1.95893 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:39 26.44% done, ETA 00:00:00, cycle 1322 of 5000, 1.32e+04 cycles/sec
[Rank 0] 08:08:39 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.32e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:39 13.44% done, ETA 00:00:00, cycle 1344 of 10000, 1.34e+04 cycles/sec
[Rank 0] 08:08:40 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.30e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3794 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7664 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.30e+04
[Rank 0] Measurement durations (total = 0.0041):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0025
[Rank 0] Move durations (total = 0.7342):
[Rank 0] Move set Insert two operators: Duration = 0.1172
[Rank 0] Move Insert Delta_up: Duration = 0.0542
[Rank 0] Move Insert Delta_down: Duration = 0.0545
[Rank 0] Move set Remove two operators: Duration = 0.1073
[Rank 0] Move Remove Delta_up: Duration = 0.0496
[Rank 0] Move Remove Delta_down: Duration = 0.0494
[Rank 0] Move set Insert four operators: Duration = 0.1461
[Rank 0] Move Insert Delta_up_up: Duration = 0.0385
[Rank 0] Move Insert Delta_up_down: Duration = 0.0299
[Rank 0] Move Insert Delta_down_up: Duration = 0.0299
[Rank 0] Move Insert Delta_down_down: Duration = 0.0390
[Rank 0] Move set Remove four operators: Duration = 0.0937
[Rank 0] Move Remove Delta_up_up: Duration = 0.0176
[Rank 0] Move Remove Delta_up_down: Duration = 0.0248
[Rank 0] Move Remove Delta_down_up: Duration = 0.0248
[Rank 0] Move Remove Delta_down_down: Duration = 0.0179
[Rank 0] Move Shift one operator: Duration = 0.2699
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100132, Accepted = 13111, Rate = 0.1309
[Rank 0] Move Insert Delta_up: Proposed = 50028, Accepted = 6616, Rate = 0.1322
[Rank 0] Move Insert Delta_down: Proposed = 50104, Accepted = 6495, Rate = 0.1296
[Rank 0] Move set Remove two operators: Proposed = 99729, Accepted = 13088, Rate = 0.1312
[Rank 0] Move Remove Delta_up: Proposed = 49884, Accepted = 6587, Rate = 0.1320
[Rank 0] Move Remove Delta_down: Proposed = 49845, Accepted = 6501, Rate = 0.1304
[Rank 0] Move set Insert four operators: Proposed = 99975, Accepted = 2765, Rate = 0.0277
[Rank 0] Move Insert Delta_up_up: Proposed = 25038, Accepted = 747, Rate = 0.0298
[Rank 0] Move Insert Delta_up_down: Proposed = 24906, Accepted = 645, Rate = 0.0259
[Rank 0] Move Insert Delta_down_up: Proposed = 25004, Accepted = 614, Rate = 0.0246
[Rank 0] Move Insert Delta_down_down: Proposed = 25027, Accepted = 759, Rate = 0.0303
[Rank 0] Move set Remove four operators: Proposed = 99781, Accepted = 2773, Rate = 0.0278
[Rank 0] Move Remove Delta_up_up: Proposed = 24779, Accepted = 759, Rate = 0.0306
[Rank 0] Move Remove Delta_up_down: Proposed = 25115, Accepted = 626, Rate = 0.0249
[Rank 0] Move Remove Delta_down_up: Proposed = 24811, Accepted = 635, Rate = 0.0256
[Rank 0] Move Remove Delta_down_down: Proposed = 25076, Accepted = 753, Rate = 0.0300
[Rank 0] Move Shift one operator: Proposed = 100383, Accepted = 67775, Rate = 0.6752
Total number of measures: 10000
Total cycles (measures) / second: 1.30e+04
Average sign: 1
Average order: 7.2563
Auto-correlation time: 1.86774 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1*c_dag('down',0)*c('down',0) + -1*c_dag('up',0)*c('up',0) + 2*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:40 27.16% done, ETA 00:00:00, cycle 1358 of 5000, 1.36e+04 cycles/sec
[Rank 0] 08:08:40 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.37e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:40 14.01% done, ETA 00:00:00, cycle 1401 of 10000, 1.40e+04 cycles/sec
[Rank 0] 08:08:41 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.34e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3650 seconds [00:00:00]
[Rank 0] Simulation duration: 0.7444 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.34e+04
[Rank 0] Measurement durations (total = 0.0040):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0026
[Rank 0] Move durations (total = 0.7133):
[Rank 0] Move set Insert two operators: Duration = 0.1133
[Rank 0] Move Insert Delta_up: Duration = 0.0526
[Rank 0] Move Insert Delta_down: Duration = 0.0527
[Rank 0] Move set Remove two operators: Duration = 0.1039
[Rank 0] Move Remove Delta_up: Duration = 0.0480
[Rank 0] Move Remove Delta_down: Duration = 0.0480
[Rank 0] Move set Insert four operators: Duration = 0.1416
[Rank 0] Move Insert Delta_up_up: Duration = 0.0376
[Rank 0] Move Insert Delta_up_down: Duration = 0.0289
[Rank 0] Move Insert Delta_down_up: Duration = 0.0292
[Rank 0] Move Insert Delta_down_down: Duration = 0.0376
[Rank 0] Move set Remove four operators: Duration = 0.0905
[Rank 0] Move Remove Delta_up_up: Duration = 0.0170
[Rank 0] Move Remove Delta_up_down: Duration = 0.0240
[Rank 0] Move Remove Delta_down_up: Duration = 0.0241
[Rank 0] Move Remove Delta_down_down: Duration = 0.0170
[Rank 0] Move Shift one operator: Duration = 0.2640
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99860, Accepted = 13082, Rate = 0.1310
[Rank 0] Move Insert Delta_up: Proposed = 49814, Accepted = 6551, Rate = 0.1315
[Rank 0] Move Insert Delta_down: Proposed = 50046, Accepted = 6531, Rate = 0.1305
[Rank 0] Move set Remove two operators: Proposed = 99585, Accepted = 13024, Rate = 0.1308
[Rank 0] Move Remove Delta_up: Proposed = 49836, Accepted = 6515, Rate = 0.1307
[Rank 0] Move Remove Delta_down: Proposed = 49749, Accepted = 6509, Rate = 0.1308
[Rank 0] Move set Insert four operators: Proposed = 100164, Accepted = 2643, Rate = 0.0264
[Rank 0] Move Insert Delta_up_up: Proposed = 25143, Accepted = 731, Rate = 0.0291
[Rank 0] Move Insert Delta_up_down: Proposed = 24880, Accepted = 576, Rate = 0.0232
[Rank 0] Move Insert Delta_down_up: Proposed = 25081, Accepted = 628, Rate = 0.0250
[Rank 0] Move Insert Delta_down_down: Proposed = 25060, Accepted = 708, Rate = 0.0283
[Rank 0] Move set Remove four operators: Proposed = 99880, Accepted = 2673, Rate = 0.0268
[Rank 0] Move Remove Delta_up_up: Proposed = 24853, Accepted = 739, Rate = 0.0297
[Rank 0] Move Remove Delta_up_down: Proposed = 25061, Accepted = 607, Rate = 0.0242
[Rank 0] Move Remove Delta_down_up: Proposed = 24989, Accepted = 619, Rate = 0.0248
[Rank 0] Move Remove Delta_down_down: Proposed = 24977, Accepted = 708, Rate = 0.0283
[Rank 0] Move Shift one operator: Proposed = 100511, Accepted = 68047, Rate = 0.6770
Total number of measures: 10000
Total cycles (measures) / second: 1.34e+04
Average sign: 1
Average order: 7.3268
Auto-correlation time: 2.24681 cycles
U = 3.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:41 27.76% done, ETA 00:00:00, cycle 1388 of 5000, 1.39e+04 cycles/sec
[Rank 0] 08:08:41 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.48e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:41 14.29% done, ETA 00:00:00, cycle 1429 of 10000, 1.43e+04 cycles/sec
[Rank 0] 08:08:42 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.45e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3389 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6906 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.45e+04
[Rank 0] Measurement durations (total = 0.0039):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0024
[Rank 0] Move durations (total = 0.6599):
[Rank 0] Move set Insert two operators: Duration = 0.1069
[Rank 0] Move Insert Delta_up: Duration = 0.0494
[Rank 0] Move Insert Delta_down: Duration = 0.0494
[Rank 0] Move set Remove two operators: Duration = 0.0959
[Rank 0] Move Remove Delta_up: Duration = 0.0440
[Rank 0] Move Remove Delta_down: Duration = 0.0439
[Rank 0] Move set Insert four operators: Duration = 0.1385
[Rank 0] Move Insert Delta_up_up: Duration = 0.0364
[Rank 0] Move Insert Delta_up_down: Duration = 0.0282
[Rank 0] Move Insert Delta_down_up: Duration = 0.0285
[Rank 0] Move Insert Delta_down_down: Duration = 0.0368
[Rank 0] Move set Remove four operators: Duration = 0.0858
[Rank 0] Move Remove Delta_up_up: Duration = 0.0156
[Rank 0] Move Remove Delta_up_down: Duration = 0.0229
[Rank 0] Move Remove Delta_down_up: Duration = 0.0228
[Rank 0] Move Remove Delta_down_down: Duration = 0.0160
[Rank 0] Move Shift one operator: Duration = 0.2328
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100047, Accepted = 11230, Rate = 0.1122
[Rank 0] Move Insert Delta_up: Proposed = 50045, Accepted = 5695, Rate = 0.1138
[Rank 0] Move Insert Delta_down: Proposed = 50002, Accepted = 5535, Rate = 0.1107
[Rank 0] Move set Remove two operators: Proposed = 99692, Accepted = 11118, Rate = 0.1115
[Rank 0] Move Remove Delta_up: Proposed = 49862, Accepted = 5605, Rate = 0.1124
[Rank 0] Move Remove Delta_down: Proposed = 49830, Accepted = 5513, Rate = 0.1106
[Rank 0] Move set Insert four operators: Proposed = 99922, Accepted = 2260, Rate = 0.0226
[Rank 0] Move Insert Delta_up_up: Proposed = 24913, Accepted = 592, Rate = 0.0238
[Rank 0] Move Insert Delta_up_down: Proposed = 24974, Accepted = 514, Rate = 0.0206
[Rank 0] Move Insert Delta_down_up: Proposed = 25086, Accepted = 548, Rate = 0.0218
[Rank 0] Move Insert Delta_down_down: Proposed = 24949, Accepted = 606, Rate = 0.0243
[Rank 0] Move set Remove four operators: Proposed = 99815, Accepted = 2316, Rate = 0.0232
[Rank 0] Move Remove Delta_up_up: Proposed = 24883, Accepted = 610, Rate = 0.0245
[Rank 0] Move Remove Delta_up_down: Proposed = 25112, Accepted = 555, Rate = 0.0221
[Rank 0] Move Remove Delta_down_up: Proposed = 24771, Accepted = 560, Rate = 0.0226
[Rank 0] Move Remove Delta_down_down: Proposed = 25049, Accepted = 591, Rate = 0.0236
[Rank 0] Move Shift one operator: Proposed = 100524, Accepted = 57191, Rate = 0.5689
Total number of measures: 10000
Total cycles (measures) / second: 1.45e+04
Average sign: 1
Average order: 7.0545
Auto-correlation time: 2.23158 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:42 30.08% done, ETA 00:00:00, cycle 1504 of 5000, 1.50e+04 cycles/sec
[Rank 0] 08:08:42 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.59e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:42 14.65% done, ETA 00:00:00, cycle 1465 of 10000, 1.46e+04 cycles/sec
[Rank 0] 08:08:43 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.54e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3144 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6478 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.54e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6168):
[Rank 0] Move set Insert two operators: Duration = 0.1045
[Rank 0] Move Insert Delta_up: Duration = 0.0479
[Rank 0] Move Insert Delta_down: Duration = 0.0484
[Rank 0] Move set Remove two operators: Duration = 0.0924
[Rank 0] Move Remove Delta_up: Duration = 0.0419
[Rank 0] Move Remove Delta_down: Duration = 0.0423
[Rank 0] Move set Insert four operators: Duration = 0.1335
[Rank 0] Move Insert Delta_up_up: Duration = 0.0349
[Rank 0] Move Insert Delta_up_down: Duration = 0.0274
[Rank 0] Move Insert Delta_down_up: Duration = 0.0278
[Rank 0] Move Insert Delta_down_down: Duration = 0.0350
[Rank 0] Move set Remove four operators: Duration = 0.0793
[Rank 0] Move Remove Delta_up_up: Duration = 0.0138
[Rank 0] Move Remove Delta_up_down: Duration = 0.0217
[Rank 0] Move Remove Delta_down_up: Duration = 0.0214
[Rank 0] Move Remove Delta_down_down: Duration = 0.0139
[Rank 0] Move Shift one operator: Duration = 0.2071
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99979, Accepted = 11955, Rate = 0.1196
[Rank 0] Move Insert Delta_up: Proposed = 49952, Accepted = 5933, Rate = 0.1188
[Rank 0] Move Insert Delta_down: Proposed = 50027, Accepted = 6022, Rate = 0.1204
[Rank 0] Move set Remove two operators: Proposed = 99852, Accepted = 11835, Rate = 0.1185
[Rank 0] Move Remove Delta_up: Proposed = 49879, Accepted = 5867, Rate = 0.1176
[Rank 0] Move Remove Delta_down: Proposed = 49973, Accepted = 5968, Rate = 0.1194
[Rank 0] Move set Insert four operators: Proposed = 100043, Accepted = 2608, Rate = 0.0261
[Rank 0] Move Insert Delta_up_up: Proposed = 25128, Accepted = 626, Rate = 0.0249
[Rank 0] Move Insert Delta_up_down: Proposed = 24820, Accepted = 644, Rate = 0.0259
[Rank 0] Move Insert Delta_down_up: Proposed = 25085, Accepted = 708, Rate = 0.0282
[Rank 0] Move Insert Delta_down_down: Proposed = 25010, Accepted = 630, Rate = 0.0252
[Rank 0] Move set Remove four operators: Proposed = 99725, Accepted = 2668, Rate = 0.0268
[Rank 0] Move Remove Delta_up_up: Proposed = 24735, Accepted = 644, Rate = 0.0260
[Rank 0] Move Remove Delta_up_down: Proposed = 25184, Accepted = 709, Rate = 0.0282
[Rank 0] Move Remove Delta_down_up: Proposed = 24883, Accepted = 673, Rate = 0.0270
[Rank 0] Move Remove Delta_down_down: Proposed = 24923, Accepted = 642, Rate = 0.0258
[Rank 0] Move Shift one operator: Proposed = 100401, Accepted = 51122, Rate = 0.5092
Total number of measures: 10000
Total cycles (measures) / second: 1.54e+04
Average sign: 1
Average order: 6.1244
Auto-correlation time: 3.16095 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:43 28.86% done, ETA 00:00:00, cycle 1443 of 5000, 1.44e+04 cycles/sec
[Rank 0] 08:08:43 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.47e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:43 15.40% done, ETA 00:00:00, cycle 1540 of 10000, 1.54e+04 cycles/sec
[Rank 0] 08:08:44 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.48e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3399 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6761 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.48e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0023
[Rank 0] Move durations (total = 0.6442):
[Rank 0] Move set Insert two operators: Duration = 0.1083
[Rank 0] Move Insert Delta_up: Duration = 0.0497
[Rank 0] Move Insert Delta_down: Duration = 0.0502
[Rank 0] Move set Remove two operators: Duration = 0.0955
[Rank 0] Move Remove Delta_up: Duration = 0.0437
[Rank 0] Move Remove Delta_down: Duration = 0.0436
[Rank 0] Move set Insert four operators: Duration = 0.1389
[Rank 0] Move Insert Delta_up_up: Duration = 0.0364
[Rank 0] Move Insert Delta_up_down: Duration = 0.0286
[Rank 0] Move Insert Delta_down_up: Duration = 0.0287
[Rank 0] Move Insert Delta_down_down: Duration = 0.0365
[Rank 0] Move set Remove four operators: Duration = 0.0834
[Rank 0] Move Remove Delta_up_up: Duration = 0.0148
[Rank 0] Move Remove Delta_up_down: Duration = 0.0225
[Rank 0] Move Remove Delta_down_up: Duration = 0.0224
[Rank 0] Move Remove Delta_down_down: Duration = 0.0151
[Rank 0] Move Shift one operator: Duration = 0.2180
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100294, Accepted = 11713, Rate = 0.1168
[Rank 0] Move Insert Delta_up: Proposed = 50023, Accepted = 5812, Rate = 0.1162
[Rank 0] Move Insert Delta_down: Proposed = 50271, Accepted = 5901, Rate = 0.1174
[Rank 0] Move set Remove two operators: Proposed = 99706, Accepted = 11629, Rate = 0.1166
[Rank 0] Move Remove Delta_up: Proposed = 49796, Accepted = 5800, Rate = 0.1165
[Rank 0] Move Remove Delta_down: Proposed = 49910, Accepted = 5829, Rate = 0.1168
[Rank 0] Move set Insert four operators: Proposed = 100056, Accepted = 2596, Rate = 0.0259
[Rank 0] Move Insert Delta_up_up: Proposed = 24999, Accepted = 655, Rate = 0.0262
[Rank 0] Move Insert Delta_up_down: Proposed = 24960, Accepted = 646, Rate = 0.0259
[Rank 0] Move Insert Delta_down_up: Proposed = 25075, Accepted = 664, Rate = 0.0265
[Rank 0] Move Insert Delta_down_down: Proposed = 25022, Accepted = 631, Rate = 0.0252
[Rank 0] Move set Remove four operators: Proposed = 99738, Accepted = 2637, Rate = 0.0264
[Rank 0] Move Remove Delta_up_up: Proposed = 24804, Accepted = 669, Rate = 0.0270
[Rank 0] Move Remove Delta_up_down: Proposed = 25149, Accepted = 626, Rate = 0.0249
[Rank 0] Move Remove Delta_down_up: Proposed = 24760, Accepted = 668, Rate = 0.0270
[Rank 0] Move Remove Delta_down_down: Proposed = 25025, Accepted = 674, Rate = 0.0269
[Rank 0] Move Shift one operator: Proposed = 100206, Accepted = 52115, Rate = 0.5201
Total number of measures: 10000
Total cycles (measures) / second: 1.48e+04
Average sign: 1
Average order: 6.2308
Auto-correlation time: 2.69095 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:44 28.48% done, ETA 00:00:00, cycle 1424 of 5000, 1.42e+04 cycles/sec
[Rank 0] 08:08:44 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.47e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:44 14.74% done, ETA 00:00:00, cycle 1474 of 10000, 1.47e+04 cycles/sec
[Rank 0] 08:08:45 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.47e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3390 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6795 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.47e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6476):
[Rank 0] Move set Insert two operators: Duration = 0.1094
[Rank 0] Move Insert Delta_up: Duration = 0.0503
[Rank 0] Move Insert Delta_down: Duration = 0.0507
[Rank 0] Move set Remove two operators: Duration = 0.0965
[Rank 0] Move Remove Delta_up: Duration = 0.0443
[Rank 0] Move Remove Delta_down: Duration = 0.0440
[Rank 0] Move set Insert four operators: Duration = 0.1405
[Rank 0] Move Insert Delta_up_up: Duration = 0.0366
[Rank 0] Move Insert Delta_up_down: Duration = 0.0290
[Rank 0] Move Insert Delta_down_up: Duration = 0.0293
[Rank 0] Move Insert Delta_down_down: Duration = 0.0366
[Rank 0] Move set Remove four operators: Duration = 0.0835
[Rank 0] Move Remove Delta_up_up: Duration = 0.0147
[Rank 0] Move Remove Delta_up_down: Duration = 0.0228
[Rank 0] Move Remove Delta_down_up: Duration = 0.0227
[Rank 0] Move Remove Delta_down_down: Duration = 0.0146
[Rank 0] Move Shift one operator: Duration = 0.2176
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99900, Accepted = 11914, Rate = 0.1193
[Rank 0] Move Insert Delta_up: Proposed = 49858, Accepted = 5933, Rate = 0.1190
[Rank 0] Move Insert Delta_down: Proposed = 50042, Accepted = 5981, Rate = 0.1195
[Rank 0] Move set Remove two operators: Proposed = 99958, Accepted = 11781, Rate = 0.1179
[Rank 0] Move Remove Delta_up: Proposed = 50367, Accepted = 5904, Rate = 0.1172
[Rank 0] Move Remove Delta_down: Proposed = 49591, Accepted = 5877, Rate = 0.1185
[Rank 0] Move set Insert four operators: Proposed = 100112, Accepted = 2623, Rate = 0.0262
[Rank 0] Move Insert Delta_up_up: Proposed = 25039, Accepted = 619, Rate = 0.0247
[Rank 0] Move Insert Delta_up_down: Proposed = 24948, Accepted = 699, Rate = 0.0280
[Rank 0] Move Insert Delta_down_up: Proposed = 25180, Accepted = 698, Rate = 0.0277
[Rank 0] Move Insert Delta_down_down: Proposed = 24945, Accepted = 607, Rate = 0.0243
[Rank 0] Move set Remove four operators: Proposed = 99690, Accepted = 2692, Rate = 0.0270
[Rank 0] Move Remove Delta_up_up: Proposed = 24804, Accepted = 656, Rate = 0.0264
[Rank 0] Move Remove Delta_up_down: Proposed = 25132, Accepted = 677, Rate = 0.0269
[Rank 0] Move Remove Delta_down_up: Proposed = 24919, Accepted = 678, Rate = 0.0272
[Rank 0] Move Remove Delta_down_down: Proposed = 24835, Accepted = 681, Rate = 0.0274
[Rank 0] Move Shift one operator: Proposed = 100340, Accepted = 51589, Rate = 0.5141
Total number of measures: 10000
Total cycles (measures) / second: 1.47e+04
Average sign: 1
Average order: 6.1344
Auto-correlation time: 3.68244 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:45 29.70% done, ETA 00:00:00, cycle 1485 of 5000, 1.48e+04 cycles/sec
[Rank 0] 08:08:45 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.56e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:46 15.21% done, ETA 00:00:00, cycle 1521 of 10000, 1.52e+04 cycles/sec
[Rank 0] 08:08:46 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.51e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3197 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6620 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.51e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6311):
[Rank 0] Move set Insert two operators: Duration = 0.1066
[Rank 0] Move Insert Delta_up: Duration = 0.0490
[Rank 0] Move Insert Delta_down: Duration = 0.0494
[Rank 0] Move set Remove two operators: Duration = 0.0951
[Rank 0] Move Remove Delta_up: Duration = 0.0436
[Rank 0] Move Remove Delta_down: Duration = 0.0434
[Rank 0] Move set Insert four operators: Duration = 0.1360
[Rank 0] Move Insert Delta_up_up: Duration = 0.0354
[Rank 0] Move Insert Delta_up_down: Duration = 0.0279
[Rank 0] Move Insert Delta_down_up: Duration = 0.0280
[Rank 0] Move Insert Delta_down_down: Duration = 0.0360
[Rank 0] Move set Remove four operators: Duration = 0.0810
[Rank 0] Move Remove Delta_up_up: Duration = 0.0140
[Rank 0] Move Remove Delta_up_down: Duration = 0.0222
[Rank 0] Move Remove Delta_down_up: Duration = 0.0220
[Rank 0] Move Remove Delta_down_down: Duration = 0.0144
[Rank 0] Move Shift one operator: Duration = 0.2125
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99884, Accepted = 12062, Rate = 0.1208
[Rank 0] Move Insert Delta_up: Proposed = 49877, Accepted = 6046, Rate = 0.1212
[Rank 0] Move Insert Delta_down: Proposed = 50007, Accepted = 6016, Rate = 0.1203
[Rank 0] Move set Remove two operators: Proposed = 99933, Accepted = 12112, Rate = 0.1212
[Rank 0] Move Remove Delta_up: Proposed = 49930, Accepted = 6083, Rate = 0.1218
[Rank 0] Move Remove Delta_down: Proposed = 50003, Accepted = 6029, Rate = 0.1206
[Rank 0] Move set Insert four operators: Proposed = 99937, Accepted = 2672, Rate = 0.0267
[Rank 0] Move Insert Delta_up_up: Proposed = 24876, Accepted = 657, Rate = 0.0264
[Rank 0] Move Insert Delta_up_down: Proposed = 24890, Accepted = 684, Rate = 0.0275
[Rank 0] Move Insert Delta_down_up: Proposed = 24980, Accepted = 676, Rate = 0.0271
[Rank 0] Move Insert Delta_down_down: Proposed = 25191, Accepted = 655, Rate = 0.0260
[Rank 0] Move set Remove four operators: Proposed = 99809, Accepted = 2649, Rate = 0.0265
[Rank 0] Move Remove Delta_up_up: Proposed = 24781, Accepted = 628, Rate = 0.0253
[Rank 0] Move Remove Delta_up_down: Proposed = 25170, Accepted = 709, Rate = 0.0282
[Rank 0] Move Remove Delta_down_up: Proposed = 24870, Accepted = 674, Rate = 0.0271
[Rank 0] Move Remove Delta_down_down: Proposed = 24988, Accepted = 638, Rate = 0.0255
[Rank 0] Move Shift one operator: Proposed = 100437, Accepted = 51771, Rate = 0.5155
Total number of measures: 10000
Total cycles (measures) / second: 1.51e+04
Average sign: 1
Average order: 6.1383
Auto-correlation time: 2.64673 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:46 30.96% done, ETA 00:00:00, cycle 1548 of 5000, 1.55e+04 cycles/sec
[Rank 0] 08:08:46 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.52e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:47 16.10% done, ETA 00:00:00, cycle 1610 of 10000, 1.61e+04 cycles/sec
[Rank 0] 08:08:47 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.52e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3296 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6591 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.52e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6280):
[Rank 0] Move set Insert two operators: Duration = 0.1060
[Rank 0] Move Insert Delta_up: Duration = 0.0488
[Rank 0] Move Insert Delta_down: Duration = 0.0490
[Rank 0] Move set Remove two operators: Duration = 0.0937
[Rank 0] Move Remove Delta_up: Duration = 0.0428
[Rank 0] Move Remove Delta_down: Duration = 0.0428
[Rank 0] Move set Insert four operators: Duration = 0.1361
[Rank 0] Move Insert Delta_up_up: Duration = 0.0357
[Rank 0] Move Insert Delta_up_down: Duration = 0.0280
[Rank 0] Move Insert Delta_down_up: Duration = 0.0281
[Rank 0] Move Insert Delta_down_down: Duration = 0.0359
[Rank 0] Move set Remove four operators: Duration = 0.0809
[Rank 0] Move Remove Delta_up_up: Duration = 0.0141
[Rank 0] Move Remove Delta_up_down: Duration = 0.0222
[Rank 0] Move Remove Delta_down_up: Duration = 0.0221
[Rank 0] Move Remove Delta_down_down: Duration = 0.0142
[Rank 0] Move Shift one operator: Duration = 0.2113
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100198, Accepted = 11760, Rate = 0.1174
[Rank 0] Move Insert Delta_up: Proposed = 50022, Accepted = 5868, Rate = 0.1173
[Rank 0] Move Insert Delta_down: Proposed = 50176, Accepted = 5892, Rate = 0.1174
[Rank 0] Move set Remove two operators: Proposed = 99743, Accepted = 11694, Rate = 0.1172
[Rank 0] Move Remove Delta_up: Proposed = 49944, Accepted = 5823, Rate = 0.1166
[Rank 0] Move Remove Delta_down: Proposed = 49799, Accepted = 5871, Rate = 0.1179
[Rank 0] Move set Insert four operators: Proposed = 99940, Accepted = 2613, Rate = 0.0261
[Rank 0] Move Insert Delta_up_up: Proposed = 25049, Accepted = 655, Rate = 0.0261
[Rank 0] Move Insert Delta_up_down: Proposed = 24968, Accepted = 633, Rate = 0.0254
[Rank 0] Move Insert Delta_down_up: Proposed = 24898, Accepted = 664, Rate = 0.0267
[Rank 0] Move Insert Delta_down_down: Proposed = 25025, Accepted = 661, Rate = 0.0264
[Rank 0] Move set Remove four operators: Proposed = 99870, Accepted = 2647, Rate = 0.0265
[Rank 0] Move Remove Delta_up_up: Proposed = 24855, Accepted = 628, Rate = 0.0253
[Rank 0] Move Remove Delta_up_down: Proposed = 25138, Accepted = 693, Rate = 0.0276
[Rank 0] Move Remove Delta_down_up: Proposed = 24885, Accepted = 704, Rate = 0.0283
[Rank 0] Move Remove Delta_down_down: Proposed = 24992, Accepted = 622, Rate = 0.0249
[Rank 0] Move Shift one operator: Proposed = 100249, Accepted = 51397, Rate = 0.5127
Total number of measures: 10000
Total cycles (measures) / second: 1.52e+04
Average sign: 1
Average order: 6.1385
Auto-correlation time: 2.51 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:47 28.78% done, ETA 00:00:00, cycle 1439 of 5000, 1.44e+04 cycles/sec
[Rank 0] 08:08:47 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.53e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:48 14.37% done, ETA 00:00:00, cycle 1437 of 10000, 1.44e+04 cycles/sec
[Rank 0] 08:08:48 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.53e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3266 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6553 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.53e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6244):
[Rank 0] Move set Insert two operators: Duration = 0.1050
[Rank 0] Move Insert Delta_up: Duration = 0.0483
[Rank 0] Move Insert Delta_down: Duration = 0.0486
[Rank 0] Move set Remove two operators: Duration = 0.0932
[Rank 0] Move Remove Delta_up: Duration = 0.0426
[Rank 0] Move Remove Delta_down: Duration = 0.0425
[Rank 0] Move set Insert four operators: Duration = 0.1358
[Rank 0] Move Insert Delta_up_up: Duration = 0.0355
[Rank 0] Move Insert Delta_up_down: Duration = 0.0280
[Rank 0] Move Insert Delta_down_up: Duration = 0.0280
[Rank 0] Move Insert Delta_down_down: Duration = 0.0355
[Rank 0] Move set Remove four operators: Duration = 0.0809
[Rank 0] Move Remove Delta_up_up: Duration = 0.0141
[Rank 0] Move Remove Delta_up_down: Duration = 0.0220
[Rank 0] Move Remove Delta_down_up: Duration = 0.0219
[Rank 0] Move Remove Delta_down_down: Duration = 0.0144
[Rank 0] Move Shift one operator: Duration = 0.2096
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100030, Accepted = 11740, Rate = 0.1174
[Rank 0] Move Insert Delta_up: Proposed = 49990, Accepted = 5880, Rate = 0.1176
[Rank 0] Move Insert Delta_down: Proposed = 50040, Accepted = 5860, Rate = 0.1171
[Rank 0] Move set Remove two operators: Proposed = 99776, Accepted = 11702, Rate = 0.1173
[Rank 0] Move Remove Delta_up: Proposed = 49792, Accepted = 5902, Rate = 0.1185
[Rank 0] Move Remove Delta_down: Proposed = 49984, Accepted = 5800, Rate = 0.1160
[Rank 0] Move set Insert four operators: Proposed = 100161, Accepted = 2674, Rate = 0.0267
[Rank 0] Move Insert Delta_up_up: Proposed = 25057, Accepted = 663, Rate = 0.0265
[Rank 0] Move Insert Delta_up_down: Proposed = 25072, Accepted = 686, Rate = 0.0274
[Rank 0] Move Insert Delta_down_up: Proposed = 25108, Accepted = 670, Rate = 0.0267
[Rank 0] Move Insert Delta_down_down: Proposed = 24924, Accepted = 655, Rate = 0.0263
[Rank 0] Move set Remove four operators: Proposed = 99821, Accepted = 2697, Rate = 0.0270
[Rank 0] Move Remove Delta_up_up: Proposed = 24849, Accepted = 657, Rate = 0.0264
[Rank 0] Move Remove Delta_up_down: Proposed = 25149, Accepted = 682, Rate = 0.0271
[Rank 0] Move Remove Delta_down_up: Proposed = 24890, Accepted = 669, Rate = 0.0269
[Rank 0] Move Remove Delta_down_down: Proposed = 24933, Accepted = 689, Rate = 0.0276
[Rank 0] Move Shift one operator: Proposed = 100212, Accepted = 51563, Rate = 0.5145
Total number of measures: 10000
Total cycles (measures) / second: 1.53e+04
Average sign: 1
Average order: 6.1263
Auto-correlation time: 2.44026 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:48 31.34% done, ETA 00:00:00, cycle 1567 of 5000, 1.57e+04 cycles/sec
[Rank 0] 08:08:48 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.54e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:49 15.30% done, ETA 00:00:00, cycle 1530 of 10000, 1.53e+04 cycles/sec
[Rank 0] 08:08:49 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.51e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3247 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6612 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.51e+04
[Rank 0] Measurement durations (total = 0.0036):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6305):
[Rank 0] Move set Insert two operators: Duration = 0.1051
[Rank 0] Move Insert Delta_up: Duration = 0.0483
[Rank 0] Move Insert Delta_down: Duration = 0.0486
[Rank 0] Move set Remove two operators: Duration = 0.0938
[Rank 0] Move Remove Delta_up: Duration = 0.0430
[Rank 0] Move Remove Delta_down: Duration = 0.0426
[Rank 0] Move set Insert four operators: Duration = 0.1366
[Rank 0] Move Insert Delta_up_up: Duration = 0.0359
[Rank 0] Move Insert Delta_up_down: Duration = 0.0280
[Rank 0] Move Insert Delta_down_up: Duration = 0.0283
[Rank 0] Move Insert Delta_down_down: Duration = 0.0357
[Rank 0] Move set Remove four operators: Duration = 0.0816
[Rank 0] Move Remove Delta_up_up: Duration = 0.0143
[Rank 0] Move Remove Delta_up_down: Duration = 0.0221
[Rank 0] Move Remove Delta_down_up: Duration = 0.0220
[Rank 0] Move Remove Delta_down_down: Duration = 0.0146
[Rank 0] Move Shift one operator: Duration = 0.2133
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99629, Accepted = 11649, Rate = 0.1169
[Rank 0] Move Insert Delta_up: Proposed = 49746, Accepted = 5851, Rate = 0.1176
[Rank 0] Move Insert Delta_down: Proposed = 49883, Accepted = 5798, Rate = 0.1162
[Rank 0] Move set Remove two operators: Proposed = 99593, Accepted = 11764, Rate = 0.1181
[Rank 0] Move Remove Delta_up: Proposed = 49849, Accepted = 5954, Rate = 0.1194
[Rank 0] Move Remove Delta_down: Proposed = 49744, Accepted = 5810, Rate = 0.1168
[Rank 0] Move set Insert four operators: Proposed = 100189, Accepted = 2696, Rate = 0.0269
[Rank 0] Move Insert Delta_up_up: Proposed = 25099, Accepted = 681, Rate = 0.0271
[Rank 0] Move Insert Delta_up_down: Proposed = 25001, Accepted = 643, Rate = 0.0257
[Rank 0] Move Insert Delta_down_up: Proposed = 24988, Accepted = 730, Rate = 0.0292
[Rank 0] Move Insert Delta_down_down: Proposed = 25101, Accepted = 642, Rate = 0.0256
[Rank 0] Move set Remove four operators: Proposed = 100086, Accepted = 2637, Rate = 0.0263
[Rank 0] Move Remove Delta_up_up: Proposed = 24851, Accepted = 658, Rate = 0.0265
[Rank 0] Move Remove Delta_up_down: Proposed = 25270, Accepted = 661, Rate = 0.0262
[Rank 0] Move Remove Delta_down_up: Proposed = 24969, Accepted = 655, Rate = 0.0262
[Rank 0] Move Remove Delta_down_down: Proposed = 24996, Accepted = 663, Rate = 0.0265
[Rank 0] Move Shift one operator: Proposed = 100503, Accepted = 52308, Rate = 0.5205
Total number of measures: 10000
Total cycles (measures) / second: 1.51e+04
Average sign: 1
Average order: 6.2418
Auto-correlation time: 2.13552 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:49 29.46% done, ETA 00:00:00, cycle 1473 of 5000, 1.47e+04 cycles/sec
[Rank 0] 08:08:50 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.54e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:50 14.10% done, ETA 00:00:00, cycle 1410 of 10000, 1.41e+04 cycles/sec
[Rank 0] 08:08:50 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.47e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3249 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6790 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.47e+04
[Rank 0] Measurement durations (total = 0.0038):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0023
[Rank 0] Move durations (total = 0.6473):
[Rank 0] Move set Insert two operators: Duration = 0.1090
[Rank 0] Move Insert Delta_up: Duration = 0.0502
[Rank 0] Move Insert Delta_down: Duration = 0.0504
[Rank 0] Move set Remove two operators: Duration = 0.0964
[Rank 0] Move Remove Delta_up: Duration = 0.0442
[Rank 0] Move Remove Delta_down: Duration = 0.0442
[Rank 0] Move set Insert four operators: Duration = 0.1389
[Rank 0] Move Insert Delta_up_up: Duration = 0.0365
[Rank 0] Move Insert Delta_up_down: Duration = 0.0284
[Rank 0] Move Insert Delta_down_up: Duration = 0.0288
[Rank 0] Move Insert Delta_down_down: Duration = 0.0365
[Rank 0] Move set Remove four operators: Duration = 0.0839
[Rank 0] Move Remove Delta_up_up: Duration = 0.0148
[Rank 0] Move Remove Delta_up_down: Duration = 0.0226
[Rank 0] Move Remove Delta_down_up: Duration = 0.0225
[Rank 0] Move Remove Delta_down_down: Duration = 0.0151
[Rank 0] Move Shift one operator: Duration = 0.2190
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100246, Accepted = 11959, Rate = 0.1193
[Rank 0] Move Insert Delta_up: Proposed = 50113, Accepted = 6021, Rate = 0.1201
[Rank 0] Move Insert Delta_down: Proposed = 50133, Accepted = 5938, Rate = 0.1184
[Rank 0] Move set Remove two operators: Proposed = 99664, Accepted = 11825, Rate = 0.1186
[Rank 0] Move Remove Delta_up: Proposed = 49825, Accepted = 5942, Rate = 0.1193
[Rank 0] Move Remove Delta_down: Proposed = 49839, Accepted = 5883, Rate = 0.1180
[Rank 0] Move set Insert four operators: Proposed = 100041, Accepted = 2544, Rate = 0.0254
[Rank 0] Move Insert Delta_up_up: Proposed = 25035, Accepted = 651, Rate = 0.0260
[Rank 0] Move Insert Delta_up_down: Proposed = 24853, Accepted = 586, Rate = 0.0236
[Rank 0] Move Insert Delta_down_up: Proposed = 25159, Accepted = 669, Rate = 0.0266
[Rank 0] Move Insert Delta_down_down: Proposed = 24994, Accepted = 638, Rate = 0.0255
[Rank 0] Move set Remove four operators: Proposed = 99653, Accepted = 2610, Rate = 0.0262
[Rank 0] Move Remove Delta_up_up: Proposed = 24757, Accepted = 669, Rate = 0.0270
[Rank 0] Move Remove Delta_up_down: Proposed = 25092, Accepted = 647, Rate = 0.0258
[Rank 0] Move Remove Delta_down_up: Proposed = 24904, Accepted = 646, Rate = 0.0259
[Rank 0] Move Remove Delta_down_down: Proposed = 24900, Accepted = 648, Rate = 0.0260
[Rank 0] Move Shift one operator: Proposed = 100396, Accepted = 52502, Rate = 0.5229
Total number of measures: 10000
Total cycles (measures) / second: 1.47e+04
Average sign: 1
Average order: 6.3131
Auto-correlation time: 2.55216 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-1.5*c_dag('down',0)*c('down',0) + -1.5*c_dag('up',0)*c('up',0) + 3*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:50 28.92% done, ETA 00:00:00, cycle 1446 of 5000, 1.45e+04 cycles/sec
[Rank 0] 08:08:51 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.53e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:51 15.01% done, ETA 00:00:00, cycle 1501 of 10000, 1.50e+04 cycles/sec
[Rank 0] 08:08:51 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.53e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3276 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6540 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.53e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6230):
[Rank 0] Move set Insert two operators: Duration = 0.1058
[Rank 0] Move Insert Delta_up: Duration = 0.0486
[Rank 0] Move Insert Delta_down: Duration = 0.0490
[Rank 0] Move set Remove two operators: Duration = 0.0933
[Rank 0] Move Remove Delta_up: Duration = 0.0424
[Rank 0] Move Remove Delta_down: Duration = 0.0430
[Rank 0] Move set Insert four operators: Duration = 0.1349
[Rank 0] Move Insert Delta_up_up: Duration = 0.0352
[Rank 0] Move Insert Delta_up_down: Duration = 0.0277
[Rank 0] Move Insert Delta_down_up: Duration = 0.0278
[Rank 0] Move Insert Delta_down_down: Duration = 0.0356
[Rank 0] Move set Remove four operators: Duration = 0.0800
[Rank 0] Move Remove Delta_up_up: Duration = 0.0140
[Rank 0] Move Remove Delta_up_down: Duration = 0.0216
[Rank 0] Move Remove Delta_down_up: Duration = 0.0218
[Rank 0] Move Remove Delta_down_down: Duration = 0.0141
[Rank 0] Move Shift one operator: Duration = 0.2091
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100205, Accepted = 11941, Rate = 0.1192
[Rank 0] Move Insert Delta_up: Proposed = 50224, Accepted = 5910, Rate = 0.1177
[Rank 0] Move Insert Delta_down: Proposed = 49981, Accepted = 6031, Rate = 0.1207
[Rank 0] Move set Remove two operators: Proposed = 99734, Accepted = 11937, Rate = 0.1197
[Rank 0] Move Remove Delta_up: Proposed = 49810, Accepted = 5905, Rate = 0.1186
[Rank 0] Move Remove Delta_down: Proposed = 49924, Accepted = 6032, Rate = 0.1208
[Rank 0] Move set Insert four operators: Proposed = 100129, Accepted = 2512, Rate = 0.0251
[Rank 0] Move Insert Delta_up_up: Proposed = 24937, Accepted = 633, Rate = 0.0254
[Rank 0] Move Insert Delta_up_down: Proposed = 25011, Accepted = 624, Rate = 0.0249
[Rank 0] Move Insert Delta_down_up: Proposed = 25046, Accepted = 633, Rate = 0.0253
[Rank 0] Move Insert Delta_down_down: Proposed = 25135, Accepted = 622, Rate = 0.0247
[Rank 0] Move set Remove four operators: Proposed = 99607, Accepted = 2513, Rate = 0.0252
[Rank 0] Move Remove Delta_up_up: Proposed = 24756, Accepted = 615, Rate = 0.0248
[Rank 0] Move Remove Delta_up_down: Proposed = 25164, Accepted = 622, Rate = 0.0247
[Rank 0] Move Remove Delta_down_up: Proposed = 24831, Accepted = 674, Rate = 0.0271
[Rank 0] Move Remove Delta_down_down: Proposed = 24856, Accepted = 602, Rate = 0.0242
[Rank 0] Move Shift one operator: Proposed = 100325, Accepted = 50895, Rate = 0.5073
Total number of measures: 10000
Total cycles (measures) / second: 1.53e+04
Average sign: 1
Average order: 6.1319
Auto-correlation time: 3.52924 cycles
U = 4.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:51 31.32% done, ETA 00:00:00, cycle 1566 of 5000, 1.57e+04 cycles/sec
[Rank 0] 08:08:52 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.61e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:52 15.69% done, ETA 00:00:00, cycle 1569 of 10000, 1.57e+04 cycles/sec
[Rank 0] 08:08:52 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.57e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.3109 seconds [00:00:00]
[Rank 0] Simulation duration: 0.6371 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.57e+04
[Rank 0] Measurement durations (total = 0.0037):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0022
[Rank 0] Move durations (total = 0.6058):
[Rank 0] Move set Insert two operators: Duration = 0.1024
[Rank 0] Move Insert Delta_up: Duration = 0.0467
[Rank 0] Move Insert Delta_down: Duration = 0.0474
[Rank 0] Move set Remove two operators: Duration = 0.0893
[Rank 0] Move Remove Delta_up: Duration = 0.0405
[Rank 0] Move Remove Delta_down: Duration = 0.0406
[Rank 0] Move set Insert four operators: Duration = 0.1348
[Rank 0] Move Insert Delta_up_up: Duration = 0.0354
[Rank 0] Move Insert Delta_up_down: Duration = 0.0276
[Rank 0] Move Insert Delta_down_up: Duration = 0.0277
[Rank 0] Move Insert Delta_down_down: Duration = 0.0351
[Rank 0] Move set Remove four operators: Duration = 0.0793
[Rank 0] Move Remove Delta_up_up: Duration = 0.0139
[Rank 0] Move Remove Delta_up_down: Duration = 0.0214
[Rank 0] Move Remove Delta_down_up: Duration = 0.0216
[Rank 0] Move Remove Delta_down_down: Duration = 0.0137
[Rank 0] Move Shift one operator: Duration = 0.2001
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99932, Accepted = 10262, Rate = 0.1027
[Rank 0] Move Insert Delta_up: Proposed = 50078, Accepted = 5052, Rate = 0.1009
[Rank 0] Move Insert Delta_down: Proposed = 49854, Accepted = 5210, Rate = 0.1045
[Rank 0] Move set Remove two operators: Proposed = 99604, Accepted = 10162, Rate = 0.1020
[Rank 0] Move Remove Delta_up: Proposed = 49879, Accepted = 5045, Rate = 0.1011
[Rank 0] Move Remove Delta_down: Proposed = 49725, Accepted = 5117, Rate = 0.1029
[Rank 0] Move set Insert four operators: Proposed = 100076, Accepted = 1995, Rate = 0.0199
[Rank 0] Move Insert Delta_up_up: Proposed = 25121, Accepted = 511, Rate = 0.0203
[Rank 0] Move Insert Delta_up_down: Proposed = 24883, Accepted = 520, Rate = 0.0209
[Rank 0] Move Insert Delta_down_up: Proposed = 25006, Accepted = 516, Rate = 0.0206
[Rank 0] Move Insert Delta_down_down: Proposed = 25066, Accepted = 448, Rate = 0.0179
[Rank 0] Move set Remove four operators: Proposed = 99983, Accepted = 2045, Rate = 0.0205
[Rank 0] Move Remove Delta_up_up: Proposed = 24896, Accepted = 511, Rate = 0.0205
[Rank 0] Move Remove Delta_up_down: Proposed = 25192, Accepted = 491, Rate = 0.0195
[Rank 0] Move Remove Delta_down_up: Proposed = 24991, Accepted = 552, Rate = 0.0221
[Rank 0] Move Remove Delta_down_down: Proposed = 24904, Accepted = 491, Rate = 0.0197
[Rank 0] Move Shift one operator: Proposed = 100405, Accepted = 46219, Rate = 0.4603
Total number of measures: 10000
Total cycles (measures) / second: 1.57e+04
Average sign: 1
Average order: 6.2466
Auto-correlation time: 3.61444 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:52 38.82% done, ETA 00:00:00, cycle 1941 of 5000, 1.94e+04 cycles/sec
[Rank 0] 08:08:52 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.89e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:53 19.56% done, ETA 00:00:00, cycle 1956 of 10000, 1.96e+04 cycles/sec
[Rank 0] 08:08:53 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.87e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2645 seconds [00:00:00]
[Rank 0] Simulation duration: 0.5335 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.87e+04
[Rank 0] Measurement durations (total = 0.0032):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0018
[Rank 0] Move durations (total = 0.5034):
[Rank 0] Move set Insert two operators: Duration = 0.0930
[Rank 0] Move Insert Delta_up: Duration = 0.0425
[Rank 0] Move Insert Delta_down: Duration = 0.0424
[Rank 0] Move set Remove two operators: Duration = 0.0771
[Rank 0] Move Remove Delta_up: Duration = 0.0348
[Rank 0] Move Remove Delta_down: Duration = 0.0344
[Rank 0] Move set Insert four operators: Duration = 0.1218
[Rank 0] Move Insert Delta_up_up: Duration = 0.0317
[Rank 0] Move Insert Delta_up_down: Duration = 0.0251
[Rank 0] Move Insert Delta_down_up: Duration = 0.0254
[Rank 0] Move Insert Delta_down_down: Duration = 0.0313
[Rank 0] Move set Remove four operators: Duration = 0.0623
[Rank 0] Move Remove Delta_up_up: Duration = 0.0097
[Rank 0] Move Remove Delta_up_down: Duration = 0.0172
[Rank 0] Move Remove Delta_down_up: Duration = 0.0173
[Rank 0] Move Remove Delta_down_down: Duration = 0.0096
[Rank 0] Move Shift one operator: Duration = 0.1492
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100213, Accepted = 11107, Rate = 0.1108
[Rank 0] Move Insert Delta_up: Proposed = 50091, Accepted = 5583, Rate = 0.1115
[Rank 0] Move Insert Delta_down: Proposed = 50122, Accepted = 5524, Rate = 0.1102
[Rank 0] Move set Remove two operators: Proposed = 99871, Accepted = 11001, Rate = 0.1102
[Rank 0] Move Remove Delta_up: Proposed = 49913, Accepted = 5536, Rate = 0.1109
[Rank 0] Move Remove Delta_down: Proposed = 49958, Accepted = 5465, Rate = 0.1094
[Rank 0] Move set Insert four operators: Proposed = 100160, Accepted = 2461, Rate = 0.0246
[Rank 0] Move Insert Delta_up_up: Proposed = 25097, Accepted = 535, Rate = 0.0213
[Rank 0] Move Insert Delta_up_down: Proposed = 24984, Accepted = 678, Rate = 0.0271
[Rank 0] Move Insert Delta_down_up: Proposed = 25118, Accepted = 725, Rate = 0.0289
[Rank 0] Move Insert Delta_down_down: Proposed = 24961, Accepted = 523, Rate = 0.0210
[Rank 0] Move set Remove four operators: Proposed = 99591, Accepted = 2513, Rate = 0.0252
[Rank 0] Move Remove Delta_up_up: Proposed = 24745, Accepted = 544, Rate = 0.0220
[Rank 0] Move Remove Delta_up_down: Proposed = 25062, Accepted = 687, Rate = 0.0274
[Rank 0] Move Remove Delta_down_up: Proposed = 24933, Accepted = 744, Rate = 0.0298
[Rank 0] Move Remove Delta_down_down: Proposed = 24851, Accepted = 538, Rate = 0.0216
[Rank 0] Move Shift one operator: Proposed = 100165, Accepted = 34778, Rate = 0.3472
Total number of measures: 10000
Total cycles (measures) / second: 1.87e+04
Average sign: 1
Average order: 4.5515
Auto-correlation time: 3.98667 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:53 40.30% done, ETA 00:00:00, cycle 2015 of 5000, 2.01e+04 cycles/sec
[Rank 0] 08:08:53 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.05e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:53 20.71% done, ETA 00:00:00, cycle 2071 of 10000, 2.07e+04 cycles/sec
[Rank 0] 08:08:54 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.04e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2434 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4902 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.04e+04
[Rank 0] Measurement durations (total = 0.0029):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0016
[Rank 0] Move durations (total = 0.4615):
[Rank 0] Move set Insert two operators: Duration = 0.0867
[Rank 0] Move Insert Delta_up: Duration = 0.0393
[Rank 0] Move Insert Delta_down: Duration = 0.0396
[Rank 0] Move set Remove two operators: Duration = 0.0711
[Rank 0] Move Remove Delta_up: Duration = 0.0316
[Rank 0] Move Remove Delta_down: Duration = 0.0320
[Rank 0] Move set Insert four operators: Duration = 0.1135
[Rank 0] Move Insert Delta_up_up: Duration = 0.0291
[Rank 0] Move Insert Delta_up_down: Duration = 0.0237
[Rank 0] Move Insert Delta_down_up: Duration = 0.0237
[Rank 0] Move Insert Delta_down_down: Duration = 0.0290
[Rank 0] Move set Remove four operators: Duration = 0.0564
[Rank 0] Move Remove Delta_up_up: Duration = 0.0088
[Rank 0] Move Remove Delta_up_down: Duration = 0.0157
[Rank 0] Move Remove Delta_down_up: Duration = 0.0155
[Rank 0] Move Remove Delta_down_down: Duration = 0.0084
[Rank 0] Move Shift one operator: Duration = 0.1337
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100077, Accepted = 10965, Rate = 0.1096
[Rank 0] Move Insert Delta_up: Proposed = 49886, Accepted = 5503, Rate = 0.1103
[Rank 0] Move Insert Delta_down: Proposed = 50191, Accepted = 5462, Rate = 0.1088
[Rank 0] Move set Remove two operators: Proposed = 100039, Accepted = 10985, Rate = 0.1098
[Rank 0] Move Remove Delta_up: Proposed = 49886, Accepted = 5449, Rate = 0.1092
[Rank 0] Move Remove Delta_down: Proposed = 50153, Accepted = 5536, Rate = 0.1104
[Rank 0] Move set Insert four operators: Proposed = 99980, Accepted = 2458, Rate = 0.0246
[Rank 0] Move Insert Delta_up_up: Proposed = 25020, Accepted = 509, Rate = 0.0203
[Rank 0] Move Insert Delta_up_down: Proposed = 25015, Accepted = 726, Rate = 0.0290
[Rank 0] Move Insert Delta_down_up: Proposed = 25028, Accepted = 718, Rate = 0.0287
[Rank 0] Move Insert Delta_down_down: Proposed = 24917, Accepted = 505, Rate = 0.0203
[Rank 0] Move set Remove four operators: Proposed = 99701, Accepted = 2449, Rate = 0.0246
[Rank 0] Move Remove Delta_up_up: Proposed = 24767, Accepted = 535, Rate = 0.0216
[Rank 0] Move Remove Delta_up_down: Proposed = 25208, Accepted = 734, Rate = 0.0291
[Rank 0] Move Remove Delta_down_up: Proposed = 24895, Accepted = 712, Rate = 0.0286
[Rank 0] Move Remove Delta_down_down: Proposed = 24831, Accepted = 468, Rate = 0.0188
[Rank 0] Move Shift one operator: Proposed = 100203, Accepted = 32086, Rate = 0.3202
Total number of measures: 10000
Total cycles (measures) / second: 2.04e+04
Average sign: 1
Average order: 4.2622
Auto-correlation time: 3.49862 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:54 39.66% done, ETA 00:00:00, cycle 1983 of 5000, 1.98e+04 cycles/sec
[Rank 0] 08:08:54 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.02e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:54 20.71% done, ETA 00:00:00, cycle 2071 of 10000, 2.07e+04 cycles/sec
[Rank 0] 08:08:55 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.05e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2480 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4882 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.05e+04
[Rank 0] Measurement durations (total = 0.0030):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0016
[Rank 0] Move durations (total = 0.4592):
[Rank 0] Move set Insert two operators: Duration = 0.0872
[Rank 0] Move Insert Delta_up: Duration = 0.0399
[Rank 0] Move Insert Delta_down: Duration = 0.0396
[Rank 0] Move set Remove two operators: Duration = 0.0704
[Rank 0] Move Remove Delta_up: Duration = 0.0315
[Rank 0] Move Remove Delta_down: Duration = 0.0314
[Rank 0] Move set Insert four operators: Duration = 0.1143
[Rank 0] Move Insert Delta_up_up: Duration = 0.0292
[Rank 0] Move Insert Delta_up_down: Duration = 0.0238
[Rank 0] Move Insert Delta_down_up: Duration = 0.0239
[Rank 0] Move Insert Delta_down_down: Duration = 0.0291
[Rank 0] Move set Remove four operators: Duration = 0.0560
[Rank 0] Move Remove Delta_up_up: Duration = 0.0085
[Rank 0] Move Remove Delta_up_down: Duration = 0.0156
[Rank 0] Move Remove Delta_down_up: Duration = 0.0154
[Rank 0] Move Remove Delta_down_down: Duration = 0.0087
[Rank 0] Move Shift one operator: Duration = 0.1313
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100273, Accepted = 11015, Rate = 0.1099
[Rank 0] Move Insert Delta_up: Proposed = 50249, Accepted = 5562, Rate = 0.1107
[Rank 0] Move Insert Delta_down: Proposed = 50024, Accepted = 5453, Rate = 0.1090
[Rank 0] Move set Remove two operators: Proposed = 99958, Accepted = 10887, Rate = 0.1089
[Rank 0] Move Remove Delta_up: Proposed = 49781, Accepted = 5491, Rate = 0.1103
[Rank 0] Move Remove Delta_down: Proposed = 50177, Accepted = 5396, Rate = 0.1075
[Rank 0] Move set Insert four operators: Proposed = 100101, Accepted = 2471, Rate = 0.0247
[Rank 0] Move Insert Delta_up_up: Proposed = 25120, Accepted = 499, Rate = 0.0199
[Rank 0] Move Insert Delta_up_down: Proposed = 24939, Accepted = 727, Rate = 0.0292
[Rank 0] Move Insert Delta_down_up: Proposed = 25082, Accepted = 729, Rate = 0.0291
[Rank 0] Move Insert Delta_down_down: Proposed = 24960, Accepted = 516, Rate = 0.0207
[Rank 0] Move set Remove four operators: Proposed = 99698, Accepted = 2535, Rate = 0.0254
[Rank 0] Move Remove Delta_up_up: Proposed = 24826, Accepted = 543, Rate = 0.0219
[Rank 0] Move Remove Delta_up_down: Proposed = 25037, Accepted = 725, Rate = 0.0290
[Rank 0] Move Remove Delta_down_up: Proposed = 24939, Accepted = 714, Rate = 0.0286
[Rank 0] Move Remove Delta_down_down: Proposed = 24896, Accepted = 553, Rate = 0.0222
[Rank 0] Move Shift one operator: Proposed = 99970, Accepted = 31131, Rate = 0.3114
Total number of measures: 10000
Total cycles (measures) / second: 2.05e+04
Average sign: 1
Average order: 4.1267
Auto-correlation time: 2.37056 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:55 39.18% done, ETA 00:00:00, cycle 1959 of 5000, 1.96e+04 cycles/sec
[Rank 0] 08:08:55 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.02e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:55 20.78% done, ETA 00:00:00, cycle 2078 of 10000, 2.08e+04 cycles/sec
[Rank 0] 08:08:55 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.05e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2479 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4882 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.05e+04
[Rank 0] Measurement durations (total = 0.0029):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0016
[Rank 0] Move durations (total = 0.4591):
[Rank 0] Move set Insert two operators: Duration = 0.0874
[Rank 0] Move Insert Delta_up: Duration = 0.0398
[Rank 0] Move Insert Delta_down: Duration = 0.0399
[Rank 0] Move set Remove two operators: Duration = 0.0705
[Rank 0] Move Remove Delta_up: Duration = 0.0314
[Rank 0] Move Remove Delta_down: Duration = 0.0313
[Rank 0] Move set Insert four operators: Duration = 0.1147
[Rank 0] Move Insert Delta_up_up: Duration = 0.0294
[Rank 0] Move Insert Delta_up_down: Duration = 0.0239
[Rank 0] Move Insert Delta_down_up: Duration = 0.0240
[Rank 0] Move Insert Delta_down_down: Duration = 0.0294
[Rank 0] Move set Remove four operators: Duration = 0.0558
[Rank 0] Move Remove Delta_up_up: Duration = 0.0084
[Rank 0] Move Remove Delta_up_down: Duration = 0.0155
[Rank 0] Move Remove Delta_down_up: Duration = 0.0154
[Rank 0] Move Remove Delta_down_down: Duration = 0.0084
[Rank 0] Move Shift one operator: Duration = 0.1307
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100122, Accepted = 10827, Rate = 0.1081
[Rank 0] Move Insert Delta_up: Proposed = 49983, Accepted = 5426, Rate = 0.1086
[Rank 0] Move Insert Delta_down: Proposed = 50139, Accepted = 5401, Rate = 0.1077
[Rank 0] Move set Remove two operators: Proposed = 99805, Accepted = 10714, Rate = 0.1073
[Rank 0] Move Remove Delta_up: Proposed = 49907, Accepted = 5367, Rate = 0.1075
[Rank 0] Move Remove Delta_down: Proposed = 49898, Accepted = 5347, Rate = 0.1072
[Rank 0] Move set Insert four operators: Proposed = 99987, Accepted = 2411, Rate = 0.0241
[Rank 0] Move Insert Delta_up_up: Proposed = 25114, Accepted = 494, Rate = 0.0197
[Rank 0] Move Insert Delta_up_down: Proposed = 24882, Accepted = 712, Rate = 0.0286
[Rank 0] Move Insert Delta_down_up: Proposed = 25067, Accepted = 717, Rate = 0.0286
[Rank 0] Move Insert Delta_down_down: Proposed = 24924, Accepted = 488, Rate = 0.0196
[Rank 0] Move set Remove four operators: Proposed = 99979, Accepted = 2467, Rate = 0.0247
[Rank 0] Move Remove Delta_up_up: Proposed = 24695, Accepted = 523, Rate = 0.0212
[Rank 0] Move Remove Delta_up_down: Proposed = 25330, Accepted = 711, Rate = 0.0281
[Rank 0] Move Remove Delta_down_up: Proposed = 24994, Accepted = 719, Rate = 0.0288
[Rank 0] Move Remove Delta_down_down: Proposed = 24960, Accepted = 514, Rate = 0.0206
[Rank 0] Move Shift one operator: Proposed = 100107, Accepted = 30479, Rate = 0.3045
Total number of measures: 10000
Total cycles (measures) / second: 2.05e+04
Average sign: 1
Average order: 4.0936
Auto-correlation time: 3.40116 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:55 40.82% done, ETA 00:00:00, cycle 2041 of 5000, 2.04e+04 cycles/sec
[Rank 0] 08:08:56 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.97e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:56 20.58% done, ETA 00:00:00, cycle 2058 of 10000, 2.06e+04 cycles/sec
[Rank 0] 08:08:56 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.01e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2542 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4976 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.01e+04
[Rank 0] Measurement durations (total = 0.0030):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0016
[Rank 0] Move durations (total = 0.4676):
[Rank 0] Move set Insert two operators: Duration = 0.0887
[Rank 0] Move Insert Delta_up: Duration = 0.0402
[Rank 0] Move Insert Delta_down: Duration = 0.0406
[Rank 0] Move set Remove two operators: Duration = 0.0716
[Rank 0] Move Remove Delta_up: Duration = 0.0317
[Rank 0] Move Remove Delta_down: Duration = 0.0320
[Rank 0] Move set Insert four operators: Duration = 0.1175
[Rank 0] Move Insert Delta_up_up: Duration = 0.0302
[Rank 0] Move Insert Delta_up_down: Duration = 0.0243
[Rank 0] Move Insert Delta_down_up: Duration = 0.0245
[Rank 0] Move Insert Delta_down_down: Duration = 0.0300
[Rank 0] Move set Remove four operators: Duration = 0.0571
[Rank 0] Move Remove Delta_up_up: Duration = 0.0085
[Rank 0] Move Remove Delta_up_down: Duration = 0.0160
[Rank 0] Move Remove Delta_down_up: Duration = 0.0156
[Rank 0] Move Remove Delta_down_down: Duration = 0.0087
[Rank 0] Move Shift one operator: Duration = 0.1328
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99954, Accepted = 10957, Rate = 0.1096
[Rank 0] Move Insert Delta_up: Proposed = 49856, Accepted = 5454, Rate = 0.1094
[Rank 0] Move Insert Delta_down: Proposed = 50098, Accepted = 5503, Rate = 0.1098
[Rank 0] Move set Remove two operators: Proposed = 99433, Accepted = 10883, Rate = 0.1095
[Rank 0] Move Remove Delta_up: Proposed = 49577, Accepted = 5441, Rate = 0.1097
[Rank 0] Move Remove Delta_down: Proposed = 49856, Accepted = 5442, Rate = 0.1092
[Rank 0] Move set Insert four operators: Proposed = 100176, Accepted = 2496, Rate = 0.0249
[Rank 0] Move Insert Delta_up_up: Proposed = 25203, Accepted = 545, Rate = 0.0216
[Rank 0] Move Insert Delta_up_down: Proposed = 24840, Accepted = 725, Rate = 0.0292
[Rank 0] Move Insert Delta_down_up: Proposed = 25125, Accepted = 718, Rate = 0.0286
[Rank 0] Move Insert Delta_down_down: Proposed = 25008, Accepted = 508, Rate = 0.0203
[Rank 0] Move set Remove four operators: Proposed = 100247, Accepted = 2532, Rate = 0.0253
[Rank 0] Move Remove Delta_up_up: Proposed = 24838, Accepted = 509, Rate = 0.0205
[Rank 0] Move Remove Delta_up_down: Proposed = 25299, Accepted = 782, Rate = 0.0309
[Rank 0] Move Remove Delta_down_up: Proposed = 24984, Accepted = 744, Rate = 0.0298
[Rank 0] Move Remove Delta_down_down: Proposed = 25126, Accepted = 497, Rate = 0.0198
[Rank 0] Move Shift one operator: Proposed = 100190, Accepted = 30323, Rate = 0.3027
Total number of measures: 10000
Total cycles (measures) / second: 2.01e+04
Average sign: 1
Average order: 4.059
Auto-correlation time: 3.30547 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:56 40.36% done, ETA 00:00:00, cycle 2018 of 5000, 2.02e+04 cycles/sec
[Rank 0] 08:08:56 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.07e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:56 19.48% done, ETA 00:00:00, cycle 1948 of 10000, 1.95e+04 cycles/sec
[Rank 0] 08:08:57 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.96e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2413 seconds [00:00:00]
[Rank 0] Simulation duration: 0.5093 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.96e+04
[Rank 0] Measurement durations (total = 0.0031):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0017
[Rank 0] Move durations (total = 0.4785):
[Rank 0] Move set Insert two operators: Duration = 0.0910
[Rank 0] Move Insert Delta_up: Duration = 0.0413
[Rank 0] Move Insert Delta_down: Duration = 0.0414
[Rank 0] Move set Remove two operators: Duration = 0.0733
[Rank 0] Move Remove Delta_up: Duration = 0.0325
[Rank 0] Move Remove Delta_down: Duration = 0.0326
[Rank 0] Move set Insert four operators: Duration = 0.1205
[Rank 0] Move Insert Delta_up_up: Duration = 0.0307
[Rank 0] Move Insert Delta_up_down: Duration = 0.0252
[Rank 0] Move Insert Delta_down_up: Duration = 0.0255
[Rank 0] Move Insert Delta_down_down: Duration = 0.0304
[Rank 0] Move set Remove four operators: Duration = 0.0580
[Rank 0] Move Remove Delta_up_up: Duration = 0.0087
[Rank 0] Move Remove Delta_up_down: Duration = 0.0163
[Rank 0] Move Remove Delta_down_up: Duration = 0.0159
[Rank 0] Move Remove Delta_down_down: Duration = 0.0086
[Rank 0] Move Shift one operator: Duration = 0.1357
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99902, Accepted = 10906, Rate = 0.1092
[Rank 0] Move Insert Delta_up: Proposed = 50056, Accepted = 5450, Rate = 0.1089
[Rank 0] Move Insert Delta_down: Proposed = 49846, Accepted = 5456, Rate = 0.1095
[Rank 0] Move set Remove two operators: Proposed = 99909, Accepted = 10843, Rate = 0.1085
[Rank 0] Move Remove Delta_up: Proposed = 49952, Accepted = 5414, Rate = 0.1084
[Rank 0] Move Remove Delta_down: Proposed = 49957, Accepted = 5429, Rate = 0.1087
[Rank 0] Move set Insert four operators: Proposed = 100142, Accepted = 2517, Rate = 0.0251
[Rank 0] Move Insert Delta_up_up: Proposed = 24923, Accepted = 540, Rate = 0.0217
[Rank 0] Move Insert Delta_up_down: Proposed = 25060, Accepted = 747, Rate = 0.0298
[Rank 0] Move Insert Delta_down_up: Proposed = 25294, Accepted = 747, Rate = 0.0295
[Rank 0] Move Insert Delta_down_down: Proposed = 24865, Accepted = 483, Rate = 0.0194
[Rank 0] Move set Remove four operators: Proposed = 99807, Accepted = 2548, Rate = 0.0255
[Rank 0] Move Remove Delta_up_up: Proposed = 24595, Accepted = 551, Rate = 0.0224
[Rank 0] Move Remove Delta_up_down: Proposed = 25214, Accepted = 770, Rate = 0.0305
[Rank 0] Move Remove Delta_down_up: Proposed = 25090, Accepted = 736, Rate = 0.0293
[Rank 0] Move Remove Delta_down_down: Proposed = 24908, Accepted = 491, Rate = 0.0197
[Rank 0] Move Shift one operator: Proposed = 100240, Accepted = 30153, Rate = 0.3008
Total number of measures: 10000
Total cycles (measures) / second: 1.96e+04
Average sign: 1
Average order: 3.9724
Auto-correlation time: 3.35538 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:57 42.12% done, ETA 00:00:00, cycle 2106 of 5000, 2.11e+04 cycles/sec
[Rank 0] 08:08:57 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.04e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:57 19.81% done, ETA 00:00:00, cycle 1981 of 10000, 1.98e+04 cycles/sec
[Rank 0] 08:08:58 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.03e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2446 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4920 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.03e+04
[Rank 0] Measurement durations (total = 0.0030):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0016
[Rank 0] Move durations (total = 0.4622):
[Rank 0] Move set Insert two operators: Duration = 0.0881
[Rank 0] Move Insert Delta_up: Duration = 0.0401
[Rank 0] Move Insert Delta_down: Duration = 0.0400
[Rank 0] Move set Remove two operators: Duration = 0.0711
[Rank 0] Move Remove Delta_up: Duration = 0.0319
[Rank 0] Move Remove Delta_down: Duration = 0.0314
[Rank 0] Move set Insert four operators: Duration = 0.1165
[Rank 0] Move Insert Delta_up_up: Duration = 0.0302
[Rank 0] Move Insert Delta_up_down: Duration = 0.0240
[Rank 0] Move Insert Delta_down_up: Duration = 0.0244
[Rank 0] Move Insert Delta_down_down: Duration = 0.0294
[Rank 0] Move set Remove four operators: Duration = 0.0554
[Rank 0] Move Remove Delta_up_up: Duration = 0.0083
[Rank 0] Move Remove Delta_up_down: Duration = 0.0153
[Rank 0] Move Remove Delta_down_up: Duration = 0.0152
[Rank 0] Move Remove Delta_down_down: Duration = 0.0082
[Rank 0] Move Shift one operator: Duration = 0.1311
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100037, Accepted = 10920, Rate = 0.1092
[Rank 0] Move Insert Delta_up: Proposed = 50132, Accepted = 5477, Rate = 0.1093
[Rank 0] Move Insert Delta_down: Proposed = 49905, Accepted = 5443, Rate = 0.1091
[Rank 0] Move set Remove two operators: Proposed = 99641, Accepted = 11040, Rate = 0.1108
[Rank 0] Move Remove Delta_up: Proposed = 49970, Accepted = 5577, Rate = 0.1116
[Rank 0] Move Remove Delta_down: Proposed = 49671, Accepted = 5463, Rate = 0.1100
[Rank 0] Move set Insert four operators: Proposed = 100059, Accepted = 2522, Rate = 0.0252
[Rank 0] Move Insert Delta_up_up: Proposed = 25336, Accepted = 554, Rate = 0.0219
[Rank 0] Move Insert Delta_up_down: Proposed = 24921, Accepted = 716, Rate = 0.0287
[Rank 0] Move Insert Delta_down_up: Proposed = 25023, Accepted = 758, Rate = 0.0303
[Rank 0] Move Insert Delta_down_down: Proposed = 24779, Accepted = 494, Rate = 0.0199
[Rank 0] Move set Remove four operators: Proposed = 100162, Accepted = 2463, Rate = 0.0246
[Rank 0] Move Remove Delta_up_up: Proposed = 24852, Accepted = 492, Rate = 0.0198
[Rank 0] Move Remove Delta_up_down: Proposed = 25229, Accepted = 729, Rate = 0.0289
[Rank 0] Move Remove Delta_down_up: Proposed = 24954, Accepted = 770, Rate = 0.0309
[Rank 0] Move Remove Delta_down_down: Proposed = 25127, Accepted = 472, Rate = 0.0188
[Rank 0] Move Shift one operator: Proposed = 100101, Accepted = 29885, Rate = 0.2985
Total number of measures: 10000
Total cycles (measures) / second: 2.03e+04
Average sign: 1
Average order: 3.9563
Auto-correlation time: 3.1833 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:58 41.86% done, ETA 00:00:00, cycle 2093 of 5000, 2.09e+04 cycles/sec
[Rank 0] 08:08:58 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.06e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:58 19.32% done, ETA 00:00:00, cycle 1932 of 10000, 1.93e+04 cycles/sec
[Rank 0] 08:08:58 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.99e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2423 seconds [00:00:00]
[Rank 0] Simulation duration: 0.5021 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.99e+04
[Rank 0] Measurement durations (total = 0.0031):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0017
[Rank 0] Move durations (total = 0.4714):
[Rank 0] Move set Insert two operators: Duration = 0.0901
[Rank 0] Move Insert Delta_up: Duration = 0.0408
[Rank 0] Move Insert Delta_down: Duration = 0.0410
[Rank 0] Move set Remove two operators: Duration = 0.0729
[Rank 0] Move Remove Delta_up: Duration = 0.0322
[Rank 0] Move Remove Delta_down: Duration = 0.0326
[Rank 0] Move set Insert four operators: Duration = 0.1191
[Rank 0] Move Insert Delta_up_up: Duration = 0.0305
[Rank 0] Move Insert Delta_up_down: Duration = 0.0247
[Rank 0] Move Insert Delta_down_up: Duration = 0.0249
[Rank 0] Move Insert Delta_down_down: Duration = 0.0303
[Rank 0] Move set Remove four operators: Duration = 0.0569
[Rank 0] Move Remove Delta_up_up: Duration = 0.0085
[Rank 0] Move Remove Delta_up_down: Duration = 0.0158
[Rank 0] Move Remove Delta_down_up: Duration = 0.0155
[Rank 0] Move Remove Delta_down_down: Duration = 0.0085
[Rank 0] Move Shift one operator: Duration = 0.1324
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100192, Accepted = 10763, Rate = 0.1074
[Rank 0] Move Insert Delta_up: Proposed = 50298, Accepted = 5322, Rate = 0.1058
[Rank 0] Move Insert Delta_down: Proposed = 49894, Accepted = 5441, Rate = 0.1091
[Rank 0] Move set Remove two operators: Proposed = 100048, Accepted = 10902, Rate = 0.1090
[Rank 0] Move Remove Delta_up: Proposed = 50001, Accepted = 5429, Rate = 0.1086
[Rank 0] Move Remove Delta_down: Proposed = 50047, Accepted = 5473, Rate = 0.1094
[Rank 0] Move set Insert four operators: Proposed = 100096, Accepted = 2500, Rate = 0.0250
[Rank 0] Move Insert Delta_up_up: Proposed = 25119, Accepted = 528, Rate = 0.0210
[Rank 0] Move Insert Delta_up_down: Proposed = 24914, Accepted = 707, Rate = 0.0284
[Rank 0] Move Insert Delta_down_up: Proposed = 25110, Accepted = 756, Rate = 0.0301
[Rank 0] Move Insert Delta_down_down: Proposed = 24953, Accepted = 509, Rate = 0.0204
[Rank 0] Move set Remove four operators: Proposed = 99650, Accepted = 2432, Rate = 0.0244
[Rank 0] Move Remove Delta_up_up: Proposed = 24638, Accepted = 496, Rate = 0.0201
[Rank 0] Move Remove Delta_up_down: Proposed = 25154, Accepted = 738, Rate = 0.0293
[Rank 0] Move Remove Delta_down_up: Proposed = 24880, Accepted = 685, Rate = 0.0275
[Rank 0] Move Remove Delta_down_down: Proposed = 24978, Accepted = 513, Rate = 0.0205
[Rank 0] Move Shift one operator: Proposed = 100014, Accepted = 29551, Rate = 0.2955
Total number of measures: 10000
Total cycles (measures) / second: 1.99e+04
Average sign: 1
Average order: 3.9659
Auto-correlation time: 3.78526 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2*c_dag('down',0)*c('down',0) + -2*c_dag('up',0)*c('up',0) + 4*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:59 42.28% done, ETA 00:00:00, cycle 2114 of 5000, 2.11e+04 cycles/sec
[Rank 0] 08:08:59 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.13e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:08:59 18.80% done, ETA 00:00:00, cycle 1880 of 10000, 1.88e+04 cycles/sec
[Rank 0] 08:08:59 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.03e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2348 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4938 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.03e+04
[Rank 0] Measurement durations (total = 0.0030):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0016
[Rank 0] Move durations (total = 0.4637):
[Rank 0] Move set Insert two operators: Duration = 0.0882
[Rank 0] Move Insert Delta_up: Duration = 0.0400
[Rank 0] Move Insert Delta_down: Duration = 0.0401
[Rank 0] Move set Remove two operators: Duration = 0.0711
[Rank 0] Move Remove Delta_up: Duration = 0.0316
[Rank 0] Move Remove Delta_down: Duration = 0.0315
[Rank 0] Move set Insert four operators: Duration = 0.1172
[Rank 0] Move Insert Delta_up_up: Duration = 0.0300
[Rank 0] Move Insert Delta_up_down: Duration = 0.0242
[Rank 0] Move Insert Delta_down_up: Duration = 0.0245
[Rank 0] Move Insert Delta_down_down: Duration = 0.0297
[Rank 0] Move set Remove four operators: Duration = 0.0561
[Rank 0] Move Remove Delta_up_up: Duration = 0.0084
[Rank 0] Move Remove Delta_up_down: Duration = 0.0153
[Rank 0] Move Remove Delta_down_up: Duration = 0.0154
[Rank 0] Move Remove Delta_down_down: Duration = 0.0087
[Rank 0] Move Shift one operator: Duration = 0.1311
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99770, Accepted = 10932, Rate = 0.1096
[Rank 0] Move Insert Delta_up: Proposed = 49814, Accepted = 5478, Rate = 0.1100
[Rank 0] Move Insert Delta_down: Proposed = 49956, Accepted = 5454, Rate = 0.1092
[Rank 0] Move set Remove two operators: Proposed = 99909, Accepted = 10868, Rate = 0.1088
[Rank 0] Move Remove Delta_up: Proposed = 49734, Accepted = 5502, Rate = 0.1106
[Rank 0] Move Remove Delta_down: Proposed = 50175, Accepted = 5366, Rate = 0.1069
[Rank 0] Move set Insert four operators: Proposed = 100462, Accepted = 2545, Rate = 0.0253
[Rank 0] Move Insert Delta_up_up: Proposed = 25245, Accepted = 554, Rate = 0.0219
[Rank 0] Move Insert Delta_up_down: Proposed = 24991, Accepted = 771, Rate = 0.0309
[Rank 0] Move Insert Delta_down_up: Proposed = 25231, Accepted = 718, Rate = 0.0285
[Rank 0] Move Insert Delta_down_down: Proposed = 24995, Accepted = 502, Rate = 0.0201
[Rank 0] Move set Remove four operators: Proposed = 99842, Accepted = 2577, Rate = 0.0258
[Rank 0] Move Remove Delta_up_up: Proposed = 24725, Accepted = 551, Rate = 0.0223
[Rank 0] Move Remove Delta_up_down: Proposed = 25096, Accepted = 720, Rate = 0.0287
[Rank 0] Move Remove Delta_down_up: Proposed = 25031, Accepted = 750, Rate = 0.0300
[Rank 0] Move Remove Delta_down_down: Proposed = 24990, Accepted = 556, Rate = 0.0222
[Rank 0] Move Shift one operator: Proposed = 100017, Accepted = 30017, Rate = 0.3001
Total number of measures: 10000
Total cycles (measures) / second: 2.03e+04
Average sign: 1
Average order: 3.9498
Auto-correlation time: 1.93423 cycles
U = 5.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:08:59 37.72% done, ETA 00:00:00, cycle 1886 of 5000, 1.89e+04 cycles/sec
[Rank 0] 08:09:00 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 1.88e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:00 18.84% done, ETA 00:00:00, cycle 1884 of 10000, 1.88e+04 cycles/sec
[Rank 0] 08:09:00 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.83e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2660 seconds [00:00:00]
[Rank 0] Simulation duration: 0.5467 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.83e+04
[Rank 0] Measurement durations (total = 0.0034):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0020
[Rank 0] Move durations (total = 0.5168):
[Rank 0] Move set Insert two operators: Duration = 0.0911
[Rank 0] Move Insert Delta_up: Duration = 0.0415
[Rank 0] Move Insert Delta_down: Duration = 0.0417
[Rank 0] Move set Remove two operators: Duration = 0.0770
[Rank 0] Move Remove Delta_up: Duration = 0.0343
[Rank 0] Move Remove Delta_down: Duration = 0.0348
[Rank 0] Move set Insert four operators: Duration = 0.1215
[Rank 0] Move Insert Delta_up_up: Duration = 0.0317
[Rank 0] Move Insert Delta_up_down: Duration = 0.0250
[Rank 0] Move Insert Delta_down_up: Duration = 0.0249
[Rank 0] Move Insert Delta_down_down: Duration = 0.0316
[Rank 0] Move set Remove four operators: Duration = 0.0669
[Rank 0] Move Remove Delta_up_up: Duration = 0.0109
[Rank 0] Move Remove Delta_up_down: Duration = 0.0185
[Rank 0] Move Remove Delta_down_up: Duration = 0.0182
[Rank 0] Move Remove Delta_down_down: Duration = 0.0111
[Rank 0] Move Shift one operator: Duration = 0.1603
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100355, Accepted = 9376, Rate = 0.0934
[Rank 0] Move Insert Delta_up: Proposed = 50318, Accepted = 4693, Rate = 0.0933
[Rank 0] Move Insert Delta_down: Proposed = 50037, Accepted = 4683, Rate = 0.0936
[Rank 0] Move set Remove two operators: Proposed = 99459, Accepted = 9258, Rate = 0.0931
[Rank 0] Move Remove Delta_up: Proposed = 49817, Accepted = 4601, Rate = 0.0924
[Rank 0] Move Remove Delta_down: Proposed = 49642, Accepted = 4657, Rate = 0.0938
[Rank 0] Move set Insert four operators: Proposed = 99903, Accepted = 1727, Rate = 0.0173
[Rank 0] Move Insert Delta_up_up: Proposed = 25052, Accepted = 400, Rate = 0.0160
[Rank 0] Move Insert Delta_up_down: Proposed = 24999, Accepted = 452, Rate = 0.0181
[Rank 0] Move Insert Delta_down_up: Proposed = 24911, Accepted = 475, Rate = 0.0191
[Rank 0] Move Insert Delta_down_down: Proposed = 24941, Accepted = 400, Rate = 0.0160
[Rank 0] Move set Remove four operators: Proposed = 99975, Accepted = 1785, Rate = 0.0179
[Rank 0] Move Remove Delta_up_up: Proposed = 24778, Accepted = 421, Rate = 0.0170
[Rank 0] Move Remove Delta_up_down: Proposed = 25262, Accepted = 479, Rate = 0.0190
[Rank 0] Move Remove Delta_down_up: Proposed = 24941, Accepted = 496, Rate = 0.0199
[Rank 0] Move Remove Delta_down_down: Proposed = 24994, Accepted = 389, Rate = 0.0156
[Rank 0] Move Shift one operator: Proposed = 100308, Accepted = 37114, Rate = 0.3700
Total number of measures: 10000
Total cycles (measures) / second: 1.83e+04
Average sign: 1
Average order: 5.5225
Auto-correlation time: 5.03584 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:00 47.54% done, ETA 00:00:00, cycle 2377 of 5000, 2.38e+04 cycles/sec
[Rank 0] 08:09:00 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.38e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:00 22.00% done, ETA 00:00:00, cycle 2200 of 10000, 2.20e+04 cycles/sec
[Rank 0] 08:09:01 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.36e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2101 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4234 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.36e+04
[Rank 0] Measurement durations (total = 0.0028):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0015
[Rank 0] Move durations (total = 0.3941):
[Rank 0] Move set Insert two operators: Duration = 0.0790
[Rank 0] Move Insert Delta_up: Duration = 0.0357
[Rank 0] Move Insert Delta_down: Duration = 0.0355
[Rank 0] Move set Remove two operators: Duration = 0.0598
[Rank 0] Move Remove Delta_up: Duration = 0.0262
[Rank 0] Move Remove Delta_down: Duration = 0.0257
[Rank 0] Move set Insert four operators: Duration = 0.1067
[Rank 0] Move Insert Delta_up_up: Duration = 0.0272
[Rank 0] Move Insert Delta_up_down: Duration = 0.0221
[Rank 0] Move Insert Delta_down_up: Duration = 0.0224
[Rank 0] Move Insert Delta_down_down: Duration = 0.0269
[Rank 0] Move set Remove four operators: Duration = 0.0452
[Rank 0] Move Remove Delta_up_up: Duration = 0.0063
[Rank 0] Move Remove Delta_up_down: Duration = 0.0122
[Rank 0] Move Remove Delta_down_up: Duration = 0.0121
[Rank 0] Move Remove Delta_down_down: Duration = 0.0063
[Rank 0] Move Shift one operator: Duration = 0.1034
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99895, Accepted = 9927, Rate = 0.0994
[Rank 0] Move Insert Delta_up: Proposed = 50074, Accepted = 4993, Rate = 0.0997
[Rank 0] Move Insert Delta_down: Proposed = 49821, Accepted = 4934, Rate = 0.0990
[Rank 0] Move set Remove two operators: Proposed = 99692, Accepted = 9984, Rate = 0.1001
[Rank 0] Move Remove Delta_up: Proposed = 49892, Accepted = 5043, Rate = 0.1011
[Rank 0] Move Remove Delta_down: Proposed = 49800, Accepted = 4941, Rate = 0.0992
[Rank 0] Move set Insert four operators: Proposed = 100051, Accepted = 2186, Rate = 0.0218
[Rank 0] Move Insert Delta_up_up: Proposed = 25136, Accepted = 438, Rate = 0.0174
[Rank 0] Move Insert Delta_up_down: Proposed = 24913, Accepted = 665, Rate = 0.0267
[Rank 0] Move Insert Delta_down_up: Proposed = 25054, Accepted = 688, Rate = 0.0275
[Rank 0] Move Insert Delta_down_down: Proposed = 24948, Accepted = 395, Rate = 0.0158
[Rank 0] Move set Remove four operators: Proposed = 100365, Accepted = 2156, Rate = 0.0215
[Rank 0] Move Remove Delta_up_up: Proposed = 24941, Accepted = 407, Rate = 0.0163
[Rank 0] Move Remove Delta_up_down: Proposed = 25184, Accepted = 678, Rate = 0.0269
[Rank 0] Move Remove Delta_down_up: Proposed = 25077, Accepted = 686, Rate = 0.0274
[Rank 0] Move Remove Delta_down_down: Proposed = 25163, Accepted = 385, Rate = 0.0153
[Rank 0] Move Shift one operator: Proposed = 99997, Accepted = 22052, Rate = 0.2205
Total number of measures: 10000
Total cycles (measures) / second: 2.36e+04
Average sign: 1
Average order: 3.2385
Auto-correlation time: 2.67413 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:01 48.12% done, ETA 00:00:00, cycle 2406 of 5000, 2.41e+04 cycles/sec
[Rank 0] 08:09:01 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.38e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:01 26.66% done, ETA 00:00:00, cycle 2666 of 10000, 2.67e+04 cycles/sec
[Rank 0] 08:09:01 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.58e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2097 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3871 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.58e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0014
[Rank 0] Move durations (total = 0.3579):
[Rank 0] Move set Insert two operators: Duration = 0.0750
[Rank 0] Move Insert Delta_up: Duration = 0.0335
[Rank 0] Move Insert Delta_down: Duration = 0.0336
[Rank 0] Move set Remove two operators: Duration = 0.0537
[Rank 0] Move Remove Delta_up: Duration = 0.0230
[Rank 0] Move Remove Delta_down: Duration = 0.0230
[Rank 0] Move set Insert four operators: Duration = 0.1021
[Rank 0] Move Insert Delta_up_up: Duration = 0.0257
[Rank 0] Move Insert Delta_up_down: Duration = 0.0211
[Rank 0] Move Insert Delta_down_up: Duration = 0.0213
[Rank 0] Move Insert Delta_down_down: Duration = 0.0257
[Rank 0] Move set Remove four operators: Duration = 0.0388
[Rank 0] Move Remove Delta_up_up: Duration = 0.0051
[Rank 0] Move Remove Delta_up_down: Duration = 0.0102
[Rank 0] Move Remove Delta_down_up: Duration = 0.0101
[Rank 0] Move Remove Delta_down_down: Duration = 0.0052
[Rank 0] Move Shift one operator: Duration = 0.0883
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99638, Accepted = 9791, Rate = 0.0983
[Rank 0] Move Insert Delta_up: Proposed = 49971, Accepted = 4863, Rate = 0.0973
[Rank 0] Move Insert Delta_down: Proposed = 49667, Accepted = 4928, Rate = 0.0992
[Rank 0] Move set Remove two operators: Proposed = 99595, Accepted = 9831, Rate = 0.0987
[Rank 0] Move Remove Delta_up: Proposed = 49734, Accepted = 4893, Rate = 0.0984
[Rank 0] Move Remove Delta_down: Proposed = 49861, Accepted = 4938, Rate = 0.0990
[Rank 0] Move set Insert four operators: Proposed = 100370, Accepted = 2032, Rate = 0.0202
[Rank 0] Move Insert Delta_up_up: Proposed = 25281, Accepted = 389, Rate = 0.0154
[Rank 0] Move Insert Delta_up_down: Proposed = 24944, Accepted = 640, Rate = 0.0257
[Rank 0] Move Insert Delta_down_up: Proposed = 25097, Accepted = 637, Rate = 0.0254
[Rank 0] Move Insert Delta_down_down: Proposed = 25048, Accepted = 366, Rate = 0.0146
[Rank 0] Move set Remove four operators: Proposed = 100173, Accepted = 2010, Rate = 0.0201
[Rank 0] Move Remove Delta_up_up: Proposed = 24821, Accepted = 382, Rate = 0.0154
[Rank 0] Move Remove Delta_up_down: Proposed = 25381, Accepted = 634, Rate = 0.0250
[Rank 0] Move Remove Delta_down_up: Proposed = 25026, Accepted = 626, Rate = 0.0250
[Rank 0] Move Remove Delta_down_down: Proposed = 24945, Accepted = 368, Rate = 0.0148
[Rank 0] Move Shift one operator: Proposed = 100224, Accepted = 17454, Rate = 0.1741
Total number of measures: 10000
Total cycles (measures) / second: 2.58e+04
Average sign: 1
Average order: 2.68
Auto-correlation time: 2.8439 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:01 55.88% done, ETA 00:00:00, cycle 2794 of 5000, 2.79e+04 cycles/sec
[Rank 0] 08:09:02 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.74e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:02 28.67% done, ETA 00:00:00, cycle 2867 of 10000, 2.87e+04 cycles/sec
[Rank 0] 08:09:02 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.66e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1822 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3756 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.66e+04
[Rank 0] Measurement durations (total = 0.0028):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0014
[Rank 0] Move durations (total = 0.3462):
[Rank 0] Move set Insert two operators: Duration = 0.0739
[Rank 0] Move Insert Delta_up: Duration = 0.0329
[Rank 0] Move Insert Delta_down: Duration = 0.0331
[Rank 0] Move set Remove two operators: Duration = 0.0521
[Rank 0] Move Remove Delta_up: Duration = 0.0221
[Rank 0] Move Remove Delta_down: Duration = 0.0221
[Rank 0] Move set Insert four operators: Duration = 0.1012
[Rank 0] Move Insert Delta_up_up: Duration = 0.0256
[Rank 0] Move Insert Delta_up_down: Duration = 0.0210
[Rank 0] Move Insert Delta_down_up: Duration = 0.0210
[Rank 0] Move Insert Delta_down_down: Duration = 0.0252
[Rank 0] Move set Remove four operators: Duration = 0.0357
[Rank 0] Move Remove Delta_up_up: Duration = 0.0046
[Rank 0] Move Remove Delta_up_down: Duration = 0.0092
[Rank 0] Move Remove Delta_down_up: Duration = 0.0091
[Rank 0] Move Remove Delta_down_down: Duration = 0.0045
[Rank 0] Move Shift one operator: Duration = 0.0832
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99790, Accepted = 9453, Rate = 0.0947
[Rank 0] Move Insert Delta_up: Proposed = 50058, Accepted = 4683, Rate = 0.0936
[Rank 0] Move Insert Delta_down: Proposed = 49732, Accepted = 4770, Rate = 0.0959
[Rank 0] Move set Remove two operators: Proposed = 99895, Accepted = 9613, Rate = 0.0962
[Rank 0] Move Remove Delta_up: Proposed = 49702, Accepted = 4780, Rate = 0.0962
[Rank 0] Move Remove Delta_down: Proposed = 50193, Accepted = 4833, Rate = 0.0963
[Rank 0] Move set Insert four operators: Proposed = 100140, Accepted = 1785, Rate = 0.0178
[Rank 0] Move Insert Delta_up_up: Proposed = 25175, Accepted = 371, Rate = 0.0147
[Rank 0] Move Insert Delta_up_down: Proposed = 25063, Accepted = 565, Rate = 0.0225
[Rank 0] Move Insert Delta_down_up: Proposed = 25054, Accepted = 526, Rate = 0.0210
[Rank 0] Move Insert Delta_down_down: Proposed = 24848, Accepted = 323, Rate = 0.0130
[Rank 0] Move set Remove four operators: Proposed = 100058, Accepted = 1706, Rate = 0.0171
[Rank 0] Move Remove Delta_up_up: Proposed = 24918, Accepted = 349, Rate = 0.0140
[Rank 0] Move Remove Delta_up_down: Proposed = 25175, Accepted = 531, Rate = 0.0211
[Rank 0] Move Remove Delta_down_up: Proposed = 25037, Accepted = 509, Rate = 0.0203
[Rank 0] Move Remove Delta_down_down: Proposed = 24928, Accepted = 317, Rate = 0.0127
[Rank 0] Move Shift one operator: Proposed = 100117, Accepted = 15421, Rate = 0.1540
Total number of measures: 10000
Total cycles (measures) / second: 2.66e+04
Average sign: 0.9996
Average order: 2.4483
Auto-correlation time: 2.60957 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:02 56.70% done, ETA 00:00:00, cycle 2835 of 5000, 2.83e+04 cycles/sec
[Rank 0] 08:09:02 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.89e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:02 26.71% done, ETA 00:00:00, cycle 2671 of 10000, 2.67e+04 cycles/sec
[Rank 0] 08:09:03 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.78e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1727 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3597 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.78e+04
[Rank 0] Measurement durations (total = 0.0026):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0013
[Rank 0] Move durations (total = 0.3307):
[Rank 0] Move set Insert two operators: Duration = 0.0716
[Rank 0] Move Insert Delta_up: Duration = 0.0318
[Rank 0] Move Insert Delta_down: Duration = 0.0319
[Rank 0] Move set Remove two operators: Duration = 0.0491
[Rank 0] Move Remove Delta_up: Duration = 0.0207
[Rank 0] Move Remove Delta_down: Duration = 0.0207
[Rank 0] Move set Insert four operators: Duration = 0.0986
[Rank 0] Move Insert Delta_up_up: Duration = 0.0249
[Rank 0] Move Insert Delta_up_down: Duration = 0.0202
[Rank 0] Move Insert Delta_down_up: Duration = 0.0205
[Rank 0] Move Insert Delta_down_down: Duration = 0.0248
[Rank 0] Move set Remove four operators: Duration = 0.0337
[Rank 0] Move Remove Delta_up_up: Duration = 0.0044
[Rank 0] Move Remove Delta_up_down: Duration = 0.0084
[Rank 0] Move Remove Delta_down_up: Duration = 0.0084
[Rank 0] Move Remove Delta_down_down: Duration = 0.0043
[Rank 0] Move Shift one operator: Duration = 0.0777
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99828, Accepted = 9264, Rate = 0.0928
[Rank 0] Move Insert Delta_up: Proposed = 50072, Accepted = 4570, Rate = 0.0913
[Rank 0] Move Insert Delta_down: Proposed = 49756, Accepted = 4694, Rate = 0.0943
[Rank 0] Move set Remove two operators: Proposed = 99523, Accepted = 9407, Rate = 0.0945
[Rank 0] Move Remove Delta_up: Proposed = 49718, Accepted = 4651, Rate = 0.0935
[Rank 0] Move Remove Delta_down: Proposed = 49805, Accepted = 4756, Rate = 0.0955
[Rank 0] Move set Insert four operators: Proposed = 100632, Accepted = 1667, Rate = 0.0166
[Rank 0] Move Insert Delta_up_up: Proposed = 25356, Accepted = 372, Rate = 0.0147
[Rank 0] Move Insert Delta_up_down: Proposed = 25024, Accepted = 467, Rate = 0.0187
[Rank 0] Move Insert Delta_down_up: Proposed = 25294, Accepted = 496, Rate = 0.0196
[Rank 0] Move Insert Delta_down_down: Proposed = 24958, Accepted = 332, Rate = 0.0133
[Rank 0] Move set Remove four operators: Proposed = 100082, Accepted = 1597, Rate = 0.0160
[Rank 0] Move Remove Delta_up_up: Proposed = 24990, Accepted = 364, Rate = 0.0146
[Rank 0] Move Remove Delta_up_down: Proposed = 25066, Accepted = 469, Rate = 0.0187
[Rank 0] Move Remove Delta_down_up: Proposed = 25038, Accepted = 430, Rate = 0.0172
[Rank 0] Move Remove Delta_down_down: Proposed = 24988, Accepted = 334, Rate = 0.0134
[Rank 0] Move Shift one operator: Proposed = 99935, Accepted = 14130, Rate = 0.1414
Total number of measures: 10000
Total cycles (measures) / second: 2.78e+04
Average sign: 0.9986
Average order: 2.3498
Auto-correlation time: 1.86033 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:03 56.98% done, ETA 00:00:00, cycle 2849 of 5000, 2.85e+04 cycles/sec
[Rank 0] 08:09:03 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.84e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:03 29.82% done, ETA 00:00:00, cycle 2982 of 10000, 2.98e+04 cycles/sec
[Rank 0] 08:09:03 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.79e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1759 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3584 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.79e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0010
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0013
[Rank 0] Move durations (total = 0.3286):
[Rank 0] Move set Insert two operators: Duration = 0.0724
[Rank 0] Move Insert Delta_up: Duration = 0.0323
[Rank 0] Move Insert Delta_down: Duration = 0.0320
[Rank 0] Move set Remove two operators: Duration = 0.0484
[Rank 0] Move Remove Delta_up: Duration = 0.0202
[Rank 0] Move Remove Delta_down: Duration = 0.0203
[Rank 0] Move set Insert four operators: Duration = 0.0990
[Rank 0] Move Insert Delta_up_up: Duration = 0.0250
[Rank 0] Move Insert Delta_up_down: Duration = 0.0204
[Rank 0] Move Insert Delta_down_up: Duration = 0.0205
[Rank 0] Move Insert Delta_down_down: Duration = 0.0246
[Rank 0] Move set Remove four operators: Duration = 0.0326
[Rank 0] Move Remove Delta_up_up: Duration = 0.0041
[Rank 0] Move Remove Delta_up_down: Duration = 0.0080
[Rank 0] Move Remove Delta_down_up: Duration = 0.0079
[Rank 0] Move Remove Delta_down_down: Duration = 0.0041
[Rank 0] Move Shift one operator: Duration = 0.0763
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99789, Accepted = 9264, Rate = 0.0928
[Rank 0] Move Insert Delta_up: Proposed = 50053, Accepted = 4669, Rate = 0.0933
[Rank 0] Move Insert Delta_down: Proposed = 49736, Accepted = 4595, Rate = 0.0924
[Rank 0] Move set Remove two operators: Proposed = 99627, Accepted = 9228, Rate = 0.0926
[Rank 0] Move Remove Delta_up: Proposed = 49647, Accepted = 4611, Rate = 0.0929
[Rank 0] Move Remove Delta_down: Proposed = 49980, Accepted = 4617, Rate = 0.0924
[Rank 0] Move set Insert four operators: Proposed = 100570, Accepted = 1476, Rate = 0.0147
[Rank 0] Move Insert Delta_up_up: Proposed = 25275, Accepted = 308, Rate = 0.0122
[Rank 0] Move Insert Delta_up_down: Proposed = 25124, Accepted = 443, Rate = 0.0176
[Rank 0] Move Insert Delta_down_up: Proposed = 25170, Accepted = 422, Rate = 0.0168
[Rank 0] Move Insert Delta_down_down: Proposed = 25001, Accepted = 303, Rate = 0.0121
[Rank 0] Move set Remove four operators: Proposed = 100195, Accepted = 1495, Rate = 0.0149
[Rank 0] Move Remove Delta_up_up: Proposed = 24747, Accepted = 326, Rate = 0.0132
[Rank 0] Move Remove Delta_up_down: Proposed = 25247, Accepted = 442, Rate = 0.0175
[Rank 0] Move Remove Delta_down_up: Proposed = 25059, Accepted = 446, Rate = 0.0178
[Rank 0] Move Remove Delta_down_down: Proposed = 25142, Accepted = 281, Rate = 0.0112
[Rank 0] Move Shift one operator: Proposed = 99819, Accepted = 13197, Rate = 0.1322
Total number of measures: 10000
Total cycles (measures) / second: 2.79e+04
Average sign: 0.9962
Average order: 2.2003
Auto-correlation time: 3.06999 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:03 61.48% done, ETA 00:00:00, cycle 3074 of 5000, 3.07e+04 cycles/sec
[Rank 0] 08:09:03 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.97e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:03 29.02% done, ETA 00:00:00, cycle 2902 of 10000, 2.90e+04 cycles/sec
[Rank 0] 08:09:04 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.89e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1686 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3464 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.89e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0013
[Rank 0] Move durations (total = 0.3166):
[Rank 0] Move set Insert two operators: Duration = 0.0705
[Rank 0] Move Insert Delta_up: Duration = 0.0310
[Rank 0] Move Insert Delta_down: Duration = 0.0315
[Rank 0] Move set Remove two operators: Duration = 0.0464
[Rank 0] Move Remove Delta_up: Duration = 0.0192
[Rank 0] Move Remove Delta_down: Duration = 0.0193
[Rank 0] Move set Insert four operators: Duration = 0.0962
[Rank 0] Move Insert Delta_up_up: Duration = 0.0243
[Rank 0] Move Insert Delta_up_down: Duration = 0.0196
[Rank 0] Move Insert Delta_down_up: Duration = 0.0198
[Rank 0] Move Insert Delta_down_down: Duration = 0.0240
[Rank 0] Move set Remove four operators: Duration = 0.0308
[Rank 0] Move Remove Delta_up_up: Duration = 0.0037
[Rank 0] Move Remove Delta_up_down: Duration = 0.0074
[Rank 0] Move Remove Delta_down_up: Duration = 0.0073
[Rank 0] Move Remove Delta_down_down: Duration = 0.0039
[Rank 0] Move Shift one operator: Duration = 0.0727
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100009, Accepted = 9285, Rate = 0.0928
[Rank 0] Move Insert Delta_up: Proposed = 49880, Accepted = 4522, Rate = 0.0907
[Rank 0] Move Insert Delta_down: Proposed = 50129, Accepted = 4763, Rate = 0.0950
[Rank 0] Move set Remove two operators: Proposed = 99777, Accepted = 9182, Rate = 0.0920
[Rank 0] Move Remove Delta_up: Proposed = 49733, Accepted = 4512, Rate = 0.0907
[Rank 0] Move Remove Delta_down: Proposed = 50044, Accepted = 4670, Rate = 0.0933
[Rank 0] Move set Insert four operators: Proposed = 100122, Accepted = 1392, Rate = 0.0139
[Rank 0] Move Insert Delta_up_up: Proposed = 25171, Accepted = 316, Rate = 0.0126
[Rank 0] Move Insert Delta_up_down: Proposed = 25014, Accepted = 385, Rate = 0.0154
[Rank 0] Move Insert Delta_down_up: Proposed = 25070, Accepted = 408, Rate = 0.0163
[Rank 0] Move Insert Delta_down_down: Proposed = 24867, Accepted = 283, Rate = 0.0114
[Rank 0] Move set Remove four operators: Proposed = 100039, Accepted = 1442, Rate = 0.0144
[Rank 0] Move Remove Delta_up_up: Proposed = 24831, Accepted = 314, Rate = 0.0126
[Rank 0] Move Remove Delta_up_down: Proposed = 25216, Accepted = 417, Rate = 0.0165
[Rank 0] Move Remove Delta_down_up: Proposed = 25012, Accepted = 389, Rate = 0.0156
[Rank 0] Move Remove Delta_down_down: Proposed = 24980, Accepted = 322, Rate = 0.0129
[Rank 0] Move Shift one operator: Proposed = 100053, Accepted = 12565, Rate = 0.1256
Total number of measures: 10000
Total cycles (measures) / second: 2.89e+04
Average sign: 0.9966
Average order: 2.0978
Auto-correlation time: 1.54882 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:04 60.00% done, ETA 00:00:00, cycle 3000 of 5000, 3.00e+04 cycles/sec
[Rank 0] 08:09:04 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.89e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:04 27.37% done, ETA 00:00:00, cycle 2737 of 10000, 2.74e+04 cycles/sec
[Rank 0] 08:09:04 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.88e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1732 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3472 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.88e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0013
[Rank 0] Move durations (total = 0.3179):
[Rank 0] Move set Insert two operators: Duration = 0.0700
[Rank 0] Move Insert Delta_up: Duration = 0.0310
[Rank 0] Move Insert Delta_down: Duration = 0.0310
[Rank 0] Move set Remove two operators: Duration = 0.0466
[Rank 0] Move Remove Delta_up: Duration = 0.0195
[Rank 0] Move Remove Delta_down: Duration = 0.0194
[Rank 0] Move set Insert four operators: Duration = 0.0964
[Rank 0] Move Insert Delta_up_up: Duration = 0.0243
[Rank 0] Move Insert Delta_up_down: Duration = 0.0196
[Rank 0] Move Insert Delta_down_up: Duration = 0.0198
[Rank 0] Move Insert Delta_down_down: Duration = 0.0242
[Rank 0] Move set Remove four operators: Duration = 0.0312
[Rank 0] Move Remove Delta_up_up: Duration = 0.0039
[Rank 0] Move Remove Delta_up_down: Duration = 0.0076
[Rank 0] Move Remove Delta_down_up: Duration = 0.0075
[Rank 0] Move Remove Delta_down_down: Duration = 0.0039
[Rank 0] Move Shift one operator: Duration = 0.0737
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99674, Accepted = 9161, Rate = 0.0919
[Rank 0] Move Insert Delta_up: Proposed = 49836, Accepted = 4566, Rate = 0.0916
[Rank 0] Move Insert Delta_down: Proposed = 49838, Accepted = 4595, Rate = 0.0922
[Rank 0] Move set Remove two operators: Proposed = 99484, Accepted = 9231, Rate = 0.0928
[Rank 0] Move Remove Delta_up: Proposed = 49600, Accepted = 4616, Rate = 0.0931
[Rank 0] Move Remove Delta_down: Proposed = 49884, Accepted = 4615, Rate = 0.0925
[Rank 0] Move set Insert four operators: Proposed = 100648, Accepted = 1452, Rate = 0.0144
[Rank 0] Move Insert Delta_up_up: Proposed = 25353, Accepted = 322, Rate = 0.0127
[Rank 0] Move Insert Delta_up_down: Proposed = 25023, Accepted = 417, Rate = 0.0167
[Rank 0] Move Insert Delta_down_up: Proposed = 25187, Accepted = 413, Rate = 0.0164
[Rank 0] Move Insert Delta_down_down: Proposed = 25085, Accepted = 300, Rate = 0.0120
[Rank 0] Move set Remove four operators: Proposed = 100095, Accepted = 1418, Rate = 0.0142
[Rank 0] Move Remove Delta_up_up: Proposed = 24933, Accepted = 306, Rate = 0.0123
[Rank 0] Move Remove Delta_up_down: Proposed = 25160, Accepted = 424, Rate = 0.0169
[Rank 0] Move Remove Delta_down_up: Proposed = 24960, Accepted = 388, Rate = 0.0155
[Rank 0] Move Remove Delta_down_down: Proposed = 25042, Accepted = 300, Rate = 0.0120
[Rank 0] Move Shift one operator: Proposed = 100099, Accepted = 12983, Rate = 0.1297
Total number of measures: 10000
Total cycles (measures) / second: 2.88e+04
Average sign: 0.9904
Average order: 2.1729
Auto-correlation time: 2.01125 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:04 56.88% done, ETA 00:00:00, cycle 2844 of 5000, 2.84e+04 cycles/sec
[Rank 0] 08:09:04 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.92e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:04 28.39% done, ETA 00:00:00, cycle 2839 of 10000, 2.84e+04 cycles/sec
[Rank 0] 08:09:05 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.90e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1714 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3444 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.90e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0013
[Rank 0] Move durations (total = 0.3156):
[Rank 0] Move set Insert two operators: Duration = 0.0697
[Rank 0] Move Insert Delta_up: Duration = 0.0310
[Rank 0] Move Insert Delta_down: Duration = 0.0310
[Rank 0] Move set Remove two operators: Duration = 0.0465
[Rank 0] Move Remove Delta_up: Duration = 0.0193
[Rank 0] Move Remove Delta_down: Duration = 0.0195
[Rank 0] Move set Insert four operators: Duration = 0.0958
[Rank 0] Move Insert Delta_up_up: Duration = 0.0241
[Rank 0] Move Insert Delta_up_down: Duration = 0.0197
[Rank 0] Move Insert Delta_down_up: Duration = 0.0198
[Rank 0] Move Insert Delta_down_down: Duration = 0.0239
[Rank 0] Move set Remove four operators: Duration = 0.0309
[Rank 0] Move Remove Delta_up_up: Duration = 0.0040
[Rank 0] Move Remove Delta_up_down: Duration = 0.0074
[Rank 0] Move Remove Delta_down_up: Duration = 0.0075
[Rank 0] Move Remove Delta_down_down: Duration = 0.0038
[Rank 0] Move Shift one operator: Duration = 0.0726
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99864, Accepted = 9228, Rate = 0.0924
[Rank 0] Move Insert Delta_up: Proposed = 50076, Accepted = 4586, Rate = 0.0916
[Rank 0] Move Insert Delta_down: Proposed = 49788, Accepted = 4642, Rate = 0.0932
[Rank 0] Move set Remove two operators: Proposed = 99397, Accepted = 9260, Rate = 0.0932
[Rank 0] Move Remove Delta_up: Proposed = 49487, Accepted = 4596, Rate = 0.0929
[Rank 0] Move Remove Delta_down: Proposed = 49910, Accepted = 4664, Rate = 0.0934
[Rank 0] Move set Insert four operators: Proposed = 100444, Accepted = 1446, Rate = 0.0144
[Rank 0] Move Insert Delta_up_up: Proposed = 25209, Accepted = 316, Rate = 0.0125
[Rank 0] Move Insert Delta_up_down: Proposed = 25136, Accepted = 405, Rate = 0.0161
[Rank 0] Move Insert Delta_down_up: Proposed = 25194, Accepted = 425, Rate = 0.0169
[Rank 0] Move Insert Delta_down_down: Proposed = 24905, Accepted = 300, Rate = 0.0120
[Rank 0] Move set Remove four operators: Proposed = 100236, Accepted = 1431, Rate = 0.0143
[Rank 0] Move Remove Delta_up_up: Proposed = 24707, Accepted = 324, Rate = 0.0131
[Rank 0] Move Remove Delta_up_down: Proposed = 25388, Accepted = 397, Rate = 0.0156
[Rank 0] Move Remove Delta_down_up: Proposed = 25142, Accepted = 407, Rate = 0.0162
[Rank 0] Move Remove Delta_down_down: Proposed = 24999, Accepted = 303, Rate = 0.0121
[Rank 0] Move Shift one operator: Proposed = 100059, Accepted = 12691, Rate = 0.1268
Total number of measures: 10000
Total cycles (measures) / second: 2.90e+04
Average sign: 0.9932
Average order: 2.1737
Auto-correlation time: 2.2343 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-2.5*c_dag('down',0)*c('down',0) + -2.5*c_dag('up',0)*c('up',0) + 5*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:05 56.44% done, ETA 00:00:00, cycle 2822 of 5000, 2.82e+04 cycles/sec
[Rank 0] 08:09:05 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.91e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:05 27.73% done, ETA 00:00:00, cycle 2773 of 10000, 2.77e+04 cycles/sec
[Rank 0] 08:09:05 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.85e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1716 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3510 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.85e+04
[Rank 0] Measurement durations (total = 0.0026):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0012
[Rank 0] Move durations (total = 0.3213):
[Rank 0] Move set Insert two operators: Duration = 0.0711
[Rank 0] Move Insert Delta_up: Duration = 0.0315
[Rank 0] Move Insert Delta_down: Duration = 0.0315
[Rank 0] Move set Remove two operators: Duration = 0.0475
[Rank 0] Move Remove Delta_up: Duration = 0.0199
[Rank 0] Move Remove Delta_down: Duration = 0.0197
[Rank 0] Move set Insert four operators: Duration = 0.0970
[Rank 0] Move Insert Delta_up_up: Duration = 0.0245
[Rank 0] Move Insert Delta_up_down: Duration = 0.0199
[Rank 0] Move Insert Delta_down_up: Duration = 0.0200
[Rank 0] Move Insert Delta_down_down: Duration = 0.0242
[Rank 0] Move set Remove four operators: Duration = 0.0315
[Rank 0] Move Remove Delta_up_up: Duration = 0.0039
[Rank 0] Move Remove Delta_up_down: Duration = 0.0077
[Rank 0] Move Remove Delta_down_up: Duration = 0.0076
[Rank 0] Move Remove Delta_down_down: Duration = 0.0040
[Rank 0] Move Shift one operator: Duration = 0.0743
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99943, Accepted = 9199, Rate = 0.0920
[Rank 0] Move Insert Delta_up: Proposed = 50171, Accepted = 4561, Rate = 0.0909
[Rank 0] Move Insert Delta_down: Proposed = 49772, Accepted = 4638, Rate = 0.0932
[Rank 0] Move set Remove two operators: Proposed = 99441, Accepted = 9191, Rate = 0.0924
[Rank 0] Move Remove Delta_up: Proposed = 49553, Accepted = 4626, Rate = 0.0934
[Rank 0] Move Remove Delta_down: Proposed = 49888, Accepted = 4565, Rate = 0.0915
[Rank 0] Move set Insert four operators: Proposed = 100533, Accepted = 1384, Rate = 0.0138
[Rank 0] Move Insert Delta_up_up: Proposed = 25298, Accepted = 312, Rate = 0.0123
[Rank 0] Move Insert Delta_up_down: Proposed = 25064, Accepted = 405, Rate = 0.0162
[Rank 0] Move Insert Delta_down_up: Proposed = 25224, Accepted = 389, Rate = 0.0154
[Rank 0] Move Insert Delta_down_down: Proposed = 24947, Accepted = 278, Rate = 0.0111
[Rank 0] Move set Remove four operators: Proposed = 99837, Accepted = 1390, Rate = 0.0139
[Rank 0] Move Remove Delta_up_up: Proposed = 24712, Accepted = 284, Rate = 0.0115
[Rank 0] Move Remove Delta_up_down: Proposed = 25134, Accepted = 396, Rate = 0.0158
[Rank 0] Move Remove Delta_down_up: Proposed = 24903, Accepted = 391, Rate = 0.0157
[Rank 0] Move Remove Delta_down_down: Proposed = 25088, Accepted = 319, Rate = 0.0127
[Rank 0] Move Shift one operator: Proposed = 100246, Accepted = 12954, Rate = 0.1292
Total number of measures: 10000
Total cycles (measures) / second: 2.85e+04
Average sign: 0.9968
Average order: 2.1866
Auto-correlation time: 2.34156 cycles
U = 6.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:05 40.34% done, ETA 00:00:00, cycle 2017 of 5000, 2.02e+04 cycles/sec
[Rank 0] 08:09:06 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.01e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:06 20.82% done, ETA 00:00:00, cycle 2082 of 10000, 2.08e+04 cycles/sec
[Rank 0] 08:09:06 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 1.99e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2485 seconds [00:00:00]
[Rank 0] Simulation duration: 0.5016 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 1.99e+04
[Rank 0] Measurement durations (total = 0.0033):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0019
[Rank 0] Move durations (total = 0.4717):
[Rank 0] Move set Insert two operators: Duration = 0.0863
[Rank 0] Move Insert Delta_up: Duration = 0.0389
[Rank 0] Move Insert Delta_down: Duration = 0.0392
[Rank 0] Move set Remove two operators: Duration = 0.0705
[Rank 0] Move Remove Delta_up: Duration = 0.0312
[Rank 0] Move Remove Delta_down: Duration = 0.0314
[Rank 0] Move set Insert four operators: Duration = 0.1174
[Rank 0] Move Insert Delta_up_up: Duration = 0.0302
[Rank 0] Move Insert Delta_up_down: Duration = 0.0242
[Rank 0] Move Insert Delta_down_up: Duration = 0.0241
[Rank 0] Move Insert Delta_down_down: Duration = 0.0305
[Rank 0] Move set Remove four operators: Duration = 0.0597
[Rank 0] Move Remove Delta_up_up: Duration = 0.0093
[Rank 0] Move Remove Delta_up_down: Duration = 0.0165
[Rank 0] Move Remove Delta_down_up: Duration = 0.0163
[Rank 0] Move Remove Delta_down_down: Duration = 0.0092
[Rank 0] Move Shift one operator: Duration = 0.1377
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100390, Accepted = 8592, Rate = 0.0856
[Rank 0] Move Insert Delta_up: Proposed = 50110, Accepted = 4321, Rate = 0.0862
[Rank 0] Move Insert Delta_down: Proposed = 50280, Accepted = 4271, Rate = 0.0849
[Rank 0] Move set Remove two operators: Proposed = 99554, Accepted = 8588, Rate = 0.0863
[Rank 0] Move Remove Delta_up: Proposed = 49751, Accepted = 4285, Rate = 0.0861
[Rank 0] Move Remove Delta_down: Proposed = 49803, Accepted = 4303, Rate = 0.0864
[Rank 0] Move set Insert four operators: Proposed = 100417, Accepted = 1620, Rate = 0.0161
[Rank 0] Move Insert Delta_up_up: Proposed = 25200, Accepted = 342, Rate = 0.0136
[Rank 0] Move Insert Delta_up_down: Proposed = 25073, Accepted = 477, Rate = 0.0190
[Rank 0] Move Insert Delta_down_up: Proposed = 24980, Accepted = 459, Rate = 0.0184
[Rank 0] Move Insert Delta_down_down: Proposed = 25164, Accepted = 342, Rate = 0.0136
[Rank 0] Move set Remove four operators: Proposed = 99472, Accepted = 1620, Rate = 0.0163
[Rank 0] Move Remove Delta_up_up: Proposed = 24570, Accepted = 351, Rate = 0.0143
[Rank 0] Move Remove Delta_up_down: Proposed = 25266, Accepted = 483, Rate = 0.0191
[Rank 0] Move Remove Delta_down_up: Proposed = 24793, Accepted = 471, Rate = 0.0190
[Rank 0] Move Remove Delta_down_down: Proposed = 24843, Accepted = 315, Rate = 0.0127
[Rank 0] Move Shift one operator: Proposed = 100167, Accepted = 30051, Rate = 0.3000
Total number of measures: 10000
Total cycles (measures) / second: 1.99e+04
Average sign: 1
Average order: 4.785
Auto-correlation time: 3.53355 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:06 59.64% done, ETA 00:00:00, cycle 2982 of 5000, 2.98e+04 cycles/sec
[Rank 0] 08:09:06 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.96e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:06 27.92% done, ETA 00:00:00, cycle 2792 of 10000, 2.79e+04 cycles/sec
[Rank 0] 08:09:07 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.72e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1690 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3672 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.72e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0013
[Rank 0] Move durations (total = 0.3378):
[Rank 0] Move set Insert two operators: Duration = 0.0726
[Rank 0] Move Insert Delta_up: Duration = 0.0323
[Rank 0] Move Insert Delta_down: Duration = 0.0322
[Rank 0] Move set Remove two operators: Duration = 0.0503
[Rank 0] Move Remove Delta_up: Duration = 0.0212
[Rank 0] Move Remove Delta_down: Duration = 0.0212
[Rank 0] Move set Insert four operators: Duration = 0.0997
[Rank 0] Move Insert Delta_up_up: Duration = 0.0251
[Rank 0] Move Insert Delta_up_down: Duration = 0.0205
[Rank 0] Move Insert Delta_down_up: Duration = 0.0208
[Rank 0] Move Insert Delta_down_down: Duration = 0.0248
[Rank 0] Move set Remove four operators: Duration = 0.0351
[Rank 0] Move Remove Delta_up_up: Duration = 0.0045
[Rank 0] Move Remove Delta_up_down: Duration = 0.0090
[Rank 0] Move Remove Delta_down_up: Duration = 0.0090
[Rank 0] Move Remove Delta_down_down: Duration = 0.0043
[Rank 0] Move Shift one operator: Duration = 0.0800
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99980, Accepted = 9038, Rate = 0.0904
[Rank 0] Move Insert Delta_up: Proposed = 50215, Accepted = 4527, Rate = 0.0902
[Rank 0] Move Insert Delta_down: Proposed = 49765, Accepted = 4511, Rate = 0.0906
[Rank 0] Move set Remove two operators: Proposed = 99909, Accepted = 9039, Rate = 0.0905
[Rank 0] Move Remove Delta_up: Proposed = 49751, Accepted = 4539, Rate = 0.0912
[Rank 0] Move Remove Delta_down: Proposed = 50158, Accepted = 4500, Rate = 0.0897
[Rank 0] Move set Insert four operators: Proposed = 100393, Accepted = 1665, Rate = 0.0166
[Rank 0] Move Insert Delta_up_up: Proposed = 25335, Accepted = 301, Rate = 0.0119
[Rank 0] Move Insert Delta_up_down: Proposed = 24903, Accepted = 525, Rate = 0.0211
[Rank 0] Move Insert Delta_down_up: Proposed = 25163, Accepted = 553, Rate = 0.0220
[Rank 0] Move Insert Delta_down_down: Proposed = 24992, Accepted = 286, Rate = 0.0114
[Rank 0] Move set Remove four operators: Proposed = 99814, Accepted = 1665, Rate = 0.0167
[Rank 0] Move Remove Delta_up_up: Proposed = 24657, Accepted = 307, Rate = 0.0125
[Rank 0] Move Remove Delta_up_down: Proposed = 25112, Accepted = 524, Rate = 0.0209
[Rank 0] Move Remove Delta_down_up: Proposed = 24994, Accepted = 529, Rate = 0.0212
[Rank 0] Move Remove Delta_down_down: Proposed = 25051, Accepted = 305, Rate = 0.0122
[Rank 0] Move Shift one operator: Proposed = 99904, Accepted = 14311, Rate = 0.1432
Total number of measures: 10000
Total cycles (measures) / second: 2.72e+04
Average sign: 1
Average order: 2.4458
Auto-correlation time: 3.68405 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:07 64.76% done, ETA 00:00:00, cycle 3238 of 5000, 3.24e+04 cycles/sec
[Rank 0] 08:09:07 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.32e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:07 30.87% done, ETA 00:00:00, cycle 3087 of 10000, 3.09e+04 cycles/sec
[Rank 0] 08:09:07 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.23e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1506 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3094 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.23e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2817):
[Rank 0] Move set Insert two operators: Duration = 0.0636
[Rank 0] Move Insert Delta_up: Duration = 0.0279
[Rank 0] Move Insert Delta_down: Duration = 0.0280
[Rank 0] Move set Remove two operators: Duration = 0.0402
[Rank 0] Move Remove Delta_up: Duration = 0.0162
[Rank 0] Move Remove Delta_down: Duration = 0.0166
[Rank 0] Move set Insert four operators: Duration = 0.0883
[Rank 0] Move Insert Delta_up_up: Duration = 0.0221
[Rank 0] Move Insert Delta_up_down: Duration = 0.0180
[Rank 0] Move Insert Delta_down_up: Duration = 0.0182
[Rank 0] Move Insert Delta_down_down: Duration = 0.0219
[Rank 0] Move set Remove four operators: Duration = 0.0269
[Rank 0] Move Remove Delta_up_up: Duration = 0.0034
[Rank 0] Move Remove Delta_up_down: Duration = 0.0063
[Rank 0] Move Remove Delta_down_up: Duration = 0.0062
[Rank 0] Move Remove Delta_down_down: Duration = 0.0033
[Rank 0] Move Shift one operator: Duration = 0.0627
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99666, Accepted = 8545, Rate = 0.0857
[Rank 0] Move Insert Delta_up: Proposed = 50004, Accepted = 4230, Rate = 0.0846
[Rank 0] Move Insert Delta_down: Proposed = 49662, Accepted = 4315, Rate = 0.0869
[Rank 0] Move set Remove two operators: Proposed = 99831, Accepted = 8471, Rate = 0.0849
[Rank 0] Move Remove Delta_up: Proposed = 49754, Accepted = 4168, Rate = 0.0838
[Rank 0] Move Remove Delta_down: Proposed = 50077, Accepted = 4303, Rate = 0.0859
[Rank 0] Move set Insert four operators: Proposed = 100308, Accepted = 1346, Rate = 0.0134
[Rank 0] Move Insert Delta_up_up: Proposed = 25278, Accepted = 260, Rate = 0.0103
[Rank 0] Move Insert Delta_up_down: Proposed = 24955, Accepted = 408, Rate = 0.0163
[Rank 0] Move Insert Delta_down_up: Proposed = 25160, Accepted = 413, Rate = 0.0164
[Rank 0] Move Insert Delta_down_down: Proposed = 24915, Accepted = 265, Rate = 0.0106
[Rank 0] Move set Remove four operators: Proposed = 100207, Accepted = 1384, Rate = 0.0138
[Rank 0] Move Remove Delta_up_up: Proposed = 24840, Accepted = 277, Rate = 0.0112
[Rank 0] Move Remove Delta_up_down: Proposed = 25328, Accepted = 435, Rate = 0.0172
[Rank 0] Move Remove Delta_down_up: Proposed = 24934, Accepted = 414, Rate = 0.0166
[Rank 0] Move Remove Delta_down_down: Proposed = 25105, Accepted = 258, Rate = 0.0103
[Rank 0] Move Shift one operator: Proposed = 99988, Accepted = 10527, Rate = 0.1053
Total number of measures: 10000
Total cycles (measures) / second: 3.23e+04
Average sign: 0.9994
Average order: 1.9382
Auto-correlation time: 2.00833 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:07 67.54% done, ETA 00:00:00, cycle 3377 of 5000, 3.38e+04 cycles/sec
[Rank 0] 08:09:07 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.41e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:07 34.03% done, ETA 00:00:00, cycle 3403 of 10000, 3.40e+04 cycles/sec
[Rank 0] 08:09:08 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.45e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1464 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2897 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.45e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2626):
[Rank 0] Move set Insert two operators: Duration = 0.0599
[Rank 0] Move Insert Delta_up: Duration = 0.0262
[Rank 0] Move Insert Delta_down: Duration = 0.0264
[Rank 0] Move set Remove two operators: Duration = 0.0368
[Rank 0] Move Remove Delta_up: Duration = 0.0148
[Rank 0] Move Remove Delta_down: Duration = 0.0147
[Rank 0] Move set Insert four operators: Duration = 0.0845
[Rank 0] Move Insert Delta_up_up: Duration = 0.0212
[Rank 0] Move Insert Delta_up_down: Duration = 0.0171
[Rank 0] Move Insert Delta_down_up: Duration = 0.0173
[Rank 0] Move Insert Delta_down_down: Duration = 0.0211
[Rank 0] Move set Remove four operators: Duration = 0.0242
[Rank 0] Move Remove Delta_up_up: Duration = 0.0028
[Rank 0] Move Remove Delta_up_down: Duration = 0.0053
[Rank 0] Move Remove Delta_down_up: Duration = 0.0054
[Rank 0] Move Remove Delta_down_down: Duration = 0.0030
[Rank 0] Move Shift one operator: Duration = 0.0571
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99499, Accepted = 8093, Rate = 0.0813
[Rank 0] Move Insert Delta_up: Proposed = 49760, Accepted = 4016, Rate = 0.0807
[Rank 0] Move Insert Delta_down: Proposed = 49739, Accepted = 4077, Rate = 0.0820
[Rank 0] Move set Remove two operators: Proposed = 99852, Accepted = 8045, Rate = 0.0806
[Rank 0] Move Remove Delta_up: Proposed = 49868, Accepted = 4029, Rate = 0.0808
[Rank 0] Move Remove Delta_down: Proposed = 49984, Accepted = 4016, Rate = 0.0803
[Rank 0] Move set Insert four operators: Proposed = 100714, Accepted = 1074, Rate = 0.0107
[Rank 0] Move Insert Delta_up_up: Proposed = 25371, Accepted = 253, Rate = 0.0100
[Rank 0] Move Insert Delta_up_down: Proposed = 24962, Accepted = 293, Rate = 0.0117
[Rank 0] Move Insert Delta_down_up: Proposed = 25240, Accepted = 320, Rate = 0.0127
[Rank 0] Move Insert Delta_down_down: Proposed = 25141, Accepted = 208, Rate = 0.0083
[Rank 0] Move set Remove four operators: Proposed = 100036, Accepted = 1099, Rate = 0.0110
[Rank 0] Move Remove Delta_up_up: Proposed = 24684, Accepted = 254, Rate = 0.0103
[Rank 0] Move Remove Delta_up_down: Proposed = 25127, Accepted = 282, Rate = 0.0112
[Rank 0] Move Remove Delta_down_up: Proposed = 25154, Accepted = 314, Rate = 0.0125
[Rank 0] Move Remove Delta_down_down: Proposed = 25071, Accepted = 249, Rate = 0.0099
[Rank 0] Move Shift one operator: Proposed = 99899, Accepted = 9239, Rate = 0.0925
Total number of measures: 10000
Total cycles (measures) / second: 3.45e+04
Average sign: 0.9994
Average order: 1.7817
Auto-correlation time: 1.9472 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:08 71.50% done, ETA 00:00:00, cycle 3575 of 5000, 3.57e+04 cycles/sec
[Rank 0] 08:09:08 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.59e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:08 33.73% done, ETA 00:00:00, cycle 3373 of 10000, 3.37e+04 cycles/sec
[Rank 0] 08:09:08 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.37e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1391 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2968 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.37e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2684):
[Rank 0] Move set Insert two operators: Duration = 0.0619
[Rank 0] Move Insert Delta_up: Duration = 0.0272
[Rank 0] Move Insert Delta_down: Duration = 0.0270
[Rank 0] Move set Remove two operators: Duration = 0.0374
[Rank 0] Move Remove Delta_up: Duration = 0.0150
[Rank 0] Move Remove Delta_down: Duration = 0.0149
[Rank 0] Move set Insert four operators: Duration = 0.0870
[Rank 0] Move Insert Delta_up_up: Duration = 0.0220
[Rank 0] Move Insert Delta_up_down: Duration = 0.0176
[Rank 0] Move Insert Delta_down_up: Duration = 0.0176
[Rank 0] Move Insert Delta_down_down: Duration = 0.0216
[Rank 0] Move set Remove four operators: Duration = 0.0242
[Rank 0] Move Remove Delta_up_up: Duration = 0.0029
[Rank 0] Move Remove Delta_up_down: Duration = 0.0052
[Rank 0] Move Remove Delta_down_up: Duration = 0.0053
[Rank 0] Move Remove Delta_down_down: Duration = 0.0029
[Rank 0] Move Shift one operator: Duration = 0.0578
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99554, Accepted = 8042, Rate = 0.0808
[Rank 0] Move Insert Delta_up: Proposed = 50092, Accepted = 4042, Rate = 0.0807
[Rank 0] Move Insert Delta_down: Proposed = 49462, Accepted = 4000, Rate = 0.0809
[Rank 0] Move set Remove two operators: Proposed = 99603, Accepted = 8095, Rate = 0.0813
[Rank 0] Move Remove Delta_up: Proposed = 49706, Accepted = 4066, Rate = 0.0818
[Rank 0] Move Remove Delta_down: Proposed = 49897, Accepted = 4029, Rate = 0.0807
[Rank 0] Move set Insert four operators: Proposed = 100583, Accepted = 999, Rate = 0.0099
[Rank 0] Move Insert Delta_up_up: Proposed = 25442, Accepted = 230, Rate = 0.0090
[Rank 0] Move Insert Delta_up_down: Proposed = 25116, Accepted = 277, Rate = 0.0110
[Rank 0] Move Insert Delta_down_up: Proposed = 25043, Accepted = 283, Rate = 0.0113
[Rank 0] Move Insert Delta_down_down: Proposed = 24982, Accepted = 209, Rate = 0.0084
[Rank 0] Move set Remove four operators: Proposed = 100230, Accepted = 973, Rate = 0.0097
[Rank 0] Move Remove Delta_up_up: Proposed = 24690, Accepted = 235, Rate = 0.0095
[Rank 0] Move Remove Delta_up_down: Proposed = 25244, Accepted = 257, Rate = 0.0102
[Rank 0] Move Remove Delta_down_up: Proposed = 25267, Accepted = 270, Rate = 0.0107
[Rank 0] Move Remove Delta_down_down: Proposed = 25029, Accepted = 211, Rate = 0.0084
[Rank 0] Move Shift one operator: Proposed = 100030, Accepted = 8656, Rate = 0.0865
Total number of measures: 10000
Total cycles (measures) / second: 3.37e+04
Average sign: 0.9968
Average order: 1.7405
Auto-correlation time: 2.90461 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:08 69.04% done, ETA 00:00:00, cycle 3452 of 5000, 3.45e+04 cycles/sec
[Rank 0] 08:09:08 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.50e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:08 34.52% done, ETA 00:00:00, cycle 3452 of 10000, 3.45e+04 cycles/sec
[Rank 0] 08:09:09 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.41e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1427 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2937 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.41e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2660):
[Rank 0] Move set Insert two operators: Duration = 0.0610
[Rank 0] Move Insert Delta_up: Duration = 0.0267
[Rank 0] Move Insert Delta_down: Duration = 0.0268
[Rank 0] Move set Remove two operators: Duration = 0.0375
[Rank 0] Move Remove Delta_up: Duration = 0.0149
[Rank 0] Move Remove Delta_down: Duration = 0.0151
[Rank 0] Move set Insert four operators: Duration = 0.0861
[Rank 0] Move Insert Delta_up_up: Duration = 0.0218
[Rank 0] Move Insert Delta_up_down: Duration = 0.0174
[Rank 0] Move Insert Delta_down_up: Duration = 0.0176
[Rank 0] Move Insert Delta_down_down: Duration = 0.0215
[Rank 0] Move set Remove four operators: Duration = 0.0242
[Rank 0] Move Remove Delta_up_up: Duration = 0.0027
[Rank 0] Move Remove Delta_up_down: Duration = 0.0053
[Rank 0] Move Remove Delta_down_up: Duration = 0.0053
[Rank 0] Move Remove Delta_down_down: Duration = 0.0028
[Rank 0] Move Shift one operator: Duration = 0.0572
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99490, Accepted = 7981, Rate = 0.0802
[Rank 0] Move Insert Delta_up: Proposed = 49828, Accepted = 3946, Rate = 0.0792
[Rank 0] Move Insert Delta_down: Proposed = 49662, Accepted = 4035, Rate = 0.0812
[Rank 0] Move set Remove two operators: Proposed = 99877, Accepted = 8081, Rate = 0.0809
[Rank 0] Move Remove Delta_up: Proposed = 49847, Accepted = 4003, Rate = 0.0803
[Rank 0] Move Remove Delta_down: Proposed = 50030, Accepted = 4078, Rate = 0.0815
[Rank 0] Move set Insert four operators: Proposed = 100624, Accepted = 976, Rate = 0.0097
[Rank 0] Move Insert Delta_up_up: Proposed = 25510, Accepted = 236, Rate = 0.0093
[Rank 0] Move Insert Delta_up_down: Proposed = 24946, Accepted = 259, Rate = 0.0104
[Rank 0] Move Insert Delta_down_up: Proposed = 25200, Accepted = 257, Rate = 0.0102
[Rank 0] Move Insert Delta_down_down: Proposed = 24968, Accepted = 224, Rate = 0.0090
[Rank 0] Move set Remove four operators: Proposed = 100089, Accepted = 928, Rate = 0.0093
[Rank 0] Move Remove Delta_up_up: Proposed = 24851, Accepted = 206, Rate = 0.0083
[Rank 0] Move Remove Delta_up_down: Proposed = 25085, Accepted = 258, Rate = 0.0103
[Rank 0] Move Remove Delta_down_up: Proposed = 25109, Accepted = 261, Rate = 0.0104
[Rank 0] Move Remove Delta_down_down: Proposed = 25044, Accepted = 203, Rate = 0.0081
[Rank 0] Move Shift one operator: Proposed = 99920, Accepted = 8789, Rate = 0.0880
Total number of measures: 10000
Total cycles (measures) / second: 3.41e+04
Average sign: 0.9974
Average order: 1.7589
Auto-correlation time: 1.71579 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:09 63.68% done, ETA 00:00:00, cycle 3184 of 5000, 3.18e+04 cycles/sec
[Rank 0] 08:09:09 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.22e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:09 34.09% done, ETA 00:00:00, cycle 3409 of 10000, 3.41e+04 cycles/sec
[Rank 0] 08:09:09 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.48e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1553 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2875 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.48e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2597):
[Rank 0] Move set Insert two operators: Duration = 0.0602
[Rank 0] Move Insert Delta_up: Duration = 0.0263
[Rank 0] Move Insert Delta_down: Duration = 0.0264
[Rank 0] Move set Remove two operators: Duration = 0.0362
[Rank 0] Move Remove Delta_up: Duration = 0.0142
[Rank 0] Move Remove Delta_down: Duration = 0.0145
[Rank 0] Move set Insert four operators: Duration = 0.0848
[Rank 0] Move Insert Delta_up_up: Duration = 0.0212
[Rank 0] Move Insert Delta_up_down: Duration = 0.0171
[Rank 0] Move Insert Delta_down_up: Duration = 0.0173
[Rank 0] Move Insert Delta_down_down: Duration = 0.0212
[Rank 0] Move set Remove four operators: Duration = 0.0232
[Rank 0] Move Remove Delta_up_up: Duration = 0.0026
[Rank 0] Move Remove Delta_up_down: Duration = 0.0049
[Rank 0] Move Remove Delta_down_up: Duration = 0.0050
[Rank 0] Move Remove Delta_down_down: Duration = 0.0028
[Rank 0] Move Shift one operator: Duration = 0.0553
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99740, Accepted = 7938, Rate = 0.0796
[Rank 0] Move Insert Delta_up: Proposed = 49995, Accepted = 3952, Rate = 0.0790
[Rank 0] Move Insert Delta_down: Proposed = 49745, Accepted = 3986, Rate = 0.0801
[Rank 0] Move set Remove two operators: Proposed = 99636, Accepted = 7906, Rate = 0.0793
[Rank 0] Move Remove Delta_up: Proposed = 49756, Accepted = 3941, Rate = 0.0792
[Rank 0] Move Remove Delta_down: Proposed = 49880, Accepted = 3965, Rate = 0.0795
[Rank 0] Move set Insert four operators: Proposed = 100610, Accepted = 895, Rate = 0.0089
[Rank 0] Move Insert Delta_up_up: Proposed = 25446, Accepted = 210, Rate = 0.0083
[Rank 0] Move Insert Delta_up_down: Proposed = 24968, Accepted = 237, Rate = 0.0095
[Rank 0] Move Insert Delta_down_up: Proposed = 25135, Accepted = 242, Rate = 0.0096
[Rank 0] Move Insert Delta_down_down: Proposed = 25061, Accepted = 206, Rate = 0.0082
[Rank 0] Move set Remove four operators: Proposed = 100104, Accepted = 911, Rate = 0.0091
[Rank 0] Move Remove Delta_up_up: Proposed = 24877, Accepted = 206, Rate = 0.0083
[Rank 0] Move Remove Delta_up_down: Proposed = 25183, Accepted = 254, Rate = 0.0101
[Rank 0] Move Remove Delta_down_up: Proposed = 25022, Accepted = 243, Rate = 0.0097
[Rank 0] Move Remove Delta_down_down: Proposed = 25022, Accepted = 208, Rate = 0.0083
[Rank 0] Move Shift one operator: Proposed = 99910, Accepted = 8405, Rate = 0.0841
Total number of measures: 10000
Total cycles (measures) / second: 3.48e+04
Average sign: 0.9978
Average order: 1.6771
Auto-correlation time: 1.96422 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:09 66.02% done, ETA 00:00:00, cycle 3301 of 5000, 3.30e+04 cycles/sec
[Rank 0] 08:09:09 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.27e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:09 33.07% done, ETA 00:00:00, cycle 3307 of 10000, 3.31e+04 cycles/sec
[Rank 0] 08:09:09 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.43e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1528 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2919 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.43e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0012
[Rank 0] Move durations (total = 0.2637):
[Rank 0] Move set Insert two operators: Duration = 0.0612
[Rank 0] Move Insert Delta_up: Duration = 0.0269
[Rank 0] Move Insert Delta_down: Duration = 0.0267
[Rank 0] Move set Remove two operators: Duration = 0.0366
[Rank 0] Move Remove Delta_up: Duration = 0.0146
[Rank 0] Move Remove Delta_down: Duration = 0.0146
[Rank 0] Move set Insert four operators: Duration = 0.0862
[Rank 0] Move Insert Delta_up_up: Duration = 0.0216
[Rank 0] Move Insert Delta_up_down: Duration = 0.0173
[Rank 0] Move Insert Delta_down_up: Duration = 0.0177
[Rank 0] Move Insert Delta_down_down: Duration = 0.0214
[Rank 0] Move set Remove four operators: Duration = 0.0235
[Rank 0] Move Remove Delta_up_up: Duration = 0.0027
[Rank 0] Move Remove Delta_up_down: Duration = 0.0050
[Rank 0] Move Remove Delta_down_up: Duration = 0.0051
[Rank 0] Move Remove Delta_down_down: Duration = 0.0028
[Rank 0] Move Shift one operator: Duration = 0.0561
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99634, Accepted = 7975, Rate = 0.0800
[Rank 0] Move Insert Delta_up: Proposed = 49977, Accepted = 4005, Rate = 0.0801
[Rank 0] Move Insert Delta_down: Proposed = 49657, Accepted = 3970, Rate = 0.0799
[Rank 0] Move set Remove two operators: Proposed = 99841, Accepted = 7933, Rate = 0.0795
[Rank 0] Move Remove Delta_up: Proposed = 49784, Accepted = 3990, Rate = 0.0801
[Rank 0] Move Remove Delta_down: Proposed = 50057, Accepted = 3943, Rate = 0.0788
[Rank 0] Move set Insert four operators: Proposed = 100688, Accepted = 934, Rate = 0.0093
[Rank 0] Move Insert Delta_up_up: Proposed = 25358, Accepted = 218, Rate = 0.0086
[Rank 0] Move Insert Delta_up_down: Proposed = 24934, Accepted = 233, Rate = 0.0093
[Rank 0] Move Insert Delta_down_up: Proposed = 25349, Accepted = 272, Rate = 0.0107
[Rank 0] Move Insert Delta_down_down: Proposed = 25047, Accepted = 211, Rate = 0.0084
[Rank 0] Move set Remove four operators: Proposed = 100120, Accepted = 954, Rate = 0.0095
[Rank 0] Move Remove Delta_up_up: Proposed = 24913, Accepted = 223, Rate = 0.0090
[Rank 0] Move Remove Delta_up_down: Proposed = 25042, Accepted = 247, Rate = 0.0099
[Rank 0] Move Remove Delta_down_up: Proposed = 25122, Accepted = 262, Rate = 0.0104
[Rank 0] Move Remove Delta_down_down: Proposed = 25043, Accepted = 222, Rate = 0.0089
[Rank 0] Move Shift one operator: Proposed = 99717, Accepted = 8414, Rate = 0.0844
Total number of measures: 10000
Total cycles (measures) / second: 3.43e+04
Average sign: 0.9968
Average order: 1.6928
Auto-correlation time: 3.37333 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:10 67.92% done, ETA 00:00:00, cycle 3396 of 5000, 3.40e+04 cycles/sec
[Rank 0] 08:09:10 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.46e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:10 34.31% done, ETA 00:00:00, cycle 3431 of 10000, 3.43e+04 cycles/sec
[Rank 0] 08:09:10 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.45e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1443 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2900 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.45e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2624):
[Rank 0] Move set Insert two operators: Duration = 0.0602
[Rank 0] Move Insert Delta_up: Duration = 0.0262
[Rank 0] Move Insert Delta_down: Duration = 0.0265
[Rank 0] Move set Remove two operators: Duration = 0.0365
[Rank 0] Move Remove Delta_up: Duration = 0.0146
[Rank 0] Move Remove Delta_down: Duration = 0.0147
[Rank 0] Move set Insert four operators: Duration = 0.0851
[Rank 0] Move Insert Delta_up_up: Duration = 0.0216
[Rank 0] Move Insert Delta_up_down: Duration = 0.0172
[Rank 0] Move Insert Delta_down_up: Duration = 0.0173
[Rank 0] Move Insert Delta_down_down: Duration = 0.0213
[Rank 0] Move set Remove four operators: Duration = 0.0240
[Rank 0] Move Remove Delta_up_up: Duration = 0.0028
[Rank 0] Move Remove Delta_up_down: Duration = 0.0053
[Rank 0] Move Remove Delta_down_up: Duration = 0.0053
[Rank 0] Move Remove Delta_down_down: Duration = 0.0029
[Rank 0] Move Shift one operator: Duration = 0.0566
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99497, Accepted = 8074, Rate = 0.0811
[Rank 0] Move Insert Delta_up: Proposed = 49799, Accepted = 3983, Rate = 0.0800
[Rank 0] Move Insert Delta_down: Proposed = 49698, Accepted = 4091, Rate = 0.0823
[Rank 0] Move set Remove two operators: Proposed = 99527, Accepted = 7954, Rate = 0.0799
[Rank 0] Move Remove Delta_up: Proposed = 49508, Accepted = 3952, Rate = 0.0798
[Rank 0] Move Remove Delta_down: Proposed = 50019, Accepted = 4002, Rate = 0.0800
[Rank 0] Move set Insert four operators: Proposed = 100921, Accepted = 934, Rate = 0.0093
[Rank 0] Move Insert Delta_up_up: Proposed = 25599, Accepted = 219, Rate = 0.0086
[Rank 0] Move Insert Delta_up_down: Proposed = 25064, Accepted = 246, Rate = 0.0098
[Rank 0] Move Insert Delta_down_up: Proposed = 25150, Accepted = 265, Rate = 0.0105
[Rank 0] Move Insert Delta_down_down: Proposed = 25108, Accepted = 204, Rate = 0.0081
[Rank 0] Move set Remove four operators: Proposed = 100025, Accepted = 994, Rate = 0.0099
[Rank 0] Move Remove Delta_up_up: Proposed = 24790, Accepted = 230, Rate = 0.0093
[Rank 0] Move Remove Delta_up_down: Proposed = 25234, Accepted = 252, Rate = 0.0100
[Rank 0] Move Remove Delta_down_up: Proposed = 25074, Accepted = 268, Rate = 0.0107
[Rank 0] Move Remove Delta_down_down: Proposed = 24927, Accepted = 244, Rate = 0.0098
[Rank 0] Move Shift one operator: Proposed = 100030, Accepted = 8768, Rate = 0.0877
Total number of measures: 10000
Total cycles (measures) / second: 3.45e+04
Average sign: 0.9932
Average order: 1.7751
Auto-correlation time: 2.62606 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3*c_dag('down',0)*c('down',0) + -3*c_dag('up',0)*c('up',0) + 6*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:10 67.36% done, ETA 00:00:00, cycle 3368 of 5000, 3.37e+04 cycles/sec
[Rank 0] 08:09:10 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.28e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:10 33.98% done, ETA 00:00:00, cycle 3398 of 10000, 3.40e+04 cycles/sec
[Rank 0] 08:09:10 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.44e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1526 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2907 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.44e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0012
[Rank 0] Move durations (total = 0.2629):
[Rank 0] Move set Insert two operators: Duration = 0.0606
[Rank 0] Move Insert Delta_up: Duration = 0.0266
[Rank 0] Move Insert Delta_down: Duration = 0.0264
[Rank 0] Move set Remove two operators: Duration = 0.0364
[Rank 0] Move Remove Delta_up: Duration = 0.0146
[Rank 0] Move Remove Delta_down: Duration = 0.0145
[Rank 0] Move set Insert four operators: Duration = 0.0863
[Rank 0] Move Insert Delta_up_up: Duration = 0.0217
[Rank 0] Move Insert Delta_up_down: Duration = 0.0174
[Rank 0] Move Insert Delta_down_up: Duration = 0.0175
[Rank 0] Move Insert Delta_down_down: Duration = 0.0216
[Rank 0] Move set Remove four operators: Duration = 0.0235
[Rank 0] Move Remove Delta_up_up: Duration = 0.0027
[Rank 0] Move Remove Delta_up_down: Duration = 0.0051
[Rank 0] Move Remove Delta_down_up: Duration = 0.0051
[Rank 0] Move Remove Delta_down_down: Duration = 0.0027
[Rank 0] Move Shift one operator: Duration = 0.0561
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99491, Accepted = 7926, Rate = 0.0797
[Rank 0] Move Insert Delta_up: Proposed = 49986, Accepted = 3991, Rate = 0.0798
[Rank 0] Move Insert Delta_down: Proposed = 49505, Accepted = 3935, Rate = 0.0795
[Rank 0] Move set Remove two operators: Proposed = 99517, Accepted = 8024, Rate = 0.0806
[Rank 0] Move Remove Delta_up: Proposed = 49752, Accepted = 4071, Rate = 0.0818
[Rank 0] Move Remove Delta_down: Proposed = 49765, Accepted = 3953, Rate = 0.0794
[Rank 0] Move set Insert four operators: Proposed = 101027, Accepted = 958, Rate = 0.0095
[Rank 0] Move Insert Delta_up_up: Proposed = 25652, Accepted = 230, Rate = 0.0090
[Rank 0] Move Insert Delta_up_down: Proposed = 24963, Accepted = 275, Rate = 0.0110
[Rank 0] Move Insert Delta_down_up: Proposed = 25185, Accepted = 245, Rate = 0.0097
[Rank 0] Move Insert Delta_down_down: Proposed = 25227, Accepted = 208, Rate = 0.0082
[Rank 0] Move set Remove four operators: Proposed = 100167, Accepted = 909, Rate = 0.0091
[Rank 0] Move Remove Delta_up_up: Proposed = 24710, Accepted = 215, Rate = 0.0087
[Rank 0] Move Remove Delta_up_down: Proposed = 25223, Accepted = 224, Rate = 0.0089
[Rank 0] Move Remove Delta_down_up: Proposed = 25123, Accepted = 248, Rate = 0.0099
[Rank 0] Move Remove Delta_down_down: Proposed = 25111, Accepted = 222, Rate = 0.0088
[Rank 0] Move Shift one operator: Proposed = 99798, Accepted = 8663, Rate = 0.0868
Total number of measures: 10000
Total cycles (measures) / second: 3.44e+04
Average sign: 0.9966
Average order: 1.7002
Auto-correlation time: 2.49661 cycles
U = 7.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:11 42.78% done, ETA 00:00:00, cycle 2139 of 5000, 2.14e+04 cycles/sec
[Rank 0] 08:09:11 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.25e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:11 23.78% done, ETA 00:00:00, cycle 2378 of 10000, 2.38e+04 cycles/sec
[Rank 0] 08:09:11 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.34e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2219 seconds [00:00:00]
[Rank 0] Simulation duration: 0.4271 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.34e+04
[Rank 0] Measurement durations (total = 0.0028):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0015
[Rank 0] Move durations (total = 0.3983):
[Rank 0] Move set Insert two operators: Duration = 0.0764
[Rank 0] Move Insert Delta_up: Duration = 0.0343
[Rank 0] Move Insert Delta_down: Duration = 0.0345
[Rank 0] Move set Remove two operators: Duration = 0.0594
[Rank 0] Move Remove Delta_up: Duration = 0.0258
[Rank 0] Move Remove Delta_down: Duration = 0.0261
[Rank 0] Move set Insert four operators: Duration = 0.1057
[Rank 0] Move Insert Delta_up_up: Duration = 0.0270
[Rank 0] Move Insert Delta_up_down: Duration = 0.0216
[Rank 0] Move Insert Delta_down_up: Duration = 0.0220
[Rank 0] Move Insert Delta_down_down: Duration = 0.0269
[Rank 0] Move set Remove four operators: Duration = 0.0482
[Rank 0] Move Remove Delta_up_up: Duration = 0.0071
[Rank 0] Move Remove Delta_up_down: Duration = 0.0131
[Rank 0] Move Remove Delta_down_up: Duration = 0.0131
[Rank 0] Move Remove Delta_down_down: Duration = 0.0070
[Rank 0] Move Shift one operator: Duration = 0.1085
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100093, Accepted = 8267, Rate = 0.0826
[Rank 0] Move Insert Delta_up: Proposed = 50002, Accepted = 4107, Rate = 0.0821
[Rank 0] Move Insert Delta_down: Proposed = 50091, Accepted = 4160, Rate = 0.0830
[Rank 0] Move set Remove two operators: Proposed = 99946, Accepted = 8291, Rate = 0.0830
[Rank 0] Move Remove Delta_up: Proposed = 49798, Accepted = 4111, Rate = 0.0826
[Rank 0] Move Remove Delta_down: Proposed = 50148, Accepted = 4180, Rate = 0.0834
[Rank 0] Move set Insert four operators: Proposed = 100117, Accepted = 1500, Rate = 0.0150
[Rank 0] Move Insert Delta_up_up: Proposed = 25067, Accepted = 322, Rate = 0.0128
[Rank 0] Move Insert Delta_up_down: Proposed = 24929, Accepted = 404, Rate = 0.0162
[Rank 0] Move Insert Delta_down_up: Proposed = 25169, Accepted = 469, Rate = 0.0186
[Rank 0] Move Insert Delta_down_down: Proposed = 24952, Accepted = 305, Rate = 0.0122
[Rank 0] Move set Remove four operators: Proposed = 99489, Accepted = 1491, Rate = 0.0150
[Rank 0] Move Remove Delta_up_up: Proposed = 24604, Accepted = 319, Rate = 0.0130
[Rank 0] Move Remove Delta_up_down: Proposed = 25070, Accepted = 435, Rate = 0.0174
[Rank 0] Move Remove Delta_down_up: Proposed = 25085, Accepted = 441, Rate = 0.0176
[Rank 0] Move Remove Delta_down_down: Proposed = 24730, Accepted = 296, Rate = 0.0120
[Rank 0] Move Shift one operator: Proposed = 100355, Accepted = 23410, Rate = 0.2333
Total number of measures: 10000
Total cycles (measures) / second: 2.34e+04
Average sign: 1
Average order: 3.9717
Auto-correlation time: 6.56743 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:11 70.96% done, ETA 00:00:00, cycle 3548 of 5000, 3.55e+04 cycles/sec
[Rank 0] 08:09:11 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.52e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:11 32.35% done, ETA 00:00:00, cycle 3235 of 10000, 3.23e+04 cycles/sec
[Rank 0] 08:09:12 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.19e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1419 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3133 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.19e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2837):
[Rank 0] Move set Insert two operators: Duration = 0.0651
[Rank 0] Move Insert Delta_up: Duration = 0.0286
[Rank 0] Move Insert Delta_down: Duration = 0.0285
[Rank 0] Move set Remove two operators: Duration = 0.0393
[Rank 0] Move Remove Delta_up: Duration = 0.0157
[Rank 0] Move Remove Delta_down: Duration = 0.0157
[Rank 0] Move set Insert four operators: Duration = 0.0920
[Rank 0] Move Insert Delta_up_up: Duration = 0.0231
[Rank 0] Move Insert Delta_up_down: Duration = 0.0187
[Rank 0] Move Insert Delta_down_up: Duration = 0.0190
[Rank 0] Move Insert Delta_down_down: Duration = 0.0226
[Rank 0] Move set Remove four operators: Duration = 0.0264
[Rank 0] Move Remove Delta_up_up: Duration = 0.0032
[Rank 0] Move Remove Delta_up_down: Duration = 0.0060
[Rank 0] Move Remove Delta_down_up: Duration = 0.0060
[Rank 0] Move Remove Delta_down_down: Duration = 0.0031
[Rank 0] Move Shift one operator: Duration = 0.0610
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99850, Accepted = 8301, Rate = 0.0831
[Rank 0] Move Insert Delta_up: Proposed = 50067, Accepted = 4139, Rate = 0.0827
[Rank 0] Move Insert Delta_down: Proposed = 49783, Accepted = 4162, Rate = 0.0836
[Rank 0] Move set Remove two operators: Proposed = 99837, Accepted = 8328, Rate = 0.0834
[Rank 0] Move Remove Delta_up: Proposed = 50021, Accepted = 4145, Rate = 0.0829
[Rank 0] Move Remove Delta_down: Proposed = 49816, Accepted = 4183, Rate = 0.0840
[Rank 0] Move set Insert four operators: Proposed = 100215, Accepted = 1335, Rate = 0.0133
[Rank 0] Move Insert Delta_up_up: Proposed = 25344, Accepted = 248, Rate = 0.0098
[Rank 0] Move Insert Delta_up_down: Proposed = 24855, Accepted = 405, Rate = 0.0163
[Rank 0] Move Insert Delta_down_up: Proposed = 25082, Accepted = 450, Rate = 0.0179
[Rank 0] Move Insert Delta_down_down: Proposed = 24934, Accepted = 232, Rate = 0.0093
[Rank 0] Move set Remove four operators: Proposed = 100221, Accepted = 1321, Rate = 0.0132
[Rank 0] Move Remove Delta_up_up: Proposed = 24738, Accepted = 248, Rate = 0.0100
[Rank 0] Move Remove Delta_up_down: Proposed = 25179, Accepted = 417, Rate = 0.0166
[Rank 0] Move Remove Delta_down_up: Proposed = 25158, Accepted = 432, Rate = 0.0172
[Rank 0] Move Remove Delta_down_down: Proposed = 25146, Accepted = 224, Rate = 0.0089
[Rank 0] Move Shift one operator: Proposed = 99877, Accepted = 9227, Rate = 0.0924
Total number of measures: 10000
Total cycles (measures) / second: 3.19e+04
Average sign: 1
Average order: 1.7472
Auto-correlation time: 2.43595 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:12 69.66% done, ETA 00:00:00, cycle 3483 of 5000, 3.48e+04 cycles/sec
[Rank 0] 08:09:12 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.51e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:12 35.59% done, ETA 00:00:00, cycle 3559 of 10000, 3.56e+04 cycles/sec
[Rank 0] 08:09:12 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.59e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1423 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2787 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.59e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2501):
[Rank 0] Move set Insert two operators: Duration = 0.0593
[Rank 0] Move Insert Delta_up: Duration = 0.0257
[Rank 0] Move Insert Delta_down: Duration = 0.0258
[Rank 0] Move set Remove two operators: Duration = 0.0333
[Rank 0] Move Remove Delta_up: Duration = 0.0128
[Rank 0] Move Remove Delta_down: Duration = 0.0129
[Rank 0] Move set Insert four operators: Duration = 0.0846
[Rank 0] Move Insert Delta_up_up: Duration = 0.0213
[Rank 0] Move Insert Delta_up_down: Duration = 0.0169
[Rank 0] Move Insert Delta_down_up: Duration = 0.0173
[Rank 0] Move Insert Delta_down_down: Duration = 0.0209
[Rank 0] Move set Remove four operators: Duration = 0.0218
[Rank 0] Move Remove Delta_up_up: Duration = 0.0025
[Rank 0] Move Remove Delta_up_down: Duration = 0.0045
[Rank 0] Move Remove Delta_down_up: Duration = 0.0045
[Rank 0] Move Remove Delta_down_down: Duration = 0.0024
[Rank 0] Move Shift one operator: Duration = 0.0510
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99672, Accepted = 7597, Rate = 0.0762
[Rank 0] Move Insert Delta_up: Proposed = 49926, Accepted = 3779, Rate = 0.0757
[Rank 0] Move Insert Delta_down: Proposed = 49746, Accepted = 3818, Rate = 0.0767
[Rank 0] Move set Remove two operators: Proposed = 99718, Accepted = 7524, Rate = 0.0755
[Rank 0] Move Remove Delta_up: Proposed = 49734, Accepted = 3776, Rate = 0.0759
[Rank 0] Move Remove Delta_down: Proposed = 49984, Accepted = 3748, Rate = 0.0750
[Rank 0] Move set Insert four operators: Proposed = 100536, Accepted = 891, Rate = 0.0089
[Rank 0] Move Insert Delta_up_up: Proposed = 25455, Accepted = 206, Rate = 0.0081
[Rank 0] Move Insert Delta_up_down: Proposed = 24794, Accepted = 247, Rate = 0.0100
[Rank 0] Move Insert Delta_down_up: Proposed = 25184, Accepted = 286, Rate = 0.0114
[Rank 0] Move Insert Delta_down_down: Proposed = 25103, Accepted = 152, Rate = 0.0061
[Rank 0] Move set Remove four operators: Proposed = 100058, Accepted = 929, Rate = 0.0093
[Rank 0] Move Remove Delta_up_up: Proposed = 24795, Accepted = 203, Rate = 0.0082
[Rank 0] Move Remove Delta_up_down: Proposed = 25081, Accepted = 273, Rate = 0.0109
[Rank 0] Move Remove Delta_down_up: Proposed = 25148, Accepted = 269, Rate = 0.0107
[Rank 0] Move Remove Delta_down_down: Proposed = 25034, Accepted = 184, Rate = 0.0074
[Rank 0] Move Shift one operator: Proposed = 100016, Accepted = 6957, Rate = 0.0696
Total number of measures: 10000
Total cycles (measures) / second: 3.59e+04
Average sign: 0.9996
Average order: 1.4869
Auto-correlation time: 2.46206 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:12 69.36% done, ETA 00:00:00, cycle 3468 of 5000, 3.47e+04 cycles/sec
[Rank 0] 08:09:12 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.52e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:12 34.80% done, ETA 00:00:00, cycle 3480 of 10000, 3.48e+04 cycles/sec
[Rank 0] 08:09:13 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.54e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1422 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2822 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.54e+04
[Rank 0] Measurement durations (total = 0.0026):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0012
[Rank 0] Move durations (total = 0.2525):
[Rank 0] Move set Insert two operators: Duration = 0.0601
[Rank 0] Move Insert Delta_up: Duration = 0.0260
[Rank 0] Move Insert Delta_down: Duration = 0.0261
[Rank 0] Move set Remove two operators: Duration = 0.0333
[Rank 0] Move Remove Delta_up: Duration = 0.0129
[Rank 0] Move Remove Delta_down: Duration = 0.0127
[Rank 0] Move set Insert four operators: Duration = 0.0865
[Rank 0] Move Insert Delta_up_up: Duration = 0.0217
[Rank 0] Move Insert Delta_up_down: Duration = 0.0173
[Rank 0] Move Insert Delta_down_up: Duration = 0.0174
[Rank 0] Move Insert Delta_down_down: Duration = 0.0216
[Rank 0] Move set Remove four operators: Duration = 0.0217
[Rank 0] Move Remove Delta_up_up: Duration = 0.0025
[Rank 0] Move Remove Delta_up_down: Duration = 0.0043
[Rank 0] Move Remove Delta_down_up: Duration = 0.0043
[Rank 0] Move Remove Delta_down_down: Duration = 0.0024
[Rank 0] Move Shift one operator: Duration = 0.0509
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99509, Accepted = 7212, Rate = 0.0725
[Rank 0] Move Insert Delta_up: Proposed = 49732, Accepted = 3559, Rate = 0.0716
[Rank 0] Move Insert Delta_down: Proposed = 49777, Accepted = 3653, Rate = 0.0734
[Rank 0] Move set Remove two operators: Proposed = 99734, Accepted = 7186, Rate = 0.0721
[Rank 0] Move Remove Delta_up: Proposed = 49817, Accepted = 3542, Rate = 0.0711
[Rank 0] Move Remove Delta_down: Proposed = 49917, Accepted = 3644, Rate = 0.0730
[Rank 0] Move set Insert four operators: Proposed = 100656, Accepted = 736, Rate = 0.0073
[Rank 0] Move Insert Delta_up_up: Proposed = 25467, Accepted = 181, Rate = 0.0071
[Rank 0] Move Insert Delta_up_down: Proposed = 24844, Accepted = 187, Rate = 0.0075
[Rank 0] Move Insert Delta_down_up: Proposed = 25144, Accepted = 206, Rate = 0.0082
[Rank 0] Move Insert Delta_down_down: Proposed = 25201, Accepted = 162, Rate = 0.0064
[Rank 0] Move set Remove four operators: Proposed = 100116, Accepted = 749, Rate = 0.0075
[Rank 0] Move Remove Delta_up_up: Proposed = 24747, Accepted = 184, Rate = 0.0074
[Rank 0] Move Remove Delta_up_down: Proposed = 25150, Accepted = 191, Rate = 0.0076
[Rank 0] Move Remove Delta_down_up: Proposed = 25222, Accepted = 214, Rate = 0.0085
[Rank 0] Move Remove Delta_down_down: Proposed = 24997, Accepted = 160, Rate = 0.0064
[Rank 0] Move Shift one operator: Proposed = 99985, Accepted = 6380, Rate = 0.0638
Total number of measures: 10000
Total cycles (measures) / second: 3.54e+04
Average sign: 0.9986
Average order: 1.4453
Auto-correlation time: 2.04671 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:13 72.62% done, ETA 00:00:00, cycle 3631 of 5000, 3.63e+04 cycles/sec
[Rank 0] 08:09:13 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.61e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:13 35.34% done, ETA 00:00:00, cycle 3534 of 10000, 3.53e+04 cycles/sec
[Rank 0] 08:09:13 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.58e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1386 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2795 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.58e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2504):
[Rank 0] Move set Insert two operators: Duration = 0.0597
[Rank 0] Move Insert Delta_up: Duration = 0.0258
[Rank 0] Move Insert Delta_down: Duration = 0.0259
[Rank 0] Move set Remove two operators: Duration = 0.0330
[Rank 0] Move Remove Delta_up: Duration = 0.0127
[Rank 0] Move Remove Delta_down: Duration = 0.0126
[Rank 0] Move set Insert four operators: Duration = 0.0854
[Rank 0] Move Insert Delta_up_up: Duration = 0.0214
[Rank 0] Move Insert Delta_up_down: Duration = 0.0172
[Rank 0] Move Insert Delta_down_up: Duration = 0.0172
[Rank 0] Move Insert Delta_down_down: Duration = 0.0212
[Rank 0] Move set Remove four operators: Duration = 0.0215
[Rank 0] Move Remove Delta_up_up: Duration = 0.0023
[Rank 0] Move Remove Delta_up_down: Duration = 0.0042
[Rank 0] Move Remove Delta_down_up: Duration = 0.0042
[Rank 0] Move Remove Delta_down_down: Duration = 0.0024
[Rank 0] Move Shift one operator: Duration = 0.0509
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99590, Accepted = 7105, Rate = 0.0713
[Rank 0] Move Insert Delta_up: Proposed = 49826, Accepted = 3520, Rate = 0.0706
[Rank 0] Move Insert Delta_down: Proposed = 49764, Accepted = 3585, Rate = 0.0720
[Rank 0] Move set Remove two operators: Proposed = 99796, Accepted = 7175, Rate = 0.0719
[Rank 0] Move Remove Delta_up: Proposed = 49741, Accepted = 3585, Rate = 0.0721
[Rank 0] Move Remove Delta_down: Proposed = 50055, Accepted = 3590, Rate = 0.0717
[Rank 0] Move set Insert four operators: Proposed = 100591, Accepted = 757, Rate = 0.0075
[Rank 0] Move Insert Delta_up_up: Proposed = 25487, Accepted = 175, Rate = 0.0069
[Rank 0] Move Insert Delta_up_down: Proposed = 24980, Accepted = 204, Rate = 0.0082
[Rank 0] Move Insert Delta_down_up: Proposed = 25068, Accepted = 220, Rate = 0.0088
[Rank 0] Move Insert Delta_down_down: Proposed = 25056, Accepted = 158, Rate = 0.0063
[Rank 0] Move set Remove four operators: Proposed = 100067, Accepted = 722, Rate = 0.0072
[Rank 0] Move Remove Delta_up_up: Proposed = 24923, Accepted = 156, Rate = 0.0063
[Rank 0] Move Remove Delta_up_down: Proposed = 25017, Accepted = 182, Rate = 0.0073
[Rank 0] Move Remove Delta_down_up: Proposed = 24987, Accepted = 214, Rate = 0.0086
[Rank 0] Move Remove Delta_down_down: Proposed = 25140, Accepted = 170, Rate = 0.0068
[Rank 0] Move Shift one operator: Proposed = 99956, Accepted = 6368, Rate = 0.0637
Total number of measures: 10000
Total cycles (measures) / second: 3.58e+04
Average sign: 0.991
Average order: 1.442
Auto-correlation time: 2.5286 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:13 71.08% done, ETA 00:00:00, cycle 3554 of 5000, 3.55e+04 cycles/sec
[Rank 0] 08:09:13 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.60e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:13 37.03% done, ETA 00:00:00, cycle 3703 of 10000, 3.70e+04 cycles/sec
[Rank 0] 08:09:13 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.70e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1388 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2701 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.70e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2416):
[Rank 0] Move set Insert two operators: Duration = 0.0576
[Rank 0] Move Insert Delta_up: Duration = 0.0249
[Rank 0] Move Insert Delta_down: Duration = 0.0250
[Rank 0] Move set Remove two operators: Duration = 0.0319
[Rank 0] Move Remove Delta_up: Duration = 0.0122
[Rank 0] Move Remove Delta_down: Duration = 0.0122
[Rank 0] Move set Insert four operators: Duration = 0.0829
[Rank 0] Move Insert Delta_up_up: Duration = 0.0206
[Rank 0] Move Insert Delta_up_down: Duration = 0.0165
[Rank 0] Move Insert Delta_down_up: Duration = 0.0168
[Rank 0] Move Insert Delta_down_down: Duration = 0.0206
[Rank 0] Move set Remove four operators: Duration = 0.0207
[Rank 0] Move Remove Delta_up_up: Duration = 0.0023
[Rank 0] Move Remove Delta_up_down: Duration = 0.0040
[Rank 0] Move Remove Delta_down_up: Duration = 0.0041
[Rank 0] Move Remove Delta_down_down: Duration = 0.0024
[Rank 0] Move Shift one operator: Duration = 0.0485
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99677, Accepted = 7205, Rate = 0.0723
[Rank 0] Move Insert Delta_up: Proposed = 49871, Accepted = 3556, Rate = 0.0713
[Rank 0] Move Insert Delta_down: Proposed = 49806, Accepted = 3649, Rate = 0.0733
[Rank 0] Move set Remove two operators: Proposed = 99843, Accepted = 7232, Rate = 0.0724
[Rank 0] Move Remove Delta_up: Proposed = 49843, Accepted = 3590, Rate = 0.0720
[Rank 0] Move Remove Delta_down: Proposed = 50000, Accepted = 3642, Rate = 0.0728
[Rank 0] Move set Insert four operators: Proposed = 100582, Accepted = 752, Rate = 0.0075
[Rank 0] Move Insert Delta_up_up: Proposed = 25401, Accepted = 195, Rate = 0.0077
[Rank 0] Move Insert Delta_up_down: Proposed = 24960, Accepted = 180, Rate = 0.0072
[Rank 0] Move Insert Delta_down_up: Proposed = 25113, Accepted = 214, Rate = 0.0085
[Rank 0] Move Insert Delta_down_down: Proposed = 25108, Accepted = 163, Rate = 0.0065
[Rank 0] Move set Remove four operators: Proposed = 100028, Accepted = 738, Rate = 0.0074
[Rank 0] Move Remove Delta_up_up: Proposed = 24865, Accepted = 176, Rate = 0.0071
[Rank 0] Move Remove Delta_up_down: Proposed = 25153, Accepted = 179, Rate = 0.0071
[Rank 0] Move Remove Delta_down_up: Proposed = 24984, Accepted = 219, Rate = 0.0088
[Rank 0] Move Remove Delta_down_down: Proposed = 25026, Accepted = 164, Rate = 0.0066
[Rank 0] Move Shift one operator: Proposed = 99870, Accepted = 6407, Rate = 0.0642
Total number of measures: 10000
Total cycles (measures) / second: 3.70e+04
Average sign: 0.996
Average order: 1.4256
Auto-correlation time: 1.80244 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:14 70.34% done, ETA 00:00:00, cycle 3517 of 5000, 3.52e+04 cycles/sec
[Rank 0] 08:09:14 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.58e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:14 36.78% done, ETA 00:00:00, cycle 3678 of 10000, 3.68e+04 cycles/sec
[Rank 0] 08:09:14 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.68e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1397 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2719 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.68e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2431):
[Rank 0] Move set Insert two operators: Duration = 0.0579
[Rank 0] Move Insert Delta_up: Duration = 0.0249
[Rank 0] Move Insert Delta_down: Duration = 0.0254
[Rank 0] Move set Remove two operators: Duration = 0.0322
[Rank 0] Move Remove Delta_up: Duration = 0.0122
[Rank 0] Move Remove Delta_down: Duration = 0.0124
[Rank 0] Move set Insert four operators: Duration = 0.0834
[Rank 0] Move Insert Delta_up_up: Duration = 0.0209
[Rank 0] Move Insert Delta_up_down: Duration = 0.0167
[Rank 0] Move Insert Delta_down_up: Duration = 0.0167
[Rank 0] Move Insert Delta_down_down: Duration = 0.0206
[Rank 0] Move set Remove four operators: Duration = 0.0207
[Rank 0] Move Remove Delta_up_up: Duration = 0.0023
[Rank 0] Move Remove Delta_up_down: Duration = 0.0041
[Rank 0] Move Remove Delta_down_up: Duration = 0.0041
[Rank 0] Move Remove Delta_down_down: Duration = 0.0023
[Rank 0] Move Shift one operator: Duration = 0.0488
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99587, Accepted = 7167, Rate = 0.0720
[Rank 0] Move Insert Delta_up: Proposed = 49696, Accepted = 3513, Rate = 0.0707
[Rank 0] Move Insert Delta_down: Proposed = 49891, Accepted = 3654, Rate = 0.0732
[Rank 0] Move set Remove two operators: Proposed = 99959, Accepted = 7153, Rate = 0.0716
[Rank 0] Move Remove Delta_up: Proposed = 49891, Accepted = 3514, Rate = 0.0704
[Rank 0] Move Remove Delta_down: Proposed = 50068, Accepted = 3639, Rate = 0.0727
[Rank 0] Move set Insert four operators: Proposed = 100396, Accepted = 711, Rate = 0.0071
[Rank 0] Move Insert Delta_up_up: Proposed = 25485, Accepted = 175, Rate = 0.0069
[Rank 0] Move Insert Delta_up_down: Proposed = 24918, Accepted = 196, Rate = 0.0079
[Rank 0] Move Insert Delta_down_up: Proposed = 25006, Accepted = 186, Rate = 0.0074
[Rank 0] Move Insert Delta_down_down: Proposed = 24987, Accepted = 154, Rate = 0.0062
[Rank 0] Move set Remove four operators: Proposed = 100201, Accepted = 718, Rate = 0.0072
[Rank 0] Move Remove Delta_up_up: Proposed = 24768, Accepted = 178, Rate = 0.0072
[Rank 0] Move Remove Delta_up_down: Proposed = 25178, Accepted = 193, Rate = 0.0077
[Rank 0] Move Remove Delta_down_up: Proposed = 25139, Accepted = 182, Rate = 0.0072
[Rank 0] Move Remove Delta_down_down: Proposed = 25116, Accepted = 165, Rate = 0.0066
[Rank 0] Move Shift one operator: Proposed = 99857, Accepted = 6171, Rate = 0.0618
Total number of measures: 10000
Total cycles (measures) / second: 3.68e+04
Average sign: 0.9934
Average order: 1.4186
Auto-correlation time: 2.4427 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:14 68.86% done, ETA 00:00:00, cycle 3443 of 5000, 3.44e+04 cycles/sec
[Rank 0] 08:09:14 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.61e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:14 35.48% done, ETA 00:00:00, cycle 3548 of 10000, 3.55e+04 cycles/sec
[Rank 0] 08:09:14 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.71e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1385 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2696 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.71e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2413):
[Rank 0] Move set Insert two operators: Duration = 0.0577
[Rank 0] Move Insert Delta_up: Duration = 0.0250
[Rank 0] Move Insert Delta_down: Duration = 0.0251
[Rank 0] Move set Remove two operators: Duration = 0.0318
[Rank 0] Move Remove Delta_up: Duration = 0.0121
[Rank 0] Move Remove Delta_down: Duration = 0.0123
[Rank 0] Move set Insert four operators: Duration = 0.0825
[Rank 0] Move Insert Delta_up_up: Duration = 0.0207
[Rank 0] Move Insert Delta_up_down: Duration = 0.0164
[Rank 0] Move Insert Delta_down_up: Duration = 0.0166
[Rank 0] Move Insert Delta_down_down: Duration = 0.0205
[Rank 0] Move set Remove four operators: Duration = 0.0205
[Rank 0] Move Remove Delta_up_up: Duration = 0.0023
[Rank 0] Move Remove Delta_up_down: Duration = 0.0040
[Rank 0] Move Remove Delta_down_up: Duration = 0.0040
[Rank 0] Move Remove Delta_down_down: Duration = 0.0023
[Rank 0] Move Shift one operator: Duration = 0.0488
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99775, Accepted = 7222, Rate = 0.0724
[Rank 0] Move Insert Delta_up: Proposed = 49898, Accepted = 3592, Rate = 0.0720
[Rank 0] Move Insert Delta_down: Proposed = 49877, Accepted = 3630, Rate = 0.0728
[Rank 0] Move set Remove two operators: Proposed = 99954, Accepted = 7183, Rate = 0.0719
[Rank 0] Move Remove Delta_up: Proposed = 49816, Accepted = 3575, Rate = 0.0718
[Rank 0] Move Remove Delta_down: Proposed = 50138, Accepted = 3608, Rate = 0.0720
[Rank 0] Move set Insert four operators: Proposed = 100438, Accepted = 708, Rate = 0.0070
[Rank 0] Move Insert Delta_up_up: Proposed = 25427, Accepted = 181, Rate = 0.0071
[Rank 0] Move Insert Delta_up_down: Proposed = 24897, Accepted = 175, Rate = 0.0070
[Rank 0] Move Insert Delta_down_up: Proposed = 25101, Accepted = 201, Rate = 0.0080
[Rank 0] Move Insert Delta_down_down: Proposed = 25013, Accepted = 151, Rate = 0.0060
[Rank 0] Move set Remove four operators: Proposed = 99965, Accepted = 728, Rate = 0.0073
[Rank 0] Move Remove Delta_up_up: Proposed = 24842, Accepted = 181, Rate = 0.0073
[Rank 0] Move Remove Delta_up_down: Proposed = 25098, Accepted = 190, Rate = 0.0076
[Rank 0] Move Remove Delta_down_up: Proposed = 25101, Accepted = 203, Rate = 0.0081
[Rank 0] Move Remove Delta_down_down: Proposed = 24924, Accepted = 154, Rate = 0.0062
[Rank 0] Move Shift one operator: Proposed = 99868, Accepted = 6465, Rate = 0.0647
Total number of measures: 10000
Total cycles (measures) / second: 3.71e+04
Average sign: 0.9972
Average order: 1.4233
Auto-correlation time: 2.08941 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:14 71.10% done, ETA 00:00:00, cycle 3555 of 5000, 3.55e+04 cycles/sec
[Rank 0] 08:09:14 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.66e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:15 37.49% done, ETA 00:00:00, cycle 3749 of 10000, 3.75e+04 cycles/sec
[Rank 0] 08:09:15 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.64e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1367 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2747 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.64e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2461):
[Rank 0] Move set Insert two operators: Duration = 0.0585
[Rank 0] Move Insert Delta_up: Duration = 0.0253
[Rank 0] Move Insert Delta_down: Duration = 0.0253
[Rank 0] Move set Remove two operators: Duration = 0.0325
[Rank 0] Move Remove Delta_up: Duration = 0.0125
[Rank 0] Move Remove Delta_down: Duration = 0.0125
[Rank 0] Move set Insert four operators: Duration = 0.0841
[Rank 0] Move Insert Delta_up_up: Duration = 0.0212
[Rank 0] Move Insert Delta_up_down: Duration = 0.0168
[Rank 0] Move Insert Delta_down_up: Duration = 0.0169
[Rank 0] Move Insert Delta_down_down: Duration = 0.0207
[Rank 0] Move set Remove four operators: Duration = 0.0213
[Rank 0] Move Remove Delta_up_up: Duration = 0.0025
[Rank 0] Move Remove Delta_up_down: Duration = 0.0042
[Rank 0] Move Remove Delta_down_up: Duration = 0.0042
[Rank 0] Move Remove Delta_down_down: Duration = 0.0023
[Rank 0] Move Shift one operator: Duration = 0.0497
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99598, Accepted = 7178, Rate = 0.0721
[Rank 0] Move Insert Delta_up: Proposed = 49865, Accepted = 3551, Rate = 0.0712
[Rank 0] Move Insert Delta_down: Proposed = 49733, Accepted = 3627, Rate = 0.0729
[Rank 0] Move set Remove two operators: Proposed = 99752, Accepted = 7196, Rate = 0.0721
[Rank 0] Move Remove Delta_up: Proposed = 49675, Accepted = 3550, Rate = 0.0715
[Rank 0] Move Remove Delta_down: Proposed = 50077, Accepted = 3646, Rate = 0.0728
[Rank 0] Move set Insert four operators: Proposed = 100721, Accepted = 711, Rate = 0.0071
[Rank 0] Move Insert Delta_up_up: Proposed = 25497, Accepted = 185, Rate = 0.0073
[Rank 0] Move Insert Delta_up_down: Proposed = 24958, Accepted = 188, Rate = 0.0075
[Rank 0] Move Insert Delta_down_up: Proposed = 25202, Accepted = 192, Rate = 0.0076
[Rank 0] Move Insert Delta_down_down: Proposed = 25064, Accepted = 146, Rate = 0.0058
[Rank 0] Move set Remove four operators: Proposed = 100213, Accepted = 702, Rate = 0.0070
[Rank 0] Move Remove Delta_up_up: Proposed = 24834, Accepted = 197, Rate = 0.0079
[Rank 0] Move Remove Delta_up_down: Proposed = 25093, Accepted = 170, Rate = 0.0068
[Rank 0] Move Remove Delta_down_up: Proposed = 25173, Accepted = 186, Rate = 0.0074
[Rank 0] Move Remove Delta_down_down: Proposed = 25113, Accepted = 149, Rate = 0.0059
[Rank 0] Move Shift one operator: Proposed = 99716, Accepted = 6378, Rate = 0.0640
Total number of measures: 10000
Total cycles (measures) / second: 3.64e+04
Average sign: 0.9972
Average order: 1.4578
Auto-correlation time: 2.20669 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-3.5*c_dag('down',0)*c('down',0) + -3.5*c_dag('up',0)*c('up',0) + 7*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:15 75.94% done, ETA 00:00:00, cycle 3797 of 5000, 3.80e+04 cycles/sec
[Rank 0] 08:09:15 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.78e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:15 37.79% done, ETA 00:00:00, cycle 3779 of 10000, 3.78e+04 cycles/sec
[Rank 0] 08:09:15 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.71e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1324 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2697 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.71e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2416):
[Rank 0] Move set Insert two operators: Duration = 0.0572
[Rank 0] Move Insert Delta_up: Duration = 0.0248
[Rank 0] Move Insert Delta_down: Duration = 0.0249
[Rank 0] Move set Remove two operators: Duration = 0.0321
[Rank 0] Move Remove Delta_up: Duration = 0.0123
[Rank 0] Move Remove Delta_down: Duration = 0.0123
[Rank 0] Move set Insert four operators: Duration = 0.0820
[Rank 0] Move Insert Delta_up_up: Duration = 0.0206
[Rank 0] Move Insert Delta_up_down: Duration = 0.0165
[Rank 0] Move Insert Delta_down_up: Duration = 0.0166
[Rank 0] Move Insert Delta_down_down: Duration = 0.0204
[Rank 0] Move set Remove four operators: Duration = 0.0209
[Rank 0] Move Remove Delta_up_up: Duration = 0.0024
[Rank 0] Move Remove Delta_up_down: Duration = 0.0041
[Rank 0] Move Remove Delta_down_up: Duration = 0.0042
[Rank 0] Move Remove Delta_down_down: Duration = 0.0023
[Rank 0] Move Shift one operator: Duration = 0.0493
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99688, Accepted = 6986, Rate = 0.0701
[Rank 0] Move Insert Delta_up: Proposed = 49860, Accepted = 3505, Rate = 0.0703
[Rank 0] Move Insert Delta_down: Proposed = 49828, Accepted = 3481, Rate = 0.0699
[Rank 0] Move set Remove two operators: Proposed = 99963, Accepted = 6963, Rate = 0.0697
[Rank 0] Move Remove Delta_up: Proposed = 49898, Accepted = 3492, Rate = 0.0700
[Rank 0] Move Remove Delta_down: Proposed = 50065, Accepted = 3471, Rate = 0.0693
[Rank 0] Move set Insert four operators: Proposed = 100292, Accepted = 681, Rate = 0.0068
[Rank 0] Move Insert Delta_up_up: Proposed = 25370, Accepted = 168, Rate = 0.0066
[Rank 0] Move Insert Delta_up_down: Proposed = 24830, Accepted = 169, Rate = 0.0068
[Rank 0] Move Insert Delta_down_up: Proposed = 25104, Accepted = 201, Rate = 0.0080
[Rank 0] Move Insert Delta_down_down: Proposed = 24988, Accepted = 143, Rate = 0.0057
[Rank 0] Move set Remove four operators: Proposed = 100109, Accepted = 692, Rate = 0.0069
[Rank 0] Move Remove Delta_up_up: Proposed = 24862, Accepted = 175, Rate = 0.0070
[Rank 0] Move Remove Delta_up_down: Proposed = 25062, Accepted = 182, Rate = 0.0073
[Rank 0] Move Remove Delta_down_up: Proposed = 25125, Accepted = 186, Rate = 0.0074
[Rank 0] Move Remove Delta_down_down: Proposed = 25060, Accepted = 149, Rate = 0.0059
[Rank 0] Move Shift one operator: Proposed = 99948, Accepted = 6548, Rate = 0.0655
Total number of measures: 10000
Total cycles (measures) / second: 3.71e+04
Average sign: 0.9974
Average order: 1.499
Auto-correlation time: 2.16565 cycles
U = 8.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:15 47.44% done, ETA 00:00:00, cycle 2372 of 5000, 2.37e+04 cycles/sec
[Rank 0] 08:09:15 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.41e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:16 25.58% done, ETA 00:00:00, cycle 2558 of 10000, 2.56e+04 cycles/sec
[Rank 0] 08:09:16 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.52e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.2072 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3974 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.52e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0014
[Rank 0] Move durations (total = 0.3687):
[Rank 0] Move set Insert two operators: Duration = 0.0733
[Rank 0] Move Insert Delta_up: Duration = 0.0328
[Rank 0] Move Insert Delta_down: Duration = 0.0328
[Rank 0] Move set Remove two operators: Duration = 0.0536
[Rank 0] Move Remove Delta_up: Duration = 0.0230
[Rank 0] Move Remove Delta_down: Duration = 0.0231
[Rank 0] Move set Insert four operators: Duration = 0.1023
[Rank 0] Move Insert Delta_up_up: Duration = 0.0259
[Rank 0] Move Insert Delta_up_down: Duration = 0.0211
[Rank 0] Move Insert Delta_down_up: Duration = 0.0213
[Rank 0] Move Insert Delta_down_down: Duration = 0.0257
[Rank 0] Move set Remove four operators: Duration = 0.0437
[Rank 0] Move Remove Delta_up_up: Duration = 0.0062
[Rank 0] Move Remove Delta_up_down: Duration = 0.0118
[Rank 0] Move Remove Delta_down_up: Duration = 0.0116
[Rank 0] Move Remove Delta_down_down: Duration = 0.0061
[Rank 0] Move Shift one operator: Duration = 0.0958
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100058, Accepted = 7851, Rate = 0.0785
[Rank 0] Move Insert Delta_up: Proposed = 50092, Accepted = 3894, Rate = 0.0777
[Rank 0] Move Insert Delta_down: Proposed = 49966, Accepted = 3957, Rate = 0.0792
[Rank 0] Move set Remove two operators: Proposed = 99388, Accepted = 7742, Rate = 0.0779
[Rank 0] Move Remove Delta_up: Proposed = 49594, Accepted = 3855, Rate = 0.0777
[Rank 0] Move Remove Delta_down: Proposed = 49794, Accepted = 3887, Rate = 0.0781
[Rank 0] Move set Insert four operators: Proposed = 100142, Accepted = 1378, Rate = 0.0138
[Rank 0] Move Insert Delta_up_up: Proposed = 25041, Accepted = 266, Rate = 0.0106
[Rank 0] Move Insert Delta_up_down: Proposed = 25128, Accepted = 402, Rate = 0.0160
[Rank 0] Move Insert Delta_down_up: Proposed = 25131, Accepted = 455, Rate = 0.0181
[Rank 0] Move Insert Delta_down_down: Proposed = 24842, Accepted = 255, Rate = 0.0103
[Rank 0] Move set Remove four operators: Proposed = 100182, Accepted = 1431, Rate = 0.0143
[Rank 0] Move Remove Delta_up_up: Proposed = 25102, Accepted = 269, Rate = 0.0107
[Rank 0] Move Remove Delta_up_down: Proposed = 25175, Accepted = 455, Rate = 0.0181
[Rank 0] Move Remove Delta_down_up: Proposed = 24953, Accepted = 434, Rate = 0.0174
[Rank 0] Move Remove Delta_down_down: Proposed = 24952, Accepted = 273, Rate = 0.0109
[Rank 0] Move Shift one operator: Proposed = 100230, Accepted = 19525, Rate = 0.1948
Total number of measures: 10000
Total cycles (measures) / second: 2.52e+04
Average sign: 1
Average order: 3.5417
Auto-correlation time: 6.76648 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:16 75.24% done, ETA 00:00:00, cycle 3762 of 5000, 3.76e+04 cycles/sec
[Rank 0] 08:09:16 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.78e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:16 37.81% done, ETA 00:00:00, cycle 3781 of 10000, 3.78e+04 cycles/sec
[Rank 0] 08:09:16 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.83e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1323 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2613 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.83e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2338):
[Rank 0] Move set Insert two operators: Duration = 0.0557
[Rank 0] Move Insert Delta_up: Duration = 0.0241
[Rank 0] Move Insert Delta_down: Duration = 0.0241
[Rank 0] Move set Remove two operators: Duration = 0.0298
[Rank 0] Move Remove Delta_up: Duration = 0.0114
[Rank 0] Move Remove Delta_down: Duration = 0.0112
[Rank 0] Move set Insert four operators: Duration = 0.0810
[Rank 0] Move Insert Delta_up_up: Duration = 0.0202
[Rank 0] Move Insert Delta_up_down: Duration = 0.0162
[Rank 0] Move Insert Delta_down_up: Duration = 0.0166
[Rank 0] Move Insert Delta_down_down: Duration = 0.0200
[Rank 0] Move set Remove four operators: Duration = 0.0208
[Rank 0] Move Remove Delta_up_up: Duration = 0.0023
[Rank 0] Move Remove Delta_up_down: Duration = 0.0041
[Rank 0] Move Remove Delta_down_up: Duration = 0.0042
[Rank 0] Move Remove Delta_down_down: Duration = 0.0022
[Rank 0] Move Shift one operator: Duration = 0.0465
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99563, Accepted = 7631, Rate = 0.0766
[Rank 0] Move Insert Delta_up: Proposed = 49837, Accepted = 3809, Rate = 0.0764
[Rank 0] Move Insert Delta_down: Proposed = 49726, Accepted = 3822, Rate = 0.0769
[Rank 0] Move set Remove two operators: Proposed = 99826, Accepted = 7603, Rate = 0.0762
[Rank 0] Move Remove Delta_up: Proposed = 49781, Accepted = 3803, Rate = 0.0764
[Rank 0] Move Remove Delta_down: Proposed = 50045, Accepted = 3800, Rate = 0.0759
[Rank 0] Move set Insert four operators: Proposed = 100711, Accepted = 1075, Rate = 0.0107
[Rank 0] Move Insert Delta_up_up: Proposed = 25566, Accepted = 198, Rate = 0.0077
[Rank 0] Move Insert Delta_up_down: Proposed = 24822, Accepted = 340, Rate = 0.0137
[Rank 0] Move Insert Delta_down_up: Proposed = 25197, Accepted = 367, Rate = 0.0146
[Rank 0] Move Insert Delta_down_down: Proposed = 25126, Accepted = 170, Rate = 0.0068
[Rank 0] Move set Remove four operators: Proposed = 100030, Accepted = 1089, Rate = 0.0109
[Rank 0] Move Remove Delta_up_up: Proposed = 24801, Accepted = 195, Rate = 0.0079
[Rank 0] Move Remove Delta_up_down: Proposed = 25035, Accepted = 344, Rate = 0.0137
[Rank 0] Move Remove Delta_down_up: Proposed = 25192, Accepted = 375, Rate = 0.0149
[Rank 0] Move Remove Delta_down_down: Proposed = 25002, Accepted = 175, Rate = 0.0070
[Rank 0] Move Shift one operator: Proposed = 99870, Accepted = 6634, Rate = 0.0664
Total number of measures: 10000
Total cycles (measures) / second: 3.83e+04
Average sign: 1
Average order: 1.4098
Auto-correlation time: 1.21419 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:16 81.68% done, ETA 00:00:00, cycle 4084 of 5000, 4.08e+04 cycles/sec
[Rank 0] 08:09:16 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.07e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:17 40.85% done, ETA 00:00:00, cycle 4085 of 10000, 4.08e+04 cycles/sec
[Rank 0] 08:09:17 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.14e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1230 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2414 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.14e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2144):
[Rank 0] Move set Insert two operators: Duration = 0.0520
[Rank 0] Move Insert Delta_up: Duration = 0.0224
[Rank 0] Move Insert Delta_down: Duration = 0.0223
[Rank 0] Move set Remove two operators: Duration = 0.0268
[Rank 0] Move Remove Delta_up: Duration = 0.0097
[Rank 0] Move Remove Delta_down: Duration = 0.0097
[Rank 0] Move set Insert four operators: Duration = 0.0764
[Rank 0] Move Insert Delta_up_up: Duration = 0.0190
[Rank 0] Move Insert Delta_up_down: Duration = 0.0152
[Rank 0] Move Insert Delta_down_up: Duration = 0.0154
[Rank 0] Move Insert Delta_down_down: Duration = 0.0189
[Rank 0] Move set Remove four operators: Duration = 0.0180
[Rank 0] Move Remove Delta_up_up: Duration = 0.0019
[Rank 0] Move Remove Delta_up_down: Duration = 0.0032
[Rank 0] Move Remove Delta_down_up: Duration = 0.0032
[Rank 0] Move Remove Delta_down_down: Duration = 0.0020
[Rank 0] Move Shift one operator: Duration = 0.0412
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99657, Accepted = 6638, Rate = 0.0666
[Rank 0] Move Insert Delta_up: Proposed = 49906, Accepted = 3321, Rate = 0.0665
[Rank 0] Move Insert Delta_down: Proposed = 49751, Accepted = 3317, Rate = 0.0667
[Rank 0] Move set Remove two operators: Proposed = 100058, Accepted = 6676, Rate = 0.0667
[Rank 0] Move Remove Delta_up: Proposed = 49886, Accepted = 3353, Rate = 0.0672
[Rank 0] Move Remove Delta_down: Proposed = 50172, Accepted = 3323, Rate = 0.0662
[Rank 0] Move set Insert four operators: Proposed = 100334, Accepted = 672, Rate = 0.0067
[Rank 0] Move Insert Delta_up_up: Proposed = 25376, Accepted = 153, Rate = 0.0060
[Rank 0] Move Insert Delta_up_down: Proposed = 24852, Accepted = 186, Rate = 0.0075
[Rank 0] Move Insert Delta_down_up: Proposed = 25069, Accepted = 193, Rate = 0.0077
[Rank 0] Move Insert Delta_down_down: Proposed = 25037, Accepted = 140, Rate = 0.0056
[Rank 0] Move set Remove four operators: Proposed = 100061, Accepted = 653, Rate = 0.0065
[Rank 0] Move Remove Delta_up_up: Proposed = 24885, Accepted = 144, Rate = 0.0058
[Rank 0] Move Remove Delta_up_down: Proposed = 25057, Accepted = 175, Rate = 0.0070
[Rank 0] Move Remove Delta_down_up: Proposed = 25103, Accepted = 191, Rate = 0.0076
[Rank 0] Move Remove Delta_down_down: Proposed = 25016, Accepted = 143, Rate = 0.0057
[Rank 0] Move Shift one operator: Proposed = 99890, Accepted = 5136, Rate = 0.0514
Total number of measures: 10000
Total cycles (measures) / second: 4.14e+04
Average sign: 0.9996
Average order: 1.2625
Auto-correlation time: 2.32944 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:17 82.64% done, ETA 00:00:00, cycle 4132 of 5000, 4.13e+04 cycles/sec
[Rank 0] 08:09:17 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.16e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:17 38.68% done, ETA 00:00:00, cycle 3868 of 10000, 3.87e+04 cycles/sec
[Rank 0] 08:09:17 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.93e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1201 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2546 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.93e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2258):
[Rank 0] Move set Insert two operators: Duration = 0.0549
[Rank 0] Move Insert Delta_up: Duration = 0.0235
[Rank 0] Move Insert Delta_down: Duration = 0.0235
[Rank 0] Move set Remove two operators: Duration = 0.0281
[Rank 0] Move Remove Delta_up: Duration = 0.0102
[Rank 0] Move Remove Delta_down: Duration = 0.0103
[Rank 0] Move set Insert four operators: Duration = 0.0808
[Rank 0] Move Insert Delta_up_up: Duration = 0.0201
[Rank 0] Move Insert Delta_up_down: Duration = 0.0162
[Rank 0] Move Insert Delta_down_up: Duration = 0.0163
[Rank 0] Move Insert Delta_down_down: Duration = 0.0200
[Rank 0] Move set Remove four operators: Duration = 0.0190
[Rank 0] Move Remove Delta_up_up: Duration = 0.0019
[Rank 0] Move Remove Delta_up_down: Duration = 0.0035
[Rank 0] Move Remove Delta_down_up: Duration = 0.0035
[Rank 0] Move Remove Delta_down_down: Duration = 0.0020
[Rank 0] Move Shift one operator: Duration = 0.0430
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99608, Accepted = 6456, Rate = 0.0648
[Rank 0] Move Insert Delta_up: Proposed = 49959, Accepted = 3172, Rate = 0.0635
[Rank 0] Move Insert Delta_down: Proposed = 49649, Accepted = 3284, Rate = 0.0661
[Rank 0] Move set Remove two operators: Proposed = 99982, Accepted = 6494, Rate = 0.0650
[Rank 0] Move Remove Delta_up: Proposed = 49760, Accepted = 3232, Rate = 0.0650
[Rank 0] Move Remove Delta_down: Proposed = 50222, Accepted = 3262, Rate = 0.0650
[Rank 0] Move set Insert four operators: Proposed = 100663, Accepted = 621, Rate = 0.0062
[Rank 0] Move Insert Delta_up_up: Proposed = 25377, Accepted = 149, Rate = 0.0059
[Rank 0] Move Insert Delta_up_down: Proposed = 25044, Accepted = 162, Rate = 0.0065
[Rank 0] Move Insert Delta_down_up: Proposed = 25120, Accepted = 187, Rate = 0.0074
[Rank 0] Move Insert Delta_down_down: Proposed = 25122, Accepted = 123, Rate = 0.0049
[Rank 0] Move set Remove four operators: Proposed = 99997, Accepted = 601, Rate = 0.0060
[Rank 0] Move Remove Delta_up_up: Proposed = 24814, Accepted = 122, Rate = 0.0049
[Rank 0] Move Remove Delta_up_down: Proposed = 25047, Accepted = 173, Rate = 0.0069
[Rank 0] Move Remove Delta_down_up: Proposed = 25137, Accepted = 170, Rate = 0.0068
[Rank 0] Move Remove Delta_down_down: Proposed = 24999, Accepted = 136, Rate = 0.0054
[Rank 0] Move Shift one operator: Proposed = 99750, Accepted = 5021, Rate = 0.0503
Total number of measures: 10000
Total cycles (measures) / second: 3.93e+04
Average sign: 0.9972
Average order: 1.2763
Auto-correlation time: 1.7451 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:17 81.16% done, ETA 00:00:00, cycle 4058 of 5000, 4.06e+04 cycles/sec
[Rank 0] 08:09:17 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.09e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:17 40.51% done, ETA 00:00:00, cycle 4051 of 10000, 4.05e+04 cycles/sec
[Rank 0] 08:09:17 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.96e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1223 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2523 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.96e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2241):
[Rank 0] Move set Insert two operators: Duration = 0.0544
[Rank 0] Move Insert Delta_up: Duration = 0.0234
[Rank 0] Move Insert Delta_down: Duration = 0.0234
[Rank 0] Move set Remove two operators: Duration = 0.0277
[Rank 0] Move Remove Delta_up: Duration = 0.0102
[Rank 0] Move Remove Delta_down: Duration = 0.0100
[Rank 0] Move set Insert four operators: Duration = 0.0801
[Rank 0] Move Insert Delta_up_up: Duration = 0.0200
[Rank 0] Move Insert Delta_up_down: Duration = 0.0159
[Rank 0] Move Insert Delta_down_up: Duration = 0.0161
[Rank 0] Move Insert Delta_down_down: Duration = 0.0199
[Rank 0] Move set Remove four operators: Duration = 0.0189
[Rank 0] Move Remove Delta_up_up: Duration = 0.0020
[Rank 0] Move Remove Delta_up_down: Duration = 0.0033
[Rank 0] Move Remove Delta_down_up: Duration = 0.0034
[Rank 0] Move Remove Delta_down_down: Duration = 0.0021
[Rank 0] Move Shift one operator: Duration = 0.0430
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99788, Accepted = 6478, Rate = 0.0649
[Rank 0] Move Insert Delta_up: Proposed = 50063, Accepted = 3211, Rate = 0.0641
[Rank 0] Move Insert Delta_down: Proposed = 49725, Accepted = 3267, Rate = 0.0657
[Rank 0] Move set Remove two operators: Proposed = 99841, Accepted = 6460, Rate = 0.0647
[Rank 0] Move Remove Delta_up: Proposed = 49662, Accepted = 3213, Rate = 0.0647
[Rank 0] Move Remove Delta_down: Proposed = 50179, Accepted = 3247, Rate = 0.0647
[Rank 0] Move set Insert four operators: Proposed = 100507, Accepted = 598, Rate = 0.0059
[Rank 0] Move Insert Delta_up_up: Proposed = 25374, Accepted = 148, Rate = 0.0058
[Rank 0] Move Insert Delta_up_down: Proposed = 24890, Accepted = 165, Rate = 0.0066
[Rank 0] Move Insert Delta_down_up: Proposed = 25087, Accepted = 160, Rate = 0.0064
[Rank 0] Move Insert Delta_down_down: Proposed = 25156, Accepted = 125, Rate = 0.0050
[Rank 0] Move set Remove four operators: Proposed = 100018, Accepted = 606, Rate = 0.0061
[Rank 0] Move Remove Delta_up_up: Proposed = 24839, Accepted = 144, Rate = 0.0058
[Rank 0] Move Remove Delta_up_down: Proposed = 25154, Accepted = 146, Rate = 0.0058
[Rank 0] Move Remove Delta_down_up: Proposed = 25112, Accepted = 186, Rate = 0.0074
[Rank 0] Move Remove Delta_down_down: Proposed = 24913, Accepted = 130, Rate = 0.0052
[Rank 0] Move Shift one operator: Proposed = 99846, Accepted = 5002, Rate = 0.0501
Total number of measures: 10000
Total cycles (measures) / second: 3.96e+04
Average sign: 0.9928
Average order: 1.2804
Auto-correlation time: 2.20449 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:18 80.40% done, ETA 00:00:00, cycle 4020 of 5000, 4.02e+04 cycles/sec
[Rank 0] 08:09:18 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.07e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:18 40.45% done, ETA 00:00:00, cycle 4045 of 10000, 4.04e+04 cycles/sec
[Rank 0] 08:09:18 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.07e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1230 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2458 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.07e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2182):
[Rank 0] Move set Insert two operators: Duration = 0.0528
[Rank 0] Move Insert Delta_up: Duration = 0.0226
[Rank 0] Move Insert Delta_down: Duration = 0.0226
[Rank 0] Move set Remove two operators: Duration = 0.0270
[Rank 0] Move Remove Delta_up: Duration = 0.0098
[Rank 0] Move Remove Delta_down: Duration = 0.0099
[Rank 0] Move set Insert four operators: Duration = 0.0778
[Rank 0] Move Insert Delta_up_up: Duration = 0.0192
[Rank 0] Move Insert Delta_up_down: Duration = 0.0155
[Rank 0] Move Insert Delta_down_up: Duration = 0.0156
[Rank 0] Move Insert Delta_down_down: Duration = 0.0194
[Rank 0] Move set Remove four operators: Duration = 0.0186
[Rank 0] Move Remove Delta_up_up: Duration = 0.0020
[Rank 0] Move Remove Delta_up_down: Duration = 0.0033
[Rank 0] Move Remove Delta_down_up: Duration = 0.0034
[Rank 0] Move Remove Delta_down_down: Duration = 0.0020
[Rank 0] Move Shift one operator: Duration = 0.0420
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99640, Accepted = 6461, Rate = 0.0648
[Rank 0] Move Insert Delta_up: Proposed = 49966, Accepted = 3195, Rate = 0.0639
[Rank 0] Move Insert Delta_down: Proposed = 49674, Accepted = 3266, Rate = 0.0657
[Rank 0] Move set Remove two operators: Proposed = 99785, Accepted = 6506, Rate = 0.0652
[Rank 0] Move Remove Delta_up: Proposed = 49691, Accepted = 3233, Rate = 0.0651
[Rank 0] Move Remove Delta_down: Proposed = 50094, Accepted = 3273, Rate = 0.0653
[Rank 0] Move set Insert four operators: Proposed = 100584, Accepted = 657, Rate = 0.0065
[Rank 0] Move Insert Delta_up_up: Proposed = 25321, Accepted = 164, Rate = 0.0065
[Rank 0] Move Insert Delta_up_down: Proposed = 24992, Accepted = 175, Rate = 0.0070
[Rank 0] Move Insert Delta_down_up: Proposed = 25113, Accepted = 179, Rate = 0.0071
[Rank 0] Move Insert Delta_down_down: Proposed = 25158, Accepted = 139, Rate = 0.0055
[Rank 0] Move set Remove four operators: Proposed = 99950, Accepted = 633, Rate = 0.0063
[Rank 0] Move Remove Delta_up_up: Proposed = 24726, Accepted = 142, Rate = 0.0057
[Rank 0] Move Remove Delta_up_down: Proposed = 25156, Accepted = 158, Rate = 0.0063
[Rank 0] Move Remove Delta_down_up: Proposed = 25033, Accepted = 200, Rate = 0.0080
[Rank 0] Move Remove Delta_down_down: Proposed = 25035, Accepted = 133, Rate = 0.0053
[Rank 0] Move Shift one operator: Proposed = 100041, Accepted = 5201, Rate = 0.0520
Total number of measures: 10000
Total cycles (measures) / second: 4.07e+04
Average sign: 0.9896
Average order: 1.2736
Auto-correlation time: 2.46004 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:18 76.20% done, ETA 00:00:00, cycle 3810 of 5000, 3.81e+04 cycles/sec
[Rank 0] 08:09:18 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.86e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:18 40.26% done, ETA 00:00:00, cycle 4026 of 10000, 4.03e+04 cycles/sec
[Rank 0] 08:09:18 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.03e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1295 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2479 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.03e+04
[Rank 0] Measurement durations (total = 0.0024):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2200):
[Rank 0] Move set Insert two operators: Duration = 0.0535
[Rank 0] Move Insert Delta_up: Duration = 0.0228
[Rank 0] Move Insert Delta_down: Duration = 0.0231
[Rank 0] Move set Remove two operators: Duration = 0.0273
[Rank 0] Move Remove Delta_up: Duration = 0.0099
[Rank 0] Move Remove Delta_down: Duration = 0.0100
[Rank 0] Move set Insert four operators: Duration = 0.0787
[Rank 0] Move Insert Delta_up_up: Duration = 0.0196
[Rank 0] Move Insert Delta_up_down: Duration = 0.0157
[Rank 0] Move Insert Delta_down_up: Duration = 0.0159
[Rank 0] Move Insert Delta_down_down: Duration = 0.0194
[Rank 0] Move set Remove four operators: Duration = 0.0185
[Rank 0] Move Remove Delta_up_up: Duration = 0.0020
[Rank 0] Move Remove Delta_up_down: Duration = 0.0033
[Rank 0] Move Remove Delta_down_up: Duration = 0.0033
[Rank 0] Move Remove Delta_down_down: Duration = 0.0020
[Rank 0] Move Shift one operator: Duration = 0.0420
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99514, Accepted = 6479, Rate = 0.0651
[Rank 0] Move Insert Delta_up: Proposed = 49708, Accepted = 3182, Rate = 0.0640
[Rank 0] Move Insert Delta_down: Proposed = 49806, Accepted = 3297, Rate = 0.0662
[Rank 0] Move set Remove two operators: Proposed = 99829, Accepted = 6481, Rate = 0.0649
[Rank 0] Move Remove Delta_up: Proposed = 49799, Accepted = 3204, Rate = 0.0643
[Rank 0] Move Remove Delta_down: Proposed = 50030, Accepted = 3277, Rate = 0.0655
[Rank 0] Move set Insert four operators: Proposed = 100694, Accepted = 613, Rate = 0.0061
[Rank 0] Move Insert Delta_up_up: Proposed = 25425, Accepted = 140, Rate = 0.0055
[Rank 0] Move Insert Delta_up_down: Proposed = 24989, Accepted = 172, Rate = 0.0069
[Rank 0] Move Insert Delta_down_up: Proposed = 25201, Accepted = 177, Rate = 0.0070
[Rank 0] Move Insert Delta_down_down: Proposed = 25079, Accepted = 124, Rate = 0.0049
[Rank 0] Move set Remove four operators: Proposed = 99995, Accepted = 612, Rate = 0.0061
[Rank 0] Move Remove Delta_up_up: Proposed = 24865, Accepted = 129, Rate = 0.0052
[Rank 0] Move Remove Delta_up_down: Proposed = 25058, Accepted = 162, Rate = 0.0065
[Rank 0] Move Remove Delta_down_up: Proposed = 25073, Accepted = 188, Rate = 0.0075
[Rank 0] Move Remove Delta_down_down: Proposed = 24999, Accepted = 133, Rate = 0.0053
[Rank 0] Move Shift one operator: Proposed = 99968, Accepted = 5015, Rate = 0.0502
Total number of measures: 10000
Total cycles (measures) / second: 4.03e+04
Average sign: 0.9908
Average order: 1.2712
Auto-correlation time: 2.5202 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:18 76.20% done, ETA 00:00:00, cycle 3810 of 5000, 3.81e+04 cycles/sec
[Rank 0] 08:09:18 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.95e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:19 42.22% done, ETA 00:00:00, cycle 4222 of 10000, 4.22e+04 cycles/sec
[Rank 0] 08:09:19 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.20e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1267 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2384 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.20e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2117):
[Rank 0] Move set Insert two operators: Duration = 0.0516
[Rank 0] Move Insert Delta_up: Duration = 0.0222
[Rank 0] Move Insert Delta_down: Duration = 0.0222
[Rank 0] Move set Remove two operators: Duration = 0.0263
[Rank 0] Move Remove Delta_up: Duration = 0.0096
[Rank 0] Move Remove Delta_down: Duration = 0.0096
[Rank 0] Move set Insert four operators: Duration = 0.0753
[Rank 0] Move Insert Delta_up_up: Duration = 0.0189
[Rank 0] Move Insert Delta_up_down: Duration = 0.0150
[Rank 0] Move Insert Delta_down_up: Duration = 0.0150
[Rank 0] Move Insert Delta_down_down: Duration = 0.0187
[Rank 0] Move set Remove four operators: Duration = 0.0179
[Rank 0] Move Remove Delta_up_up: Duration = 0.0019
[Rank 0] Move Remove Delta_up_down: Duration = 0.0032
[Rank 0] Move Remove Delta_down_up: Duration = 0.0033
[Rank 0] Move Remove Delta_down_down: Duration = 0.0019
[Rank 0] Move Shift one operator: Duration = 0.0406
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99620, Accepted = 6477, Rate = 0.0650
[Rank 0] Move Insert Delta_up: Proposed = 50031, Accepted = 3223, Rate = 0.0644
[Rank 0] Move Insert Delta_down: Proposed = 49589, Accepted = 3254, Rate = 0.0656
[Rank 0] Move set Remove two operators: Proposed = 99897, Accepted = 6553, Rate = 0.0656
[Rank 0] Move Remove Delta_up: Proposed = 49731, Accepted = 3277, Rate = 0.0659
[Rank 0] Move Remove Delta_down: Proposed = 50166, Accepted = 3276, Rate = 0.0653
[Rank 0] Move set Insert four operators: Proposed = 100521, Accepted = 595, Rate = 0.0059
[Rank 0] Move Insert Delta_up_up: Proposed = 25419, Accepted = 142, Rate = 0.0056
[Rank 0] Move Insert Delta_up_down: Proposed = 25016, Accepted = 154, Rate = 0.0062
[Rank 0] Move Insert Delta_down_up: Proposed = 25033, Accepted = 173, Rate = 0.0069
[Rank 0] Move Insert Delta_down_down: Proposed = 25053, Accepted = 126, Rate = 0.0050
[Rank 0] Move set Remove four operators: Proposed = 99975, Accepted = 558, Rate = 0.0056
[Rank 0] Move Remove Delta_up_up: Proposed = 24881, Accepted = 119, Rate = 0.0048
[Rank 0] Move Remove Delta_up_down: Proposed = 24961, Accepted = 159, Rate = 0.0064
[Rank 0] Move Remove Delta_down_up: Proposed = 25022, Accepted = 160, Rate = 0.0064
[Rank 0] Move Remove Delta_down_down: Proposed = 25111, Accepted = 120, Rate = 0.0048
[Rank 0] Move Shift one operator: Proposed = 99987, Accepted = 5047, Rate = 0.0505
Total number of measures: 10000
Total cycles (measures) / second: 4.20e+04
Average sign: 0.9974
Average order: 1.2853
Auto-correlation time: 1.79142 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:19 82.34% done, ETA 00:00:00, cycle 4117 of 5000, 4.12e+04 cycles/sec
[Rank 0] 08:09:19 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.09e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:19 40.16% done, ETA 00:00:00, cycle 4016 of 10000, 4.01e+04 cycles/sec
[Rank 0] 08:09:19 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.09e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1221 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2446 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.09e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0011
[Rank 0] Move durations (total = 0.2172):
[Rank 0] Move set Insert two operators: Duration = 0.0528
[Rank 0] Move Insert Delta_up: Duration = 0.0226
[Rank 0] Move Insert Delta_down: Duration = 0.0227
[Rank 0] Move set Remove two operators: Duration = 0.0269
[Rank 0] Move Remove Delta_up: Duration = 0.0097
[Rank 0] Move Remove Delta_down: Duration = 0.0100
[Rank 0] Move set Insert four operators: Duration = 0.0771
[Rank 0] Move Insert Delta_up_up: Duration = 0.0190
[Rank 0] Move Insert Delta_up_down: Duration = 0.0155
[Rank 0] Move Insert Delta_down_up: Duration = 0.0155
[Rank 0] Move Insert Delta_down_down: Duration = 0.0192
[Rank 0] Move set Remove four operators: Duration = 0.0183
[Rank 0] Move Remove Delta_up_up: Duration = 0.0020
[Rank 0] Move Remove Delta_up_down: Duration = 0.0033
[Rank 0] Move Remove Delta_down_up: Duration = 0.0033
[Rank 0] Move Remove Delta_down_down: Duration = 0.0020
[Rank 0] Move Shift one operator: Duration = 0.0420
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99785, Accepted = 6497, Rate = 0.0651
[Rank 0] Move Insert Delta_up: Proposed = 49971, Accepted = 3227, Rate = 0.0646
[Rank 0] Move Insert Delta_down: Proposed = 49814, Accepted = 3270, Rate = 0.0656
[Rank 0] Move set Remove two operators: Proposed = 99723, Accepted = 6515, Rate = 0.0653
[Rank 0] Move Remove Delta_up: Proposed = 49732, Accepted = 3222, Rate = 0.0648
[Rank 0] Move Remove Delta_down: Proposed = 49991, Accepted = 3293, Rate = 0.0659
[Rank 0] Move set Insert four operators: Proposed = 100584, Accepted = 573, Rate = 0.0057
[Rank 0] Move Insert Delta_up_up: Proposed = 25357, Accepted = 144, Rate = 0.0057
[Rank 0] Move Insert Delta_up_down: Proposed = 25020, Accepted = 141, Rate = 0.0056
[Rank 0] Move Insert Delta_down_up: Proposed = 25134, Accepted = 145, Rate = 0.0058
[Rank 0] Move Insert Delta_down_down: Proposed = 25073, Accepted = 143, Rate = 0.0057
[Rank 0] Move set Remove four operators: Proposed = 99961, Accepted = 564, Rate = 0.0056
[Rank 0] Move Remove Delta_up_up: Proposed = 24841, Accepted = 148, Rate = 0.0060
[Rank 0] Move Remove Delta_up_down: Proposed = 25009, Accepted = 137, Rate = 0.0055
[Rank 0] Move Remove Delta_down_up: Proposed = 25102, Accepted = 147, Rate = 0.0059
[Rank 0] Move Remove Delta_down_down: Proposed = 25009, Accepted = 132, Rate = 0.0053
[Rank 0] Move Shift one operator: Proposed = 99947, Accepted = 5236, Rate = 0.0524
Total number of measures: 10000
Total cycles (measures) / second: 4.09e+04
Average sign: 0.9978
Average order: 1.3104
Auto-correlation time: 2.28023 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4*c_dag('down',0)*c('down',0) + -4*c_dag('up',0)*c('up',0) + 8*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:19 86.58% done, ETA 00:00:00, cycle 4329 of 5000, 4.33e+04 cycles/sec
[Rank 0] 08:09:19 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.33e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:19 40.30% done, ETA 00:00:00, cycle 4030 of 10000, 4.03e+04 cycles/sec
[Rank 0] 08:09:19 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.04e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1155 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2478 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.04e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2198):
[Rank 0] Move set Insert two operators: Duration = 0.0534
[Rank 0] Move Insert Delta_up: Duration = 0.0230
[Rank 0] Move Insert Delta_down: Duration = 0.0229
[Rank 0] Move set Remove two operators: Duration = 0.0273
[Rank 0] Move Remove Delta_up: Duration = 0.0100
[Rank 0] Move Remove Delta_down: Duration = 0.0098
[Rank 0] Move set Insert four operators: Duration = 0.0783
[Rank 0] Move Insert Delta_up_up: Duration = 0.0196
[Rank 0] Move Insert Delta_up_down: Duration = 0.0156
[Rank 0] Move Insert Delta_down_up: Duration = 0.0158
[Rank 0] Move Insert Delta_down_down: Duration = 0.0193
[Rank 0] Move set Remove four operators: Duration = 0.0185
[Rank 0] Move Remove Delta_up_up: Duration = 0.0020
[Rank 0] Move Remove Delta_up_down: Duration = 0.0034
[Rank 0] Move Remove Delta_down_up: Duration = 0.0033
[Rank 0] Move Remove Delta_down_down: Duration = 0.0019
[Rank 0] Move Shift one operator: Duration = 0.0423
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99597, Accepted = 6528, Rate = 0.0655
[Rank 0] Move Insert Delta_up: Proposed = 50032, Accepted = 3212, Rate = 0.0642
[Rank 0] Move Insert Delta_down: Proposed = 49565, Accepted = 3316, Rate = 0.0669
[Rank 0] Move set Remove two operators: Proposed = 99960, Accepted = 6564, Rate = 0.0657
[Rank 0] Move Remove Delta_up: Proposed = 49666, Accepted = 3254, Rate = 0.0655
[Rank 0] Move Remove Delta_down: Proposed = 50294, Accepted = 3310, Rate = 0.0658
[Rank 0] Move set Insert four operators: Proposed = 100465, Accepted = 577, Rate = 0.0057
[Rank 0] Move Insert Delta_up_up: Proposed = 25356, Accepted = 156, Rate = 0.0062
[Rank 0] Move Insert Delta_up_down: Proposed = 24978, Accepted = 146, Rate = 0.0058
[Rank 0] Move Insert Delta_down_up: Proposed = 25095, Accepted = 155, Rate = 0.0062
[Rank 0] Move Insert Delta_down_down: Proposed = 25036, Accepted = 120, Rate = 0.0048
[Rank 0] Move set Remove four operators: Proposed = 100056, Accepted = 558, Rate = 0.0056
[Rank 0] Move Remove Delta_up_up: Proposed = 24797, Accepted = 133, Rate = 0.0054
[Rank 0] Move Remove Delta_up_down: Proposed = 25104, Accepted = 148, Rate = 0.0059
[Rank 0] Move Remove Delta_down_up: Proposed = 25124, Accepted = 156, Rate = 0.0062
[Rank 0] Move Remove Delta_down_down: Proposed = 25031, Accepted = 121, Rate = 0.0048
[Rank 0] Move Shift one operator: Proposed = 99922, Accepted = 5111, Rate = 0.0511
Total number of measures: 10000
Total cycles (measures) / second: 4.04e+04
Average sign: 0.9968
Average order: 1.2817
Auto-correlation time: 2.2731 cycles
U = 9.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:20 51.90% done, ETA 00:00:00, cycle 2595 of 5000, 2.59e+04 cycles/sec
[Rank 0] 08:09:20 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.68e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:20 27.04% done, ETA 00:00:00, cycle 2704 of 10000, 2.70e+04 cycles/sec
[Rank 0] 08:09:20 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.64e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1866 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3792 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.64e+04
[Rank 0] Measurement durations (total = 0.0027):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0014
[Rank 0] Move durations (total = 0.3502):
[Rank 0] Move set Insert two operators: Duration = 0.0719
[Rank 0] Move Insert Delta_up: Duration = 0.0318
[Rank 0] Move Insert Delta_down: Duration = 0.0321
[Rank 0] Move set Remove two operators: Duration = 0.0503
[Rank 0] Move Remove Delta_up: Duration = 0.0212
[Rank 0] Move Remove Delta_down: Duration = 0.0214
[Rank 0] Move set Insert four operators: Duration = 0.1020
[Rank 0] Move Insert Delta_up_up: Duration = 0.0259
[Rank 0] Move Insert Delta_up_down: Duration = 0.0209
[Rank 0] Move Insert Delta_down_up: Duration = 0.0210
[Rank 0] Move Insert Delta_down_down: Duration = 0.0258
[Rank 0] Move set Remove four operators: Duration = 0.0397
[Rank 0] Move Remove Delta_up_up: Duration = 0.0054
[Rank 0] Move Remove Delta_up_down: Duration = 0.0105
[Rank 0] Move Remove Delta_down_up: Duration = 0.0103
[Rank 0] Move Remove Delta_down_down: Duration = 0.0053
[Rank 0] Move Shift one operator: Duration = 0.0863
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99876, Accepted = 7493, Rate = 0.0750
[Rank 0] Move Insert Delta_up: Proposed = 50041, Accepted = 3692, Rate = 0.0738
[Rank 0] Move Insert Delta_down: Proposed = 49835, Accepted = 3801, Rate = 0.0763
[Rank 0] Move set Remove two operators: Proposed = 99486, Accepted = 7511, Rate = 0.0755
[Rank 0] Move Remove Delta_up: Proposed = 49519, Accepted = 3716, Rate = 0.0750
[Rank 0] Move Remove Delta_down: Proposed = 49967, Accepted = 3795, Rate = 0.0760
[Rank 0] Move set Insert four operators: Proposed = 100531, Accepted = 1235, Rate = 0.0123
[Rank 0] Move Insert Delta_up_up: Proposed = 25181, Accepted = 254, Rate = 0.0101
[Rank 0] Move Insert Delta_up_down: Proposed = 24998, Accepted = 373, Rate = 0.0149
[Rank 0] Move Insert Delta_down_up: Proposed = 25201, Accepted = 371, Rate = 0.0147
[Rank 0] Move Insert Delta_down_down: Proposed = 25151, Accepted = 237, Rate = 0.0094
[Rank 0] Move set Remove four operators: Proposed = 100046, Accepted = 1227, Rate = 0.0123
[Rank 0] Move Remove Delta_up_up: Proposed = 24870, Accepted = 234, Rate = 0.0094
[Rank 0] Move Remove Delta_up_down: Proposed = 25159, Accepted = 381, Rate = 0.0151
[Rank 0] Move Remove Delta_down_up: Proposed = 24870, Accepted = 380, Rate = 0.0153
[Rank 0] Move Remove Delta_down_down: Proposed = 25147, Accepted = 232, Rate = 0.0092
[Rank 0] Move Shift one operator: Proposed = 100061, Accepted = 16012, Rate = 0.1600
Total number of measures: 10000
Total cycles (measures) / second: 2.64e+04
Average sign: 1
Average order: 3.0593
Auto-correlation time: 6.78614 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:20 83.76% done, ETA 00:00:00, cycle 4188 of 5000, 4.19e+04 cycles/sec
[Rank 0] 08:09:20 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.20e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:20 41.94% done, ETA 00:00:00, cycle 4194 of 10000, 4.19e+04 cycles/sec
[Rank 0] 08:09:20 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.13e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1190 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2422 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.13e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2147):
[Rank 0] Move set Insert two operators: Duration = 0.0521
[Rank 0] Move Insert Delta_up: Duration = 0.0223
[Rank 0] Move Insert Delta_down: Duration = 0.0224
[Rank 0] Move set Remove two operators: Duration = 0.0265
[Rank 0] Move Remove Delta_up: Duration = 0.0096
[Rank 0] Move Remove Delta_down: Duration = 0.0096
[Rank 0] Move set Insert four operators: Duration = 0.0768
[Rank 0] Move Insert Delta_up_up: Duration = 0.0191
[Rank 0] Move Insert Delta_up_down: Duration = 0.0154
[Rank 0] Move Insert Delta_down_up: Duration = 0.0155
[Rank 0] Move Insert Delta_down_down: Duration = 0.0189
[Rank 0] Move set Remove four operators: Duration = 0.0186
[Rank 0] Move Remove Delta_up_up: Duration = 0.0020
[Rank 0] Move Remove Delta_up_down: Duration = 0.0034
[Rank 0] Move Remove Delta_down_up: Duration = 0.0034
[Rank 0] Move Remove Delta_down_down: Duration = 0.0020
[Rank 0] Move Shift one operator: Duration = 0.0407
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99705, Accepted = 6720, Rate = 0.0674
[Rank 0] Move Insert Delta_up: Proposed = 49932, Accepted = 3298, Rate = 0.0660
[Rank 0] Move Insert Delta_down: Proposed = 49773, Accepted = 3422, Rate = 0.0688
[Rank 0] Move set Remove two operators: Proposed = 99820, Accepted = 6648, Rate = 0.0666
[Rank 0] Move Remove Delta_up: Proposed = 49803, Accepted = 3272, Rate = 0.0657
[Rank 0] Move Remove Delta_down: Proposed = 50017, Accepted = 3376, Rate = 0.0675
[Rank 0] Move set Insert four operators: Proposed = 100687, Accepted = 781, Rate = 0.0078
[Rank 0] Move Insert Delta_up_up: Proposed = 25426, Accepted = 163, Rate = 0.0064
[Rank 0] Move Insert Delta_up_down: Proposed = 25075, Accepted = 232, Rate = 0.0093
[Rank 0] Move Insert Delta_down_up: Proposed = 25070, Accepted = 248, Rate = 0.0099
[Rank 0] Move Insert Delta_down_down: Proposed = 25116, Accepted = 138, Rate = 0.0055
[Rank 0] Move set Remove four operators: Proposed = 100248, Accepted = 817, Rate = 0.0081
[Rank 0] Move Remove Delta_up_up: Proposed = 24919, Accepted = 160, Rate = 0.0064
[Rank 0] Move Remove Delta_up_down: Proposed = 25173, Accepted = 239, Rate = 0.0095
[Rank 0] Move Remove Delta_down_up: Proposed = 25034, Accepted = 273, Rate = 0.0109
[Rank 0] Move Remove Delta_down_down: Proposed = 25122, Accepted = 145, Rate = 0.0058
[Rank 0] Move Shift one operator: Proposed = 99540, Accepted = 5233, Rate = 0.0526
Total number of measures: 10000
Total cycles (measures) / second: 4.13e+04
Average sign: 1
Average order: 1.2476
Auto-correlation time: 1.67665 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:21 87.06% done, ETA 00:00:00, cycle 4353 of 5000, 4.35e+04 cycles/sec
[Rank 0] 08:09:21 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.40e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:21 42.44% done, ETA 00:00:00, cycle 4244 of 10000, 4.24e+04 cycles/sec
[Rank 0] 08:09:21 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.25e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1135 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2351 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.25e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2077):
[Rank 0] Move set Insert two operators: Duration = 0.0511
[Rank 0] Move Insert Delta_up: Duration = 0.0217
[Rank 0] Move Insert Delta_down: Duration = 0.0219
[Rank 0] Move set Remove two operators: Duration = 0.0252
[Rank 0] Move Remove Delta_up: Duration = 0.0089
[Rank 0] Move Remove Delta_down: Duration = 0.0090
[Rank 0] Move set Insert four operators: Duration = 0.0756
[Rank 0] Move Insert Delta_up_up: Duration = 0.0188
[Rank 0] Move Insert Delta_up_down: Duration = 0.0151
[Rank 0] Move Insert Delta_down_up: Duration = 0.0150
[Rank 0] Move Insert Delta_down_down: Duration = 0.0187
[Rank 0] Move set Remove four operators: Duration = 0.0172
[Rank 0] Move Remove Delta_up_up: Duration = 0.0017
[Rank 0] Move Remove Delta_up_down: Duration = 0.0030
[Rank 0] Move Remove Delta_down_up: Duration = 0.0030
[Rank 0] Move Remove Delta_down_down: Duration = 0.0018
[Rank 0] Move Shift one operator: Duration = 0.0386
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99658, Accepted = 5971, Rate = 0.0599
[Rank 0] Move Insert Delta_up: Proposed = 49892, Accepted = 2931, Rate = 0.0587
[Rank 0] Move Insert Delta_down: Proposed = 49766, Accepted = 3040, Rate = 0.0611
[Rank 0] Move set Remove two operators: Proposed = 99896, Accepted = 6030, Rate = 0.0604
[Rank 0] Move Remove Delta_up: Proposed = 49862, Accepted = 2989, Rate = 0.0599
[Rank 0] Move Remove Delta_down: Proposed = 50034, Accepted = 3041, Rate = 0.0608
[Rank 0] Move set Insert four operators: Proposed = 100389, Accepted = 515, Rate = 0.0051
[Rank 0] Move Insert Delta_up_up: Proposed = 25358, Accepted = 127, Rate = 0.0050
[Rank 0] Move Insert Delta_up_down: Proposed = 25055, Accepted = 147, Rate = 0.0059
[Rank 0] Move Insert Delta_down_up: Proposed = 24978, Accepted = 133, Rate = 0.0053
[Rank 0] Move Insert Delta_down_down: Proposed = 24998, Accepted = 108, Rate = 0.0043
[Rank 0] Move set Remove four operators: Proposed = 100125, Accepted = 485, Rate = 0.0048
[Rank 0] Move Remove Delta_up_up: Proposed = 24813, Accepted = 108, Rate = 0.0044
[Rank 0] Move Remove Delta_up_down: Proposed = 25154, Accepted = 127, Rate = 0.0050
[Rank 0] Move Remove Delta_down_up: Proposed = 25184, Accepted = 133, Rate = 0.0053
[Rank 0] Move Remove Delta_down_down: Proposed = 24974, Accepted = 117, Rate = 0.0047
[Rank 0] Move Shift one operator: Proposed = 99932, Accepted = 4244, Rate = 0.0425
Total number of measures: 10000
Total cycles (measures) / second: 4.25e+04
Average sign: 1
Average order: 1.1771
Auto-correlation time: 2.54945 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:21 89.68% done, ETA 00:00:00, cycle 4484 of 5000, 4.48e+04 cycles/sec
[Rank 0] 08:09:21 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.51e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:21 43.60% done, ETA 00:00:00, cycle 4360 of 10000, 4.36e+04 cycles/sec
[Rank 0] 08:09:21 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.42e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1109 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2263 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.42e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1997):
[Rank 0] Move set Insert two operators: Duration = 0.0492
[Rank 0] Move Insert Delta_up: Duration = 0.0210
[Rank 0] Move Insert Delta_down: Duration = 0.0209
[Rank 0] Move set Remove two operators: Duration = 0.0242
[Rank 0] Move Remove Delta_up: Duration = 0.0085
[Rank 0] Move Remove Delta_down: Duration = 0.0085
[Rank 0] Move set Insert four operators: Duration = 0.0730
[Rank 0] Move Insert Delta_up_up: Duration = 0.0181
[Rank 0] Move Insert Delta_up_down: Duration = 0.0145
[Rank 0] Move Insert Delta_down_up: Duration = 0.0145
[Rank 0] Move Insert Delta_down_down: Duration = 0.0180
[Rank 0] Move set Remove four operators: Duration = 0.0166
[Rank 0] Move Remove Delta_up_up: Duration = 0.0017
[Rank 0] Move Remove Delta_up_down: Duration = 0.0028
[Rank 0] Move Remove Delta_down_up: Duration = 0.0028
[Rank 0] Move Remove Delta_down_down: Duration = 0.0017
[Rank 0] Move Shift one operator: Duration = 0.0367
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99577, Accepted = 5951, Rate = 0.0598
[Rank 0] Move Insert Delta_up: Proposed = 49917, Accepted = 2967, Rate = 0.0594
[Rank 0] Move Insert Delta_down: Proposed = 49660, Accepted = 2984, Rate = 0.0601
[Rank 0] Move set Remove two operators: Proposed = 100046, Accepted = 6021, Rate = 0.0602
[Rank 0] Move Remove Delta_up: Proposed = 49920, Accepted = 3007, Rate = 0.0602
[Rank 0] Move Remove Delta_down: Proposed = 50126, Accepted = 3014, Rate = 0.0601
[Rank 0] Move set Insert four operators: Proposed = 100586, Accepted = 501, Rate = 0.0050
[Rank 0] Move Insert Delta_up_up: Proposed = 25384, Accepted = 132, Rate = 0.0052
[Rank 0] Move Insert Delta_up_down: Proposed = 25044, Accepted = 125, Rate = 0.0050
[Rank 0] Move Insert Delta_down_up: Proposed = 25070, Accepted = 127, Rate = 0.0051
[Rank 0] Move Insert Delta_down_down: Proposed = 25088, Accepted = 117, Rate = 0.0047
[Rank 0] Move set Remove four operators: Proposed = 100009, Accepted = 464, Rate = 0.0046
[Rank 0] Move Remove Delta_up_up: Proposed = 24748, Accepted = 114, Rate = 0.0046
[Rank 0] Move Remove Delta_up_down: Proposed = 25151, Accepted = 124, Rate = 0.0049
[Rank 0] Move Remove Delta_down_up: Proposed = 25115, Accepted = 122, Rate = 0.0049
[Rank 0] Move Remove Delta_down_down: Proposed = 24995, Accepted = 104, Rate = 0.0042
[Rank 0] Move Shift one operator: Proposed = 99782, Accepted = 4165, Rate = 0.0417
Total number of measures: 10000
Total cycles (measures) / second: 4.42e+04
Average sign: 0.9988
Average order: 1.1498
Auto-correlation time: 2.7131 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:21 86.70% done, ETA 00:00:00, cycle 4335 of 5000, 4.33e+04 cycles/sec
[Rank 0] 08:09:21 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.35e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:21 42.14% done, ETA 00:00:00, cycle 4214 of 10000, 4.21e+04 cycles/sec
[Rank 0] 08:09:22 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.23e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1149 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2362 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.23e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2083):
[Rank 0] Move set Insert two operators: Duration = 0.0513
[Rank 0] Move Insert Delta_up: Duration = 0.0217
[Rank 0] Move Insert Delta_down: Duration = 0.0220
[Rank 0] Move set Remove two operators: Duration = 0.0252
[Rank 0] Move Remove Delta_up: Duration = 0.0087
[Rank 0] Move Remove Delta_down: Duration = 0.0089
[Rank 0] Move set Insert four operators: Duration = 0.0761
[Rank 0] Move Insert Delta_up_up: Duration = 0.0189
[Rank 0] Move Insert Delta_up_down: Duration = 0.0151
[Rank 0] Move Insert Delta_down_up: Duration = 0.0151
[Rank 0] Move Insert Delta_down_down: Duration = 0.0189
[Rank 0] Move set Remove four operators: Duration = 0.0174
[Rank 0] Move Remove Delta_up_up: Duration = 0.0018
[Rank 0] Move Remove Delta_up_down: Duration = 0.0030
[Rank 0] Move Remove Delta_down_up: Duration = 0.0030
[Rank 0] Move Remove Delta_down_down: Duration = 0.0018
[Rank 0] Move Shift one operator: Duration = 0.0384
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99471, Accepted = 6039, Rate = 0.0607
[Rank 0] Move Insert Delta_up: Proposed = 49806, Accepted = 2975, Rate = 0.0597
[Rank 0] Move Insert Delta_down: Proposed = 49665, Accepted = 3064, Rate = 0.0617
[Rank 0] Move set Remove two operators: Proposed = 99791, Accepted = 6043, Rate = 0.0606
[Rank 0] Move Remove Delta_up: Proposed = 49848, Accepted = 2992, Rate = 0.0600
[Rank 0] Move Remove Delta_down: Proposed = 49943, Accepted = 3051, Rate = 0.0611
[Rank 0] Move set Insert four operators: Proposed = 100544, Accepted = 488, Rate = 0.0049
[Rank 0] Move Insert Delta_up_up: Proposed = 25449, Accepted = 136, Rate = 0.0053
[Rank 0] Move Insert Delta_up_down: Proposed = 24991, Accepted = 128, Rate = 0.0051
[Rank 0] Move Insert Delta_down_up: Proposed = 25040, Accepted = 105, Rate = 0.0042
[Rank 0] Move Insert Delta_down_down: Proposed = 25064, Accepted = 119, Rate = 0.0047
[Rank 0] Move set Remove four operators: Proposed = 100332, Accepted = 487, Rate = 0.0049
[Rank 0] Move Remove Delta_up_up: Proposed = 24894, Accepted = 120, Rate = 0.0048
[Rank 0] Move Remove Delta_up_down: Proposed = 25163, Accepted = 123, Rate = 0.0049
[Rank 0] Move Remove Delta_down_up: Proposed = 25284, Accepted = 127, Rate = 0.0050
[Rank 0] Move Remove Delta_down_down: Proposed = 24991, Accepted = 117, Rate = 0.0047
[Rank 0] Move Shift one operator: Proposed = 99862, Accepted = 4138, Rate = 0.0414
Total number of measures: 10000
Total cycles (measures) / second: 4.23e+04
Average sign: 0.996
Average order: 1.1644
Auto-correlation time: 2.56346 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:22 86.96% done, ETA 00:00:00, cycle 4348 of 5000, 4.35e+04 cycles/sec
[Rank 0] 08:09:22 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.33e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:22 42.55% done, ETA 00:00:00, cycle 4255 of 10000, 4.25e+04 cycles/sec
[Rank 0] 08:09:22 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.25e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1156 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2355 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.25e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2082):
[Rank 0] Move set Insert two operators: Duration = 0.0510
[Rank 0] Move Insert Delta_up: Duration = 0.0217
[Rank 0] Move Insert Delta_down: Duration = 0.0218
[Rank 0] Move set Remove two operators: Duration = 0.0251
[Rank 0] Move Remove Delta_up: Duration = 0.0088
[Rank 0] Move Remove Delta_down: Duration = 0.0090
[Rank 0] Move set Insert four operators: Duration = 0.0760
[Rank 0] Move Insert Delta_up_up: Duration = 0.0189
[Rank 0] Move Insert Delta_up_down: Duration = 0.0151
[Rank 0] Move Insert Delta_down_up: Duration = 0.0151
[Rank 0] Move Insert Delta_down_down: Duration = 0.0188
[Rank 0] Move set Remove four operators: Duration = 0.0174
[Rank 0] Move Remove Delta_up_up: Duration = 0.0018
[Rank 0] Move Remove Delta_up_down: Duration = 0.0030
[Rank 0] Move Remove Delta_down_up: Duration = 0.0029
[Rank 0] Move Remove Delta_down_down: Duration = 0.0019
[Rank 0] Move Shift one operator: Duration = 0.0387
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99631, Accepted = 5955, Rate = 0.0598
[Rank 0] Move Insert Delta_up: Proposed = 50030, Accepted = 2920, Rate = 0.0584
[Rank 0] Move Insert Delta_down: Proposed = 49601, Accepted = 3035, Rate = 0.0612
[Rank 0] Move set Remove two operators: Proposed = 99815, Accepted = 6025, Rate = 0.0604
[Rank 0] Move Remove Delta_up: Proposed = 49915, Accepted = 2979, Rate = 0.0597
[Rank 0] Move Remove Delta_down: Proposed = 49900, Accepted = 3046, Rate = 0.0610
[Rank 0] Move set Insert four operators: Proposed = 100524, Accepted = 510, Rate = 0.0051
[Rank 0] Move Insert Delta_up_up: Proposed = 25352, Accepted = 140, Rate = 0.0055
[Rank 0] Move Insert Delta_up_down: Proposed = 25054, Accepted = 126, Rate = 0.0050
[Rank 0] Move Insert Delta_down_up: Proposed = 25025, Accepted = 130, Rate = 0.0052
[Rank 0] Move Insert Delta_down_down: Proposed = 25093, Accepted = 114, Rate = 0.0045
[Rank 0] Move set Remove four operators: Proposed = 100090, Accepted = 476, Rate = 0.0048
[Rank 0] Move Remove Delta_up_up: Proposed = 24869, Accepted = 118, Rate = 0.0047
[Rank 0] Move Remove Delta_up_down: Proposed = 25228, Accepted = 131, Rate = 0.0052
[Rank 0] Move Remove Delta_down_up: Proposed = 24987, Accepted = 113, Rate = 0.0045
[Rank 0] Move Remove Delta_down_down: Proposed = 25006, Accepted = 114, Rate = 0.0046
[Rank 0] Move Shift one operator: Proposed = 99940, Accepted = 4254, Rate = 0.0426
Total number of measures: 10000
Total cycles (measures) / second: 4.25e+04
Average sign: 0.9972
Average order: 1.1918
Auto-correlation time: 2.42409 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:22 87.02% done, ETA 00:00:00, cycle 4351 of 5000, 4.35e+04 cycles/sec
[Rank 0] 08:09:22 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.38e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:22 43.69% done, ETA 00:00:00, cycle 4369 of 10000, 4.37e+04 cycles/sec
[Rank 0] 08:09:22 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.37e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1142 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2290 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.37e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2020):
[Rank 0] Move set Insert two operators: Duration = 0.0496
[Rank 0] Move Insert Delta_up: Duration = 0.0210
[Rank 0] Move Insert Delta_down: Duration = 0.0213
[Rank 0] Move set Remove two operators: Duration = 0.0247
[Rank 0] Move Remove Delta_up: Duration = 0.0086
[Rank 0] Move Remove Delta_down: Duration = 0.0089
[Rank 0] Move set Insert four operators: Duration = 0.0737
[Rank 0] Move Insert Delta_up_up: Duration = 0.0181
[Rank 0] Move Insert Delta_up_down: Duration = 0.0146
[Rank 0] Move Insert Delta_down_up: Duration = 0.0147
[Rank 0] Move Insert Delta_down_down: Duration = 0.0183
[Rank 0] Move set Remove four operators: Duration = 0.0168
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0029
[Rank 0] Move Remove Delta_down_up: Duration = 0.0029
[Rank 0] Move Remove Delta_down_down: Duration = 0.0018
[Rank 0] Move Shift one operator: Duration = 0.0373
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99682, Accepted = 5925, Rate = 0.0594
[Rank 0] Move Insert Delta_up: Proposed = 49891, Accepted = 2902, Rate = 0.0582
[Rank 0] Move Insert Delta_down: Proposed = 49791, Accepted = 3023, Rate = 0.0607
[Rank 0] Move set Remove two operators: Proposed = 99826, Accepted = 5962, Rate = 0.0597
[Rank 0] Move Remove Delta_up: Proposed = 49768, Accepted = 2940, Rate = 0.0591
[Rank 0] Move Remove Delta_down: Proposed = 50058, Accepted = 3022, Rate = 0.0604
[Rank 0] Move set Insert four operators: Proposed = 100555, Accepted = 487, Rate = 0.0048
[Rank 0] Move Insert Delta_up_up: Proposed = 25317, Accepted = 122, Rate = 0.0048
[Rank 0] Move Insert Delta_up_down: Proposed = 25006, Accepted = 129, Rate = 0.0052
[Rank 0] Move Insert Delta_down_up: Proposed = 25064, Accepted = 120, Rate = 0.0048
[Rank 0] Move Insert Delta_down_down: Proposed = 25168, Accepted = 116, Rate = 0.0046
[Rank 0] Move set Remove four operators: Proposed = 100271, Accepted = 471, Rate = 0.0047
[Rank 0] Move Remove Delta_up_up: Proposed = 24865, Accepted = 105, Rate = 0.0042
[Rank 0] Move Remove Delta_up_down: Proposed = 25224, Accepted = 125, Rate = 0.0050
[Rank 0] Move Remove Delta_down_up: Proposed = 25087, Accepted = 123, Rate = 0.0049
[Rank 0] Move Remove Delta_down_down: Proposed = 25095, Accepted = 118, Rate = 0.0047
[Rank 0] Move Shift one operator: Proposed = 99666, Accepted = 4180, Rate = 0.0419
Total number of measures: 10000
Total cycles (measures) / second: 4.37e+04
Average sign: 0.9962
Average order: 1.1825
Auto-correlation time: 2.52178 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:22 86.80% done, ETA 00:00:00, cycle 4340 of 5000, 4.34e+04 cycles/sec
[Rank 0] 08:09:23 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.38e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:23 42.01% done, ETA 00:00:00, cycle 4201 of 10000, 4.20e+04 cycles/sec
[Rank 0] 08:09:23 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.28e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1142 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2339 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.28e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2065):
[Rank 0] Move set Insert two operators: Duration = 0.0507
[Rank 0] Move Insert Delta_up: Duration = 0.0216
[Rank 0] Move Insert Delta_down: Duration = 0.0218
[Rank 0] Move set Remove two operators: Duration = 0.0250
[Rank 0] Move Remove Delta_up: Duration = 0.0088
[Rank 0] Move Remove Delta_down: Duration = 0.0089
[Rank 0] Move set Insert four operators: Duration = 0.0751
[Rank 0] Move Insert Delta_up_up: Duration = 0.0186
[Rank 0] Move Insert Delta_up_down: Duration = 0.0151
[Rank 0] Move Insert Delta_down_up: Duration = 0.0150
[Rank 0] Move Insert Delta_down_down: Duration = 0.0185
[Rank 0] Move set Remove four operators: Duration = 0.0173
[Rank 0] Move Remove Delta_up_up: Duration = 0.0018
[Rank 0] Move Remove Delta_up_down: Duration = 0.0030
[Rank 0] Move Remove Delta_down_up: Duration = 0.0029
[Rank 0] Move Remove Delta_down_down: Duration = 0.0019
[Rank 0] Move Shift one operator: Duration = 0.0382
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99568, Accepted = 5947, Rate = 0.0597
[Rank 0] Move Insert Delta_up: Proposed = 49869, Accepted = 2913, Rate = 0.0584
[Rank 0] Move Insert Delta_down: Proposed = 49699, Accepted = 3034, Rate = 0.0610
[Rank 0] Move set Remove two operators: Proposed = 100099, Accepted = 6063, Rate = 0.0606
[Rank 0] Move Remove Delta_up: Proposed = 49943, Accepted = 3005, Rate = 0.0602
[Rank 0] Move Remove Delta_down: Proposed = 50156, Accepted = 3058, Rate = 0.0610
[Rank 0] Move set Insert four operators: Proposed = 100497, Accepted = 536, Rate = 0.0053
[Rank 0] Move Insert Delta_up_up: Proposed = 25291, Accepted = 142, Rate = 0.0056
[Rank 0] Move Insert Delta_up_down: Proposed = 25137, Accepted = 132, Rate = 0.0053
[Rank 0] Move Insert Delta_down_up: Proposed = 25050, Accepted = 145, Rate = 0.0058
[Rank 0] Move Insert Delta_down_down: Proposed = 25019, Accepted = 117, Rate = 0.0047
[Rank 0] Move set Remove four operators: Proposed = 99880, Accepted = 479, Rate = 0.0048
[Rank 0] Move Remove Delta_up_up: Proposed = 24730, Accepted = 112, Rate = 0.0045
[Rank 0] Move Remove Delta_up_down: Proposed = 25036, Accepted = 129, Rate = 0.0052
[Rank 0] Move Remove Delta_down_up: Proposed = 25012, Accepted = 118, Rate = 0.0047
[Rank 0] Move Remove Delta_down_down: Proposed = 25102, Accepted = 120, Rate = 0.0048
[Rank 0] Move Shift one operator: Proposed = 99956, Accepted = 4248, Rate = 0.0425
Total number of measures: 10000
Total cycles (measures) / second: 4.28e+04
Average sign: 0.9944
Average order: 1.1765
Auto-correlation time: 2.91906 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:23 89.50% done, ETA 00:00:00, cycle 4475 of 5000, 4.47e+04 cycles/sec
[Rank 0] 08:09:23 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.47e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:23 42.68% done, ETA 00:00:00, cycle 4268 of 10000, 4.27e+04 cycles/sec
[Rank 0] 08:09:23 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.43e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1118 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2256 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.43e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1988):
[Rank 0] Move set Insert two operators: Duration = 0.0489
[Rank 0] Move Insert Delta_up: Duration = 0.0207
[Rank 0] Move Insert Delta_down: Duration = 0.0210
[Rank 0] Move set Remove two operators: Duration = 0.0241
[Rank 0] Move Remove Delta_up: Duration = 0.0083
[Rank 0] Move Remove Delta_down: Duration = 0.0086
[Rank 0] Move set Insert four operators: Duration = 0.0726
[Rank 0] Move Insert Delta_up_up: Duration = 0.0180
[Rank 0] Move Insert Delta_up_down: Duration = 0.0145
[Rank 0] Move Insert Delta_down_up: Duration = 0.0145
[Rank 0] Move Insert Delta_down_down: Duration = 0.0180
[Rank 0] Move set Remove four operators: Duration = 0.0167
[Rank 0] Move Remove Delta_up_up: Duration = 0.0017
[Rank 0] Move Remove Delta_up_down: Duration = 0.0028
[Rank 0] Move Remove Delta_down_up: Duration = 0.0028
[Rank 0] Move Remove Delta_down_down: Duration = 0.0018
[Rank 0] Move Shift one operator: Duration = 0.0364
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99637, Accepted = 5947, Rate = 0.0597
[Rank 0] Move Insert Delta_up: Proposed = 49810, Accepted = 2909, Rate = 0.0584
[Rank 0] Move Insert Delta_down: Proposed = 49827, Accepted = 3038, Rate = 0.0610
[Rank 0] Move set Remove two operators: Proposed = 99965, Accepted = 5970, Rate = 0.0597
[Rank 0] Move Remove Delta_up: Proposed = 49917, Accepted = 2927, Rate = 0.0586
[Rank 0] Move Remove Delta_down: Proposed = 50048, Accepted = 3043, Rate = 0.0608
[Rank 0] Move set Insert four operators: Proposed = 100585, Accepted = 481, Rate = 0.0048
[Rank 0] Move Insert Delta_up_up: Proposed = 25363, Accepted = 125, Rate = 0.0049
[Rank 0] Move Insert Delta_up_down: Proposed = 25107, Accepted = 123, Rate = 0.0049
[Rank 0] Move Insert Delta_down_up: Proposed = 25085, Accepted = 120, Rate = 0.0048
[Rank 0] Move Insert Delta_down_down: Proposed = 25030, Accepted = 113, Rate = 0.0045
[Rank 0] Move set Remove four operators: Proposed = 100177, Accepted = 472, Rate = 0.0047
[Rank 0] Move Remove Delta_up_up: Proposed = 24805, Accepted = 117, Rate = 0.0047
[Rank 0] Move Remove Delta_up_down: Proposed = 25127, Accepted = 114, Rate = 0.0045
[Rank 0] Move Remove Delta_down_up: Proposed = 25118, Accepted = 131, Rate = 0.0052
[Rank 0] Move Remove Delta_down_down: Proposed = 25127, Accepted = 110, Rate = 0.0044
[Rank 0] Move Shift one operator: Proposed = 99636, Accepted = 3980, Rate = 0.0399
Total number of measures: 10000
Total cycles (measures) / second: 4.43e+04
Average sign: 0.9982
Average order: 1.1588
Auto-correlation time: 2.72114 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-4.5*c_dag('down',0)*c('down',0) + -4.5*c_dag('up',0)*c('up',0) + 9*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:23 89.78% done, ETA 00:00:00, cycle 4489 of 5000, 4.49e+04 cycles/sec
[Rank 0] 08:09:23 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.47e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:23 42.22% done, ETA 00:00:00, cycle 4222 of 10000, 4.22e+04 cycles/sec
[Rank 0] 08:09:23 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.26e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1119 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2346 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.26e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2069):
[Rank 0] Move set Insert two operators: Duration = 0.0510
[Rank 0] Move Insert Delta_up: Duration = 0.0217
[Rank 0] Move Insert Delta_down: Duration = 0.0219
[Rank 0] Move set Remove two operators: Duration = 0.0251
[Rank 0] Move Remove Delta_up: Duration = 0.0089
[Rank 0] Move Remove Delta_down: Duration = 0.0089
[Rank 0] Move set Insert four operators: Duration = 0.0752
[Rank 0] Move Insert Delta_up_up: Duration = 0.0187
[Rank 0] Move Insert Delta_up_down: Duration = 0.0150
[Rank 0] Move Insert Delta_down_up: Duration = 0.0150
[Rank 0] Move Insert Delta_down_down: Duration = 0.0186
[Rank 0] Move set Remove four operators: Duration = 0.0174
[Rank 0] Move Remove Delta_up_up: Duration = 0.0018
[Rank 0] Move Remove Delta_up_down: Duration = 0.0030
[Rank 0] Move Remove Delta_down_up: Duration = 0.0030
[Rank 0] Move Remove Delta_down_down: Duration = 0.0019
[Rank 0] Move Shift one operator: Duration = 0.0383
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99642, Accepted = 6024, Rate = 0.0605
[Rank 0] Move Insert Delta_up: Proposed = 49900, Accepted = 2937, Rate = 0.0589
[Rank 0] Move Insert Delta_down: Proposed = 49742, Accepted = 3087, Rate = 0.0621
[Rank 0] Move set Remove two operators: Proposed = 99871, Accepted = 6056, Rate = 0.0606
[Rank 0] Move Remove Delta_up: Proposed = 49779, Accepted = 2976, Rate = 0.0598
[Rank 0] Move Remove Delta_down: Proposed = 50092, Accepted = 3080, Rate = 0.0615
[Rank 0] Move set Insert four operators: Proposed = 100190, Accepted = 509, Rate = 0.0051
[Rank 0] Move Insert Delta_up_up: Proposed = 25261, Accepted = 137, Rate = 0.0054
[Rank 0] Move Insert Delta_up_down: Proposed = 25013, Accepted = 130, Rate = 0.0052
[Rank 0] Move Insert Delta_down_up: Proposed = 24962, Accepted = 132, Rate = 0.0053
[Rank 0] Move Insert Delta_down_down: Proposed = 24954, Accepted = 110, Rate = 0.0044
[Rank 0] Move set Remove four operators: Proposed = 100431, Accepted = 496, Rate = 0.0049
[Rank 0] Move Remove Delta_up_up: Proposed = 24876, Accepted = 120, Rate = 0.0048
[Rank 0] Move Remove Delta_up_down: Proposed = 25315, Accepted = 119, Rate = 0.0047
[Rank 0] Move Remove Delta_down_up: Proposed = 25088, Accepted = 142, Rate = 0.0057
[Rank 0] Move Remove Delta_down_down: Proposed = 25152, Accepted = 115, Rate = 0.0046
[Rank 0] Move Shift one operator: Proposed = 99866, Accepted = 4122, Rate = 0.0413
Total number of measures: 10000
Total cycles (measures) / second: 4.26e+04
Average sign: 0.9968
Average order: 1.1691
Auto-correlation time: 1.64409 cycles
U = 10.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:24 56.94% done, ETA 00:00:00, cycle 2847 of 5000, 2.85e+04 cycles/sec
[Rank 0] 08:09:24 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 2.96e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:24 28.64% done, ETA 00:00:00, cycle 2864 of 10000, 2.86e+04 cycles/sec
[Rank 0] 08:09:24 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 2.77e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1688 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3609 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 2.77e+04
[Rank 0] Measurement durations (total = 0.0029):
[Rank 0] Measure Auto-correlation time: Duration = 0.0011
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0014
[Rank 0] Move durations (total = 0.3313):
[Rank 0] Move set Insert two operators: Duration = 0.0693
[Rank 0] Move Insert Delta_up: Duration = 0.0308
[Rank 0] Move Insert Delta_down: Duration = 0.0306
[Rank 0] Move set Remove two operators: Duration = 0.0469
[Rank 0] Move Remove Delta_up: Duration = 0.0194
[Rank 0] Move Remove Delta_down: Duration = 0.0197
[Rank 0] Move set Insert four operators: Duration = 0.0997
[Rank 0] Move Insert Delta_up_up: Duration = 0.0252
[Rank 0] Move Insert Delta_up_down: Duration = 0.0203
[Rank 0] Move Insert Delta_down_up: Duration = 0.0206
[Rank 0] Move Insert Delta_down_down: Duration = 0.0251
[Rank 0] Move set Remove four operators: Duration = 0.0367
[Rank 0] Move Remove Delta_up_up: Duration = 0.0048
[Rank 0] Move Remove Delta_up_down: Duration = 0.0095
[Rank 0] Move Remove Delta_down_up: Duration = 0.0094
[Rank 0] Move Remove Delta_down_down: Duration = 0.0047
[Rank 0] Move Shift one operator: Duration = 0.0786
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 100029, Accepted = 7156, Rate = 0.0715
[Rank 0] Move Insert Delta_up: Proposed = 50154, Accepted = 3581, Rate = 0.0714
[Rank 0] Move Insert Delta_down: Proposed = 49875, Accepted = 3575, Rate = 0.0717
[Rank 0] Move set Remove two operators: Proposed = 99864, Accepted = 7071, Rate = 0.0708
[Rank 0] Move Remove Delta_up: Proposed = 49871, Accepted = 3508, Rate = 0.0703
[Rank 0] Move Remove Delta_down: Proposed = 49993, Accepted = 3563, Rate = 0.0713
[Rank 0] Move set Insert four operators: Proposed = 100199, Accepted = 1097, Rate = 0.0109
[Rank 0] Move Insert Delta_up_up: Proposed = 25173, Accepted = 204, Rate = 0.0081
[Rank 0] Move Insert Delta_up_down: Proposed = 24867, Accepted = 332, Rate = 0.0134
[Rank 0] Move Insert Delta_down_up: Proposed = 25133, Accepted = 359, Rate = 0.0143
[Rank 0] Move Insert Delta_down_down: Proposed = 25026, Accepted = 202, Rate = 0.0081
[Rank 0] Move set Remove four operators: Proposed = 99655, Accepted = 1141, Rate = 0.0114
[Rank 0] Move Remove Delta_up_up: Proposed = 24670, Accepted = 221, Rate = 0.0090
[Rank 0] Move Remove Delta_up_down: Proposed = 25098, Accepted = 370, Rate = 0.0147
[Rank 0] Move Remove Delta_down_up: Proposed = 24914, Accepted = 361, Rate = 0.0145
[Rank 0] Move Remove Delta_down_down: Proposed = 24973, Accepted = 189, Rate = 0.0076
[Rank 0] Move Shift one operator: Proposed = 100253, Accepted = 13683, Rate = 0.1365
Total number of measures: 10000
Total cycles (measures) / second: 2.77e+04
Average sign: 1
Average order: 2.8101
Auto-correlation time: 6.42947 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:24 90.76% done, ETA 00:00:00, cycle 4538 of 5000, 4.54e+04 cycles/sec
[Rank 0] 08:09:24 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.53e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:24 43.15% done, ETA 00:00:00, cycle 4315 of 10000, 4.31e+04 cycles/sec
[Rank 0] 08:09:24 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.28e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1104 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2335 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.28e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2060):
[Rank 0] Move set Insert two operators: Duration = 0.0509
[Rank 0] Move Insert Delta_up: Duration = 0.0216
[Rank 0] Move Insert Delta_down: Duration = 0.0217
[Rank 0] Move set Remove two operators: Duration = 0.0249
[Rank 0] Move Remove Delta_up: Duration = 0.0087
[Rank 0] Move Remove Delta_down: Duration = 0.0088
[Rank 0] Move set Insert four operators: Duration = 0.0753
[Rank 0] Move Insert Delta_up_up: Duration = 0.0186
[Rank 0] Move Insert Delta_up_down: Duration = 0.0151
[Rank 0] Move Insert Delta_down_up: Duration = 0.0150
[Rank 0] Move Insert Delta_down_down: Duration = 0.0185
[Rank 0] Move set Remove four operators: Duration = 0.0174
[Rank 0] Move Remove Delta_up_up: Duration = 0.0018
[Rank 0] Move Remove Delta_up_down: Duration = 0.0030
[Rank 0] Move Remove Delta_down_up: Duration = 0.0030
[Rank 0] Move Remove Delta_down_down: Duration = 0.0018
[Rank 0] Move Shift one operator: Duration = 0.0375
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99622, Accepted = 6181, Rate = 0.0620
[Rank 0] Move Insert Delta_up: Proposed = 49907, Accepted = 3064, Rate = 0.0614
[Rank 0] Move Insert Delta_down: Proposed = 49715, Accepted = 3117, Rate = 0.0627
[Rank 0] Move set Remove two operators: Proposed = 99914, Accepted = 6240, Rate = 0.0625
[Rank 0] Move Remove Delta_up: Proposed = 49850, Accepted = 3121, Rate = 0.0626
[Rank 0] Move Remove Delta_down: Proposed = 50064, Accepted = 3119, Rate = 0.0623
[Rank 0] Move set Insert four operators: Proposed = 100380, Accepted = 691, Rate = 0.0069
[Rank 0] Move Insert Delta_up_up: Proposed = 25387, Accepted = 150, Rate = 0.0059
[Rank 0] Move Insert Delta_up_down: Proposed = 25007, Accepted = 218, Rate = 0.0087
[Rank 0] Move Insert Delta_down_up: Proposed = 24975, Accepted = 206, Rate = 0.0082
[Rank 0] Move Insert Delta_down_down: Proposed = 25011, Accepted = 117, Rate = 0.0047
[Rank 0] Move set Remove four operators: Proposed = 100428, Accepted = 661, Rate = 0.0066
[Rank 0] Move Remove Delta_up_up: Proposed = 24901, Accepted = 134, Rate = 0.0054
[Rank 0] Move Remove Delta_up_down: Proposed = 25188, Accepted = 183, Rate = 0.0073
[Rank 0] Move Remove Delta_down_up: Proposed = 25239, Accepted = 216, Rate = 0.0086
[Rank 0] Move Remove Delta_down_down: Proposed = 25100, Accepted = 128, Rate = 0.0051
[Rank 0] Move Shift one operator: Proposed = 99656, Accepted = 4132, Rate = 0.0415
Total number of measures: 10000
Total cycles (measures) / second: 4.28e+04
Average sign: 1
Average order: 1.1285
Auto-correlation time: 2.39496 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:25 91.08% done, ETA 00:00:00, cycle 4554 of 5000, 4.55e+04 cycles/sec
[Rank 0] 08:09:25 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.55e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:25 45.50% done, ETA 00:00:00, cycle 4550 of 10000, 4.55e+04 cycles/sec
[Rank 0] 08:09:25 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.55e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1098 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2198 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.55e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1929):
[Rank 0] Move set Insert two operators: Duration = 0.0481
[Rank 0] Move Insert Delta_up: Duration = 0.0203
[Rank 0] Move Insert Delta_down: Duration = 0.0205
[Rank 0] Move set Remove two operators: Duration = 0.0227
[Rank 0] Move Remove Delta_up: Duration = 0.0077
[Rank 0] Move Remove Delta_down: Duration = 0.0079
[Rank 0] Move set Insert four operators: Duration = 0.0719
[Rank 0] Move Insert Delta_up_up: Duration = 0.0178
[Rank 0] Move Insert Delta_up_down: Duration = 0.0143
[Rank 0] Move Insert Delta_down_up: Duration = 0.0143
[Rank 0] Move Insert Delta_down_down: Duration = 0.0177
[Rank 0] Move set Remove four operators: Duration = 0.0160
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0026
[Rank 0] Move Remove Delta_down_up: Duration = 0.0025
[Rank 0] Move Remove Delta_down_down: Duration = 0.0017
[Rank 0] Move Shift one operator: Duration = 0.0343
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99809, Accepted = 5574, Rate = 0.0558
[Rank 0] Move Insert Delta_up: Proposed = 49986, Accepted = 2741, Rate = 0.0548
[Rank 0] Move Insert Delta_down: Proposed = 49823, Accepted = 2833, Rate = 0.0569
[Rank 0] Move set Remove two operators: Proposed = 99851, Accepted = 5623, Rate = 0.0563
[Rank 0] Move Remove Delta_up: Proposed = 49846, Accepted = 2774, Rate = 0.0557
[Rank 0] Move Remove Delta_down: Proposed = 50005, Accepted = 2849, Rate = 0.0570
[Rank 0] Move set Insert four operators: Proposed = 100515, Accepted = 440, Rate = 0.0044
[Rank 0] Move Insert Delta_up_up: Proposed = 25347, Accepted = 113, Rate = 0.0045
[Rank 0] Move Insert Delta_up_down: Proposed = 25099, Accepted = 118, Rate = 0.0047
[Rank 0] Move Insert Delta_down_up: Proposed = 25054, Accepted = 110, Rate = 0.0044
[Rank 0] Move Insert Delta_down_down: Proposed = 25015, Accepted = 99, Rate = 0.0040
[Rank 0] Move set Remove four operators: Proposed = 100064, Accepted = 415, Rate = 0.0041
[Rank 0] Move Remove Delta_up_up: Proposed = 24727, Accepted = 106, Rate = 0.0043
[Rank 0] Move Remove Delta_up_down: Proposed = 25189, Accepted = 105, Rate = 0.0042
[Rank 0] Move Remove Delta_down_up: Proposed = 25102, Accepted = 103, Rate = 0.0041
[Rank 0] Move Remove Delta_down_down: Proposed = 25046, Accepted = 101, Rate = 0.0040
[Rank 0] Move Shift one operator: Proposed = 99761, Accepted = 3462, Rate = 0.0347
Total number of measures: 10000
Total cycles (measures) / second: 4.55e+04
Average sign: 0.9994
Average order: 1.0673
Auto-correlation time: 2.49511 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:25 90.98% done, ETA 00:00:00, cycle 4549 of 5000, 4.55e+04 cycles/sec
[Rank 0] 08:09:25 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.58e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:25 43.30% done, ETA 00:00:00, cycle 4330 of 10000, 4.33e+04 cycles/sec
[Rank 0] 08:09:25 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.46e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1093 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2242 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.46e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1967):
[Rank 0] Move set Insert two operators: Duration = 0.0492
[Rank 0] Move Insert Delta_up: Duration = 0.0207
[Rank 0] Move Insert Delta_down: Duration = 0.0209
[Rank 0] Move set Remove two operators: Duration = 0.0232
[Rank 0] Move Remove Delta_up: Duration = 0.0078
[Rank 0] Move Remove Delta_down: Duration = 0.0081
[Rank 0] Move set Insert four operators: Duration = 0.0730
[Rank 0] Move Insert Delta_up_up: Duration = 0.0179
[Rank 0] Move Insert Delta_up_down: Duration = 0.0144
[Rank 0] Move Insert Delta_down_up: Duration = 0.0145
[Rank 0] Move Insert Delta_down_down: Duration = 0.0181
[Rank 0] Move set Remove four operators: Duration = 0.0164
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0027
[Rank 0] Move Remove Delta_down_up: Duration = 0.0026
[Rank 0] Move Remove Delta_down_down: Duration = 0.0017
[Rank 0] Move Shift one operator: Duration = 0.0350
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99724, Accepted = 5501, Rate = 0.0552
[Rank 0] Move Insert Delta_up: Proposed = 49947, Accepted = 2700, Rate = 0.0541
[Rank 0] Move Insert Delta_down: Proposed = 49777, Accepted = 2801, Rate = 0.0563
[Rank 0] Move set Remove two operators: Proposed = 99767, Accepted = 5530, Rate = 0.0554
[Rank 0] Move Remove Delta_up: Proposed = 49751, Accepted = 2729, Rate = 0.0549
[Rank 0] Move Remove Delta_down: Proposed = 50016, Accepted = 2801, Rate = 0.0560
[Rank 0] Move set Insert four operators: Proposed = 100359, Accepted = 381, Rate = 0.0038
[Rank 0] Move Insert Delta_up_up: Proposed = 25227, Accepted = 96, Rate = 0.0038
[Rank 0] Move Insert Delta_up_down: Proposed = 25031, Accepted = 100, Rate = 0.0040
[Rank 0] Move Insert Delta_down_up: Proposed = 25069, Accepted = 94, Rate = 0.0037
[Rank 0] Move Insert Delta_down_down: Proposed = 25032, Accepted = 91, Rate = 0.0036
[Rank 0] Move set Remove four operators: Proposed = 100169, Accepted = 367, Rate = 0.0037
[Rank 0] Move Remove Delta_up_up: Proposed = 24763, Accepted = 83, Rate = 0.0034
[Rank 0] Move Remove Delta_up_down: Proposed = 25185, Accepted = 95, Rate = 0.0038
[Rank 0] Move Remove Delta_down_up: Proposed = 25172, Accepted = 96, Rate = 0.0038
[Rank 0] Move Remove Delta_down_down: Proposed = 25049, Accepted = 93, Rate = 0.0037
[Rank 0] Move Shift one operator: Proposed = 99981, Accepted = 3362, Rate = 0.0336
Total number of measures: 10000
Total cycles (measures) / second: 4.46e+04
Average sign: 0.9988
Average order: 1.0624
Auto-correlation time: 2.79788 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:25 91.52% done, ETA 00:00:00, cycle 4576 of 5000, 4.58e+04 cycles/sec
[Rank 0] 08:09:25 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.61e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:25 44.82% done, ETA 00:00:00, cycle 4482 of 10000, 4.48e+04 cycles/sec
[Rank 0] 08:09:26 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.53e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1084 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2206 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.53e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1934):
[Rank 0] Move set Insert two operators: Duration = 0.0482
[Rank 0] Move Insert Delta_up: Duration = 0.0203
[Rank 0] Move Insert Delta_down: Duration = 0.0205
[Rank 0] Move set Remove two operators: Duration = 0.0227
[Rank 0] Move Remove Delta_up: Duration = 0.0075
[Rank 0] Move Remove Delta_down: Duration = 0.0079
[Rank 0] Move set Insert four operators: Duration = 0.0725
[Rank 0] Move Insert Delta_up_up: Duration = 0.0180
[Rank 0] Move Insert Delta_up_down: Duration = 0.0143
[Rank 0] Move Insert Delta_down_up: Duration = 0.0143
[Rank 0] Move Insert Delta_down_down: Duration = 0.0180
[Rank 0] Move set Remove four operators: Duration = 0.0157
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0024
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0017
[Rank 0] Move Shift one operator: Duration = 0.0342
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99648, Accepted = 5536, Rate = 0.0556
[Rank 0] Move Insert Delta_up: Proposed = 49957, Accepted = 2738, Rate = 0.0548
[Rank 0] Move Insert Delta_down: Proposed = 49691, Accepted = 2798, Rate = 0.0563
[Rank 0] Move set Remove two operators: Proposed = 99907, Accepted = 5653, Rate = 0.0566
[Rank 0] Move Remove Delta_up: Proposed = 49889, Accepted = 2803, Rate = 0.0562
[Rank 0] Move Remove Delta_down: Proposed = 50018, Accepted = 2850, Rate = 0.0570
[Rank 0] Move set Insert four operators: Proposed = 100402, Accepted = 403, Rate = 0.0040
[Rank 0] Move Insert Delta_up_up: Proposed = 25250, Accepted = 109, Rate = 0.0043
[Rank 0] Move Insert Delta_up_down: Proposed = 25006, Accepted = 92, Rate = 0.0037
[Rank 0] Move Insert Delta_down_up: Proposed = 25118, Accepted = 101, Rate = 0.0040
[Rank 0] Move Insert Delta_down_down: Proposed = 25028, Accepted = 101, Rate = 0.0040
[Rank 0] Move set Remove four operators: Proposed = 100214, Accepted = 344, Rate = 0.0034
[Rank 0] Move Remove Delta_up_up: Proposed = 24748, Accepted = 79, Rate = 0.0032
[Rank 0] Move Remove Delta_up_down: Proposed = 25206, Accepted = 90, Rate = 0.0036
[Rank 0] Move Remove Delta_down_up: Proposed = 25239, Accepted = 97, Rate = 0.0038
[Rank 0] Move Remove Delta_down_down: Proposed = 25021, Accepted = 78, Rate = 0.0031
[Rank 0] Move Shift one operator: Proposed = 99829, Accepted = 3356, Rate = 0.0336
Total number of measures: 10000
Total cycles (measures) / second: 4.53e+04
Average sign: 0.9988
Average order: 1.0345
Auto-correlation time: 2.13498 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:26 91.80% done, ETA 00:00:00, cycle 4590 of 5000, 4.59e+04 cycles/sec
[Rank 0] 08:09:26 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.60e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:26 45.51% done, ETA 00:00:00, cycle 4551 of 10000, 4.55e+04 cycles/sec
[Rank 0] 08:09:26 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.58e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1086 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2185 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.58e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1914):
[Rank 0] Move set Insert two operators: Duration = 0.0477
[Rank 0] Move Insert Delta_up: Duration = 0.0202
[Rank 0] Move Insert Delta_down: Duration = 0.0203
[Rank 0] Move set Remove two operators: Duration = 0.0224
[Rank 0] Move Remove Delta_up: Duration = 0.0075
[Rank 0] Move Remove Delta_down: Duration = 0.0076
[Rank 0] Move set Insert four operators: Duration = 0.0716
[Rank 0] Move Insert Delta_up_up: Duration = 0.0177
[Rank 0] Move Insert Delta_up_down: Duration = 0.0141
[Rank 0] Move Insert Delta_down_up: Duration = 0.0142
[Rank 0] Move Insert Delta_down_down: Duration = 0.0176
[Rank 0] Move set Remove four operators: Duration = 0.0157
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0024
[Rank 0] Move Remove Delta_down_up: Duration = 0.0024
[Rank 0] Move Remove Delta_down_down: Duration = 0.0016
[Rank 0] Move Shift one operator: Duration = 0.0340
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99547, Accepted = 5591, Rate = 0.0562
[Rank 0] Move Insert Delta_up: Proposed = 49893, Accepted = 2763, Rate = 0.0554
[Rank 0] Move Insert Delta_down: Proposed = 49654, Accepted = 2828, Rate = 0.0570
[Rank 0] Move set Remove two operators: Proposed = 100037, Accepted = 5635, Rate = 0.0563
[Rank 0] Move Remove Delta_up: Proposed = 49884, Accepted = 2811, Rate = 0.0564
[Rank 0] Move Remove Delta_down: Proposed = 50153, Accepted = 2824, Rate = 0.0563
[Rank 0] Move set Insert four operators: Proposed = 100453, Accepted = 408, Rate = 0.0041
[Rank 0] Move Insert Delta_up_up: Proposed = 25283, Accepted = 112, Rate = 0.0044
[Rank 0] Move Insert Delta_up_down: Proposed = 24964, Accepted = 106, Rate = 0.0042
[Rank 0] Move Insert Delta_down_up: Proposed = 25177, Accepted = 97, Rate = 0.0039
[Rank 0] Move Insert Delta_down_down: Proposed = 25029, Accepted = 93, Rate = 0.0037
[Rank 0] Move set Remove four operators: Proposed = 100127, Accepted = 387, Rate = 0.0039
[Rank 0] Move Remove Delta_up_up: Proposed = 24767, Accepted = 93, Rate = 0.0038
[Rank 0] Move Remove Delta_up_down: Proposed = 25208, Accepted = 95, Rate = 0.0038
[Rank 0] Move Remove Delta_down_up: Proposed = 25206, Accepted = 99, Rate = 0.0039
[Rank 0] Move Remove Delta_down_down: Proposed = 24946, Accepted = 100, Rate = 0.0040
[Rank 0] Move Shift one operator: Proposed = 99836, Accepted = 3556, Rate = 0.0356
Total number of measures: 10000
Total cycles (measures) / second: 4.58e+04
Average sign: 0.9978
Average order: 1.0107
Auto-correlation time: 2.7571 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:26 90.32% done, ETA 00:00:00, cycle 4516 of 5000, 4.52e+04 cycles/sec
[Rank 0] 08:09:26 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.55e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:26 45.26% done, ETA 00:00:00, cycle 4526 of 10000, 4.53e+04 cycles/sec
[Rank 0] 08:09:26 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.66e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1099 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2146 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.66e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1881):
[Rank 0] Move set Insert two operators: Duration = 0.0474
[Rank 0] Move Insert Delta_up: Duration = 0.0200
[Rank 0] Move Insert Delta_down: Duration = 0.0201
[Rank 0] Move set Remove two operators: Duration = 0.0223
[Rank 0] Move Remove Delta_up: Duration = 0.0074
[Rank 0] Move Remove Delta_down: Duration = 0.0077
[Rank 0] Move set Insert four operators: Duration = 0.0700
[Rank 0] Move Insert Delta_up_up: Duration = 0.0173
[Rank 0] Move Insert Delta_up_down: Duration = 0.0139
[Rank 0] Move Insert Delta_down_up: Duration = 0.0139
[Rank 0] Move Insert Delta_down_down: Duration = 0.0173
[Rank 0] Move set Remove four operators: Duration = 0.0154
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0024
[Rank 0] Move Remove Delta_down_up: Duration = 0.0024
[Rank 0] Move Remove Delta_down_down: Duration = 0.0016
[Rank 0] Move Shift one operator: Duration = 0.0330
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99796, Accepted = 5684, Rate = 0.0570
[Rank 0] Move Insert Delta_up: Proposed = 50083, Accepted = 2793, Rate = 0.0558
[Rank 0] Move Insert Delta_down: Proposed = 49713, Accepted = 2891, Rate = 0.0582
[Rank 0] Move set Remove two operators: Proposed = 100004, Accepted = 5740, Rate = 0.0574
[Rank 0] Move Remove Delta_up: Proposed = 49865, Accepted = 2836, Rate = 0.0569
[Rank 0] Move Remove Delta_down: Proposed = 50139, Accepted = 2904, Rate = 0.0579
[Rank 0] Move set Insert four operators: Proposed = 100430, Accepted = 399, Rate = 0.0040
[Rank 0] Move Insert Delta_up_up: Proposed = 25264, Accepted = 109, Rate = 0.0043
[Rank 0] Move Insert Delta_up_down: Proposed = 25027, Accepted = 101, Rate = 0.0040
[Rank 0] Move Insert Delta_down_up: Proposed = 25128, Accepted = 86, Rate = 0.0034
[Rank 0] Move Insert Delta_down_down: Proposed = 25011, Accepted = 103, Rate = 0.0041
[Rank 0] Move set Remove four operators: Proposed = 100084, Accepted = 371, Rate = 0.0037
[Rank 0] Move Remove Delta_up_up: Proposed = 24799, Accepted = 92, Rate = 0.0037
[Rank 0] Move Remove Delta_up_down: Proposed = 25097, Accepted = 86, Rate = 0.0034
[Rank 0] Move Remove Delta_down_up: Proposed = 25184, Accepted = 92, Rate = 0.0037
[Rank 0] Move Remove Delta_down_down: Proposed = 25004, Accepted = 101, Rate = 0.0040
[Rank 0] Move Shift one operator: Proposed = 99686, Accepted = 3367, Rate = 0.0338
Total number of measures: 10000
Total cycles (measures) / second: 4.66e+04
Average sign: 0.9968
Average order: 1.0148
Auto-correlation time: 2.81287 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:26 89.46% done, ETA 00:00:00, cycle 4473 of 5000, 4.47e+04 cycles/sec
[Rank 0] 08:09:26 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.47e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:26 43.04% done, ETA 00:00:00, cycle 4304 of 10000, 4.30e+04 cycles/sec
[Rank 0] 08:09:27 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.39e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1119 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2280 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.39e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2002):
[Rank 0] Move set Insert two operators: Duration = 0.0500
[Rank 0] Move Insert Delta_up: Duration = 0.0211
[Rank 0] Move Insert Delta_down: Duration = 0.0214
[Rank 0] Move set Remove two operators: Duration = 0.0236
[Rank 0] Move Remove Delta_up: Duration = 0.0080
[Rank 0] Move Remove Delta_down: Duration = 0.0082
[Rank 0] Move set Insert four operators: Duration = 0.0742
[Rank 0] Move Insert Delta_up_up: Duration = 0.0183
[Rank 0] Move Insert Delta_up_down: Duration = 0.0148
[Rank 0] Move Insert Delta_down_up: Duration = 0.0146
[Rank 0] Move Insert Delta_down_down: Duration = 0.0184
[Rank 0] Move set Remove four operators: Duration = 0.0167
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0027
[Rank 0] Move Remove Delta_down_up: Duration = 0.0026
[Rank 0] Move Remove Delta_down_down: Duration = 0.0017
[Rank 0] Move Shift one operator: Duration = 0.0357
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99666, Accepted = 5931, Rate = 0.0595
[Rank 0] Move Insert Delta_up: Proposed = 49972, Accepted = 2893, Rate = 0.0579
[Rank 0] Move Insert Delta_down: Proposed = 49694, Accepted = 3038, Rate = 0.0611
[Rank 0] Move set Remove two operators: Proposed = 99774, Accepted = 5944, Rate = 0.0596
[Rank 0] Move Remove Delta_up: Proposed = 49831, Accepted = 2929, Rate = 0.0588
[Rank 0] Move Remove Delta_down: Proposed = 49943, Accepted = 3015, Rate = 0.0604
[Rank 0] Move set Insert four operators: Proposed = 100481, Accepted = 429, Rate = 0.0043
[Rank 0] Move Insert Delta_up_up: Proposed = 25337, Accepted = 107, Rate = 0.0042
[Rank 0] Move Insert Delta_up_down: Proposed = 25074, Accepted = 130, Rate = 0.0052
[Rank 0] Move Insert Delta_down_up: Proposed = 24966, Accepted = 97, Rate = 0.0039
[Rank 0] Move Insert Delta_down_down: Proposed = 25104, Accepted = 95, Rate = 0.0038
[Rank 0] Move set Remove four operators: Proposed = 100182, Accepted = 422, Rate = 0.0042
[Rank 0] Move Remove Delta_up_up: Proposed = 24760, Accepted = 83, Rate = 0.0034
[Rank 0] Move Remove Delta_up_down: Proposed = 25165, Accepted = 117, Rate = 0.0046
[Rank 0] Move Remove Delta_down_up: Proposed = 25197, Accepted = 121, Rate = 0.0048
[Rank 0] Move Remove Delta_down_down: Proposed = 25060, Accepted = 101, Rate = 0.0040
[Rank 0] Move Shift one operator: Proposed = 99897, Accepted = 3669, Rate = 0.0367
Total number of measures: 10000
Total cycles (measures) / second: 4.39e+04
Average sign: 0.9806
Average order: 1.0485
Auto-correlation time: 3.1513 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:27 91.12% done, ETA 00:00:00, cycle 4556 of 5000, 4.55e+04 cycles/sec
[Rank 0] 08:09:27 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.53e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:27 42.89% done, ETA 00:00:00, cycle 4289 of 10000, 4.29e+04 cycles/sec
[Rank 0] 08:09:27 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.30e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1105 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2324 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.30e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.2037):
[Rank 0] Move set Insert two operators: Duration = 0.0509
[Rank 0] Move Insert Delta_up: Duration = 0.0215
[Rank 0] Move Insert Delta_down: Duration = 0.0217
[Rank 0] Move set Remove two operators: Duration = 0.0239
[Rank 0] Move Remove Delta_up: Duration = 0.0080
[Rank 0] Move Remove Delta_down: Duration = 0.0082
[Rank 0] Move set Insert four operators: Duration = 0.0761
[Rank 0] Move Insert Delta_up_up: Duration = 0.0188
[Rank 0] Move Insert Delta_up_down: Duration = 0.0151
[Rank 0] Move Insert Delta_down_up: Duration = 0.0150
[Rank 0] Move Insert Delta_down_down: Duration = 0.0188
[Rank 0] Move set Remove four operators: Duration = 0.0168
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0026
[Rank 0] Move Remove Delta_down_up: Duration = 0.0026
[Rank 0] Move Remove Delta_down_down: Duration = 0.0018
[Rank 0] Move Shift one operator: Duration = 0.0359
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99541, Accepted = 5595, Rate = 0.0562
[Rank 0] Move Insert Delta_up: Proposed = 49852, Accepted = 2758, Rate = 0.0553
[Rank 0] Move Insert Delta_down: Proposed = 49689, Accepted = 2837, Rate = 0.0571
[Rank 0] Move set Remove two operators: Proposed = 100005, Accepted = 5641, Rate = 0.0564
[Rank 0] Move Remove Delta_up: Proposed = 49905, Accepted = 2800, Rate = 0.0561
[Rank 0] Move Remove Delta_down: Proposed = 50100, Accepted = 2841, Rate = 0.0567
[Rank 0] Move set Insert four operators: Proposed = 100433, Accepted = 409, Rate = 0.0041
[Rank 0] Move Insert Delta_up_up: Proposed = 25308, Accepted = 116, Rate = 0.0046
[Rank 0] Move Insert Delta_up_down: Proposed = 25072, Accepted = 104, Rate = 0.0041
[Rank 0] Move Insert Delta_down_up: Proposed = 25074, Accepted = 90, Rate = 0.0036
[Rank 0] Move Insert Delta_down_down: Proposed = 24979, Accepted = 99, Rate = 0.0040
[Rank 0] Move set Remove four operators: Proposed = 100183, Accepted = 386, Rate = 0.0039
[Rank 0] Move Remove Delta_up_up: Proposed = 24733, Accepted = 95, Rate = 0.0038
[Rank 0] Move Remove Delta_up_down: Proposed = 25188, Accepted = 96, Rate = 0.0038
[Rank 0] Move Remove Delta_down_up: Proposed = 25255, Accepted = 97, Rate = 0.0038
[Rank 0] Move Remove Delta_down_down: Proposed = 25007, Accepted = 98, Rate = 0.0039
[Rank 0] Move Shift one operator: Proposed = 99838, Accepted = 3362, Rate = 0.0337
Total number of measures: 10000
Total cycles (measures) / second: 4.30e+04
Average sign: 0.9988
Average order: 1.0118
Auto-correlation time: 3.21137 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5*c_dag('down',0)*c('down',0) + -5*c_dag('up',0)*c('up',0) + 10*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:27 86.22% done, ETA 00:00:00, cycle 4311 of 5000, 4.31e+04 cycles/sec
[Rank 0] 08:09:27 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.37e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:27 46.72% done, ETA 00:00:00, cycle 4672 of 10000, 4.67e+04 cycles/sec
[Rank 0] 08:09:27 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.55e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1145 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2197 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.55e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1928):
[Rank 0] Move set Insert two operators: Duration = 0.0483
[Rank 0] Move Insert Delta_up: Duration = 0.0204
[Rank 0] Move Insert Delta_down: Duration = 0.0206
[Rank 0] Move set Remove two operators: Duration = 0.0228
[Rank 0] Move Remove Delta_up: Duration = 0.0077
[Rank 0] Move Remove Delta_down: Duration = 0.0078
[Rank 0] Move set Insert four operators: Duration = 0.0717
[Rank 0] Move Insert Delta_up_up: Duration = 0.0178
[Rank 0] Move Insert Delta_up_down: Duration = 0.0142
[Rank 0] Move Insert Delta_down_up: Duration = 0.0143
[Rank 0] Move Insert Delta_down_down: Duration = 0.0176
[Rank 0] Move set Remove four operators: Duration = 0.0161
[Rank 0] Move Remove Delta_up_up: Duration = 0.0016
[Rank 0] Move Remove Delta_up_down: Duration = 0.0025
[Rank 0] Move Remove Delta_down_up: Duration = 0.0025
[Rank 0] Move Remove Delta_down_down: Duration = 0.0017
[Rank 0] Move Shift one operator: Duration = 0.0338
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99831, Accepted = 5645, Rate = 0.0565
[Rank 0] Move Insert Delta_up: Proposed = 49885, Accepted = 2796, Rate = 0.0560
[Rank 0] Move Insert Delta_down: Proposed = 49946, Accepted = 2849, Rate = 0.0570
[Rank 0] Move set Remove two operators: Proposed = 99955, Accepted = 5653, Rate = 0.0566
[Rank 0] Move Remove Delta_up: Proposed = 49883, Accepted = 2828, Rate = 0.0567
[Rank 0] Move Remove Delta_down: Proposed = 50072, Accepted = 2825, Rate = 0.0564
[Rank 0] Move set Insert four operators: Proposed = 100584, Accepted = 397, Rate = 0.0039
[Rank 0] Move Insert Delta_up_up: Proposed = 25384, Accepted = 115, Rate = 0.0045
[Rank 0] Move Insert Delta_up_down: Proposed = 25060, Accepted = 94, Rate = 0.0038
[Rank 0] Move Insert Delta_down_up: Proposed = 25170, Accepted = 95, Rate = 0.0038
[Rank 0] Move Insert Delta_down_down: Proposed = 24970, Accepted = 93, Rate = 0.0037
[Rank 0] Move set Remove four operators: Proposed = 99964, Accepted = 393, Rate = 0.0039
[Rank 0] Move Remove Delta_up_up: Proposed = 24644, Accepted = 97, Rate = 0.0039
[Rank 0] Move Remove Delta_up_down: Proposed = 25062, Accepted = 88, Rate = 0.0035
[Rank 0] Move Remove Delta_down_up: Proposed = 25227, Accepted = 104, Rate = 0.0041
[Rank 0] Move Remove Delta_down_down: Proposed = 25031, Accepted = 104, Rate = 0.0042
[Rank 0] Move Shift one operator: Proposed = 99666, Accepted = 3283, Rate = 0.0329
Total number of measures: 10000
Total cycles (measures) / second: 4.55e+04
Average sign: 0.9982
Average order: 1.0399
Auto-correlation time: 2.59409 cycles
U = 11.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:27 62.20% done, ETA 00:00:00, cycle 3110 of 5000, 3.11e+04 cycles/sec
[Rank 0] 08:09:28 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.00e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:28 32.28% done, ETA 00:00:00, cycle 3228 of 10000, 3.23e+04 cycles/sec
[Rank 0] 08:09:28 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.07e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1666 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3258 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.07e+04
[Rank 0] Measurement durations (total = 0.0026):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0003
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0012
[Rank 0] Move durations (total = 0.2971):
[Rank 0] Move set Insert two operators: Duration = 0.0640
[Rank 0] Move Insert Delta_up: Duration = 0.0283
[Rank 0] Move Insert Delta_down: Duration = 0.0280
[Rank 0] Move set Remove two operators: Duration = 0.0413
[Rank 0] Move Remove Delta_up: Duration = 0.0168
[Rank 0] Move Remove Delta_down: Duration = 0.0168
[Rank 0] Move set Insert four operators: Duration = 0.0930
[Rank 0] Move Insert Delta_up_up: Duration = 0.0233
[Rank 0] Move Insert Delta_up_down: Duration = 0.0190
[Rank 0] Move Insert Delta_down_up: Duration = 0.0192
[Rank 0] Move Insert Delta_down_down: Duration = 0.0233
[Rank 0] Move set Remove four operators: Duration = 0.0315
[Rank 0] Move Remove Delta_up_up: Duration = 0.0038
[Rank 0] Move Remove Delta_up_down: Duration = 0.0078
[Rank 0] Move Remove Delta_down_up: Duration = 0.0079
[Rank 0] Move Remove Delta_down_down: Duration = 0.0039
[Rank 0] Move Shift one operator: Duration = 0.0673
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99708, Accepted = 6945, Rate = 0.0697
[Rank 0] Move Insert Delta_up: Proposed = 50013, Accepted = 3492, Rate = 0.0698
[Rank 0] Move Insert Delta_down: Proposed = 49695, Accepted = 3453, Rate = 0.0695
[Rank 0] Move set Remove two operators: Proposed = 99951, Accepted = 6859, Rate = 0.0686
[Rank 0] Move Remove Delta_up: Proposed = 49830, Accepted = 3456, Rate = 0.0694
[Rank 0] Move Remove Delta_down: Proposed = 50121, Accepted = 3403, Rate = 0.0679
[Rank 0] Move set Insert four operators: Proposed = 100493, Accepted = 1024, Rate = 0.0102
[Rank 0] Move Insert Delta_up_up: Proposed = 25240, Accepted = 192, Rate = 0.0076
[Rank 0] Move Insert Delta_up_down: Proposed = 24855, Accepted = 335, Rate = 0.0135
[Rank 0] Move Insert Delta_down_up: Proposed = 25300, Accepted = 326, Rate = 0.0129
[Rank 0] Move Insert Delta_down_down: Proposed = 25098, Accepted = 171, Rate = 0.0068
[Rank 0] Move set Remove four operators: Proposed = 99944, Accepted = 1065, Rate = 0.0107
[Rank 0] Move Remove Delta_up_up: Proposed = 24745, Accepted = 194, Rate = 0.0078
[Rank 0] Move Remove Delta_up_down: Proposed = 25036, Accepted = 350, Rate = 0.0140
[Rank 0] Move Remove Delta_down_up: Proposed = 25153, Accepted = 342, Rate = 0.0136
[Rank 0] Move Remove Delta_down_down: Proposed = 25010, Accepted = 179, Rate = 0.0072
[Rank 0] Move Shift one operator: Proposed = 99904, Accepted = 11320, Rate = 0.1133
Total number of measures: 10000
Total cycles (measures) / second: 3.07e+04
Average sign: 1
Average order: 2.3798
Auto-correlation time: 6.80429 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:28 91.68% done, ETA 00:00:00, cycle 4584 of 5000, 4.58e+04 cycles/sec
[Rank 0] 08:09:28 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.62e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:28 46.64% done, ETA 00:00:00, cycle 4664 of 10000, 4.66e+04 cycles/sec
[Rank 0] 08:09:28 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.63e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1082 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2158 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.63e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1887):
[Rank 0] Move set Insert two operators: Duration = 0.0476
[Rank 0] Move Insert Delta_up: Duration = 0.0200
[Rank 0] Move Insert Delta_down: Duration = 0.0202
[Rank 0] Move set Remove two operators: Duration = 0.0220
[Rank 0] Move Remove Delta_up: Duration = 0.0073
[Rank 0] Move Remove Delta_down: Duration = 0.0075
[Rank 0] Move set Insert four operators: Duration = 0.0707
[Rank 0] Move Insert Delta_up_up: Duration = 0.0173
[Rank 0] Move Insert Delta_up_down: Duration = 0.0141
[Rank 0] Move Insert Delta_down_up: Duration = 0.0141
[Rank 0] Move Insert Delta_down_down: Duration = 0.0175
[Rank 0] Move set Remove four operators: Duration = 0.0156
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0025
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0016
[Rank 0] Move Shift one operator: Duration = 0.0327
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99800, Accepted = 5665, Rate = 0.0568
[Rank 0] Move Insert Delta_up: Proposed = 49916, Accepted = 2787, Rate = 0.0558
[Rank 0] Move Insert Delta_down: Proposed = 49884, Accepted = 2878, Rate = 0.0577
[Rank 0] Move set Remove two operators: Proposed = 99949, Accepted = 5705, Rate = 0.0571
[Rank 0] Move Remove Delta_up: Proposed = 49890, Accepted = 2837, Rate = 0.0569
[Rank 0] Move Remove Delta_down: Proposed = 50059, Accepted = 2868, Rate = 0.0573
[Rank 0] Move set Insert four operators: Proposed = 100411, Accepted = 516, Rate = 0.0051
[Rank 0] Move Insert Delta_up_up: Proposed = 25304, Accepted = 113, Rate = 0.0045
[Rank 0] Move Insert Delta_up_down: Proposed = 25003, Accepted = 165, Rate = 0.0066
[Rank 0] Move Insert Delta_down_up: Proposed = 25061, Accepted = 148, Rate = 0.0059
[Rank 0] Move Insert Delta_down_down: Proposed = 25043, Accepted = 90, Rate = 0.0036
[Rank 0] Move set Remove four operators: Proposed = 100123, Accepted = 495, Rate = 0.0049
[Rank 0] Move Remove Delta_up_up: Proposed = 24779, Accepted = 93, Rate = 0.0038
[Rank 0] Move Remove Delta_up_down: Proposed = 25184, Accepted = 151, Rate = 0.0060
[Rank 0] Move Remove Delta_down_up: Proposed = 25148, Accepted = 151, Rate = 0.0060
[Rank 0] Move Remove Delta_down_down: Proposed = 25012, Accepted = 100, Rate = 0.0040
[Rank 0] Move Shift one operator: Proposed = 99717, Accepted = 3239, Rate = 0.0325
Total number of measures: 10000
Total cycles (measures) / second: 4.63e+04
Average sign: 1
Average order: 0.9786
Auto-correlation time: 2.33086 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:28 94.48% done, ETA 00:00:00, cycle 4724 of 5000, 4.72e+04 cycles/sec
[Rank 0] 08:09:28 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.74e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:28 46.42% done, ETA 00:00:00, cycle 4642 of 10000, 4.64e+04 cycles/sec
[Rank 0] 08:09:29 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.66e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1055 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2144 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.66e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1871):
[Rank 0] Move set Insert two operators: Duration = 0.0473
[Rank 0] Move Insert Delta_up: Duration = 0.0199
[Rank 0] Move Insert Delta_down: Duration = 0.0200
[Rank 0] Move set Remove two operators: Duration = 0.0217
[Rank 0] Move Remove Delta_up: Duration = 0.0070
[Rank 0] Move Remove Delta_down: Duration = 0.0072
[Rank 0] Move set Insert four operators: Duration = 0.0708
[Rank 0] Move Insert Delta_up_up: Duration = 0.0174
[Rank 0] Move Insert Delta_up_down: Duration = 0.0141
[Rank 0] Move Insert Delta_down_up: Duration = 0.0139
[Rank 0] Move Insert Delta_down_down: Duration = 0.0175
[Rank 0] Move set Remove four operators: Duration = 0.0154
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0023
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0319
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99698, Accepted = 5214, Rate = 0.0523
[Rank 0] Move Insert Delta_up: Proposed = 49893, Accepted = 2568, Rate = 0.0515
[Rank 0] Move Insert Delta_down: Proposed = 49805, Accepted = 2646, Rate = 0.0531
[Rank 0] Move set Remove two operators: Proposed = 99850, Accepted = 5255, Rate = 0.0526
[Rank 0] Move Remove Delta_up: Proposed = 49740, Accepted = 2613, Rate = 0.0525
[Rank 0] Move Remove Delta_down: Proposed = 50110, Accepted = 2642, Rate = 0.0527
[Rank 0] Move set Insert four operators: Proposed = 100531, Accepted = 356, Rate = 0.0035
[Rank 0] Move Insert Delta_up_up: Proposed = 25323, Accepted = 101, Rate = 0.0040
[Rank 0] Move Insert Delta_up_down: Proposed = 25086, Accepted = 93, Rate = 0.0037
[Rank 0] Move Insert Delta_down_up: Proposed = 25059, Accepted = 84, Rate = 0.0034
[Rank 0] Move Insert Delta_down_down: Proposed = 25063, Accepted = 78, Rate = 0.0031
[Rank 0] Move set Remove four operators: Proposed = 100050, Accepted = 336, Rate = 0.0034
[Rank 0] Move Remove Delta_up_up: Proposed = 24748, Accepted = 74, Rate = 0.0030
[Rank 0] Move Remove Delta_up_down: Proposed = 25196, Accepted = 93, Rate = 0.0037
[Rank 0] Move Remove Delta_down_up: Proposed = 25129, Accepted = 94, Rate = 0.0037
[Rank 0] Move Remove Delta_down_down: Proposed = 24977, Accepted = 75, Rate = 0.0030
[Rank 0] Move Shift one operator: Proposed = 99871, Accepted = 2875, Rate = 0.0288
Total number of measures: 10000
Total cycles (measures) / second: 4.66e+04
Average sign: 0.9996
Average order: 0.9456
Auto-correlation time: 2.43615 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:29 96.72% done, ETA 00:00:00, cycle 4836 of 5000, 4.84e+04 cycles/sec
[Rank 0] 08:09:29 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.84e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:29 47.06% done, ETA 00:00:00, cycle 4706 of 10000, 4.71e+04 cycles/sec
[Rank 0] 08:09:29 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.67e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1033 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2141 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.67e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1868):
[Rank 0] Move set Insert two operators: Duration = 0.0474
[Rank 0] Move Insert Delta_up: Duration = 0.0199
[Rank 0] Move Insert Delta_down: Duration = 0.0200
[Rank 0] Move set Remove two operators: Duration = 0.0216
[Rank 0] Move Remove Delta_up: Duration = 0.0071
[Rank 0] Move Remove Delta_down: Duration = 0.0072
[Rank 0] Move set Insert four operators: Duration = 0.0708
[Rank 0] Move Insert Delta_up_up: Duration = 0.0175
[Rank 0] Move Insert Delta_up_down: Duration = 0.0140
[Rank 0] Move Insert Delta_down_up: Duration = 0.0140
[Rank 0] Move Insert Delta_down_down: Duration = 0.0174
[Rank 0] Move set Remove four operators: Duration = 0.0152
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0023
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0318
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99872, Accepted = 5096, Rate = 0.0510
[Rank 0] Move Insert Delta_up: Proposed = 50030, Accepted = 2522, Rate = 0.0504
[Rank 0] Move Insert Delta_down: Proposed = 49842, Accepted = 2574, Rate = 0.0516
[Rank 0] Move set Remove two operators: Proposed = 99801, Accepted = 5144, Rate = 0.0515
[Rank 0] Move Remove Delta_up: Proposed = 49830, Accepted = 2565, Rate = 0.0515
[Rank 0] Move Remove Delta_down: Proposed = 49971, Accepted = 2579, Rate = 0.0516
[Rank 0] Move set Insert four operators: Proposed = 100474, Accepted = 342, Rate = 0.0034
[Rank 0] Move Insert Delta_up_up: Proposed = 25362, Accepted = 96, Rate = 0.0038
[Rank 0] Move Insert Delta_up_down: Proposed = 25016, Accepted = 82, Rate = 0.0033
[Rank 0] Move Insert Delta_down_up: Proposed = 25118, Accepted = 83, Rate = 0.0033
[Rank 0] Move Insert Delta_down_down: Proposed = 24978, Accepted = 81, Rate = 0.0032
[Rank 0] Move set Remove four operators: Proposed = 100070, Accepted = 318, Rate = 0.0032
[Rank 0] Move Remove Delta_up_up: Proposed = 24702, Accepted = 70, Rate = 0.0028
[Rank 0] Move Remove Delta_up_down: Proposed = 25159, Accepted = 81, Rate = 0.0032
[Rank 0] Move Remove Delta_down_up: Proposed = 25112, Accepted = 93, Rate = 0.0037
[Rank 0] Move Remove Delta_down_down: Proposed = 25097, Accepted = 74, Rate = 0.0029
[Rank 0] Move Shift one operator: Proposed = 99783, Accepted = 2766, Rate = 0.0277
Total number of measures: 10000
Total cycles (measures) / second: 4.67e+04
Average sign: 0.9996
Average order: 0.9533
Auto-correlation time: 2.4936 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:29 97.88% done, ETA 00:00:00, cycle 4894 of 5000, 4.89e+04 cycles/sec
[Rank 0] 08:09:29 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.89e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:29 47.25% done, ETA 00:00:00, cycle 4725 of 10000, 4.72e+04 cycles/sec
[Rank 0] 08:09:29 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.76e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1022 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2100 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.76e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1834):
[Rank 0] Move set Insert two operators: Duration = 0.0462
[Rank 0] Move Insert Delta_up: Duration = 0.0194
[Rank 0] Move Insert Delta_down: Duration = 0.0195
[Rank 0] Move set Remove two operators: Duration = 0.0212
[Rank 0] Move Remove Delta_up: Duration = 0.0070
[Rank 0] Move Remove Delta_down: Duration = 0.0071
[Rank 0] Move set Insert four operators: Duration = 0.0694
[Rank 0] Move Insert Delta_up_up: Duration = 0.0171
[Rank 0] Move Insert Delta_up_down: Duration = 0.0137
[Rank 0] Move Insert Delta_down_up: Duration = 0.0137
[Rank 0] Move Insert Delta_down_down: Duration = 0.0171
[Rank 0] Move set Remove four operators: Duration = 0.0151
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0022
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0315
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99683, Accepted = 5075, Rate = 0.0509
[Rank 0] Move Insert Delta_up: Proposed = 49958, Accepted = 2470, Rate = 0.0494
[Rank 0] Move Insert Delta_down: Proposed = 49725, Accepted = 2605, Rate = 0.0524
[Rank 0] Move set Remove two operators: Proposed = 99780, Accepted = 5147, Rate = 0.0516
[Rank 0] Move Remove Delta_up: Proposed = 49785, Accepted = 2532, Rate = 0.0509
[Rank 0] Move Remove Delta_down: Proposed = 49995, Accepted = 2615, Rate = 0.0523
[Rank 0] Move set Insert four operators: Proposed = 100451, Accepted = 330, Rate = 0.0033
[Rank 0] Move Insert Delta_up_up: Proposed = 25359, Accepted = 96, Rate = 0.0038
[Rank 0] Move Insert Delta_up_down: Proposed = 24960, Accepted = 82, Rate = 0.0033
[Rank 0] Move Insert Delta_down_up: Proposed = 25077, Accepted = 75, Rate = 0.0030
[Rank 0] Move Insert Delta_down_down: Proposed = 25055, Accepted = 77, Rate = 0.0031
[Rank 0] Move set Remove four operators: Proposed = 100110, Accepted = 293, Rate = 0.0029
[Rank 0] Move Remove Delta_up_up: Proposed = 24835, Accepted = 64, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25132, Accepted = 72, Rate = 0.0029
[Rank 0] Move Remove Delta_down_up: Proposed = 25138, Accepted = 87, Rate = 0.0035
[Rank 0] Move Remove Delta_down_down: Proposed = 25005, Accepted = 70, Rate = 0.0028
[Rank 0] Move Shift one operator: Proposed = 99976, Accepted = 2851, Rate = 0.0285
Total number of measures: 10000
Total cycles (measures) / second: 4.76e+04
Average sign: 0.9988
Average order: 0.9713
Auto-correlation time: 2.63386 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:29 90.74% done, ETA 00:00:00, cycle 4537 of 5000, 4.54e+04 cycles/sec
[Rank 0] 08:09:29 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.56e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:30 46.69% done, ETA 00:00:00, cycle 4669 of 10000, 4.67e+04 cycles/sec
[Rank 0] 08:09:30 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.67e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1096 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2143 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.67e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1872):
[Rank 0] Move set Insert two operators: Duration = 0.0471
[Rank 0] Move Insert Delta_up: Duration = 0.0199
[Rank 0] Move Insert Delta_down: Duration = 0.0199
[Rank 0] Move set Remove two operators: Duration = 0.0217
[Rank 0] Move Remove Delta_up: Duration = 0.0071
[Rank 0] Move Remove Delta_down: Duration = 0.0073
[Rank 0] Move set Insert four operators: Duration = 0.0709
[Rank 0] Move Insert Delta_up_up: Duration = 0.0175
[Rank 0] Move Insert Delta_up_down: Duration = 0.0140
[Rank 0] Move Insert Delta_down_up: Duration = 0.0140
[Rank 0] Move Insert Delta_down_down: Duration = 0.0176
[Rank 0] Move set Remove four operators: Duration = 0.0154
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0023
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0016
[Rank 0] Move Shift one operator: Duration = 0.0322
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99850, Accepted = 5182, Rate = 0.0519
[Rank 0] Move Insert Delta_up: Proposed = 50071, Accepted = 2579, Rate = 0.0515
[Rank 0] Move Insert Delta_down: Proposed = 49779, Accepted = 2603, Rate = 0.0523
[Rank 0] Move set Remove two operators: Proposed = 99906, Accepted = 5236, Rate = 0.0524
[Rank 0] Move Remove Delta_up: Proposed = 49928, Accepted = 2626, Rate = 0.0526
[Rank 0] Move Remove Delta_down: Proposed = 49978, Accepted = 2610, Rate = 0.0522
[Rank 0] Move set Insert four operators: Proposed = 100421, Accepted = 328, Rate = 0.0033
[Rank 0] Move Insert Delta_up_up: Proposed = 25344, Accepted = 98, Rate = 0.0039
[Rank 0] Move Insert Delta_up_down: Proposed = 24983, Accepted = 76, Rate = 0.0030
[Rank 0] Move Insert Delta_down_up: Proposed = 25034, Accepted = 73, Rate = 0.0029
[Rank 0] Move Insert Delta_down_down: Proposed = 25060, Accepted = 81, Rate = 0.0032
[Rank 0] Move set Remove four operators: Proposed = 99943, Accepted = 301, Rate = 0.0030
[Rank 0] Move Remove Delta_up_up: Proposed = 24696, Accepted = 69, Rate = 0.0028
[Rank 0] Move Remove Delta_up_down: Proposed = 25173, Accepted = 71, Rate = 0.0028
[Rank 0] Move Remove Delta_down_up: Proposed = 25045, Accepted = 89, Rate = 0.0036
[Rank 0] Move Remove Delta_down_down: Proposed = 25029, Accepted = 72, Rate = 0.0029
[Rank 0] Move Shift one operator: Proposed = 99880, Accepted = 2818, Rate = 0.0282
Total number of measures: 10000
Total cycles (measures) / second: 4.67e+04
Average sign: 0.9988
Average order: 0.9679
Auto-correlation time: 2.75782 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:30 89.38% done, ETA 00:00:00, cycle 4469 of 5000, 4.47e+04 cycles/sec
[Rank 0] 08:09:30 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.52e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:30 45.98% done, ETA 00:00:00, cycle 4598 of 10000, 4.60e+04 cycles/sec
[Rank 0] 08:09:30 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.66e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1106 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2146 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.66e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1872):
[Rank 0] Move set Insert two operators: Duration = 0.0472
[Rank 0] Move Insert Delta_up: Duration = 0.0199
[Rank 0] Move Insert Delta_down: Duration = 0.0199
[Rank 0] Move set Remove two operators: Duration = 0.0217
[Rank 0] Move Remove Delta_up: Duration = 0.0072
[Rank 0] Move Remove Delta_down: Duration = 0.0072
[Rank 0] Move set Insert four operators: Duration = 0.0707
[Rank 0] Move Insert Delta_up_up: Duration = 0.0175
[Rank 0] Move Insert Delta_up_down: Duration = 0.0140
[Rank 0] Move Insert Delta_down_up: Duration = 0.0139
[Rank 0] Move Insert Delta_down_down: Duration = 0.0174
[Rank 0] Move set Remove four operators: Duration = 0.0154
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0023
[Rank 0] Move Remove Delta_down_up: Duration = 0.0023
[Rank 0] Move Remove Delta_down_down: Duration = 0.0016
[Rank 0] Move Shift one operator: Duration = 0.0322
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99649, Accepted = 5126, Rate = 0.0514
[Rank 0] Move Insert Delta_up: Proposed = 49935, Accepted = 2550, Rate = 0.0511
[Rank 0] Move Insert Delta_down: Proposed = 49714, Accepted = 2576, Rate = 0.0518
[Rank 0] Move set Remove two operators: Proposed = 99973, Accepted = 5194, Rate = 0.0520
[Rank 0] Move Remove Delta_up: Proposed = 49944, Accepted = 2616, Rate = 0.0524
[Rank 0] Move Remove Delta_down: Proposed = 50029, Accepted = 2578, Rate = 0.0515
[Rank 0] Move set Insert four operators: Proposed = 100427, Accepted = 340, Rate = 0.0034
[Rank 0] Move Insert Delta_up_up: Proposed = 25348, Accepted = 93, Rate = 0.0037
[Rank 0] Move Insert Delta_up_down: Proposed = 24997, Accepted = 86, Rate = 0.0034
[Rank 0] Move Insert Delta_down_up: Proposed = 25050, Accepted = 77, Rate = 0.0031
[Rank 0] Move Insert Delta_down_down: Proposed = 25032, Accepted = 84, Rate = 0.0034
[Rank 0] Move set Remove four operators: Proposed = 100048, Accepted = 306, Rate = 0.0031
[Rank 0] Move Remove Delta_up_up: Proposed = 24706, Accepted = 63, Rate = 0.0025
[Rank 0] Move Remove Delta_up_down: Proposed = 25140, Accepted = 82, Rate = 0.0033
[Rank 0] Move Remove Delta_down_up: Proposed = 25180, Accepted = 75, Rate = 0.0030
[Rank 0] Move Remove Delta_down_down: Proposed = 25022, Accepted = 86, Rate = 0.0034
[Rank 0] Move Shift one operator: Proposed = 99903, Accepted = 2827, Rate = 0.0283
Total number of measures: 10000
Total cycles (measures) / second: 4.66e+04
Average sign: 0.9992
Average order: 0.9675
Auto-correlation time: 2.63436 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:30 96.82% done, ETA 00:00:00, cycle 4841 of 5000, 4.84e+04 cycles/sec
[Rank 0] 08:09:30 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.85e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:30 47.53% done, ETA 00:00:00, cycle 4753 of 10000, 4.75e+04 cycles/sec
[Rank 0] 08:09:30 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.81e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1031 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2081 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.81e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1815):
[Rank 0] Move set Insert two operators: Duration = 0.0460
[Rank 0] Move Insert Delta_up: Duration = 0.0193
[Rank 0] Move Insert Delta_down: Duration = 0.0195
[Rank 0] Move set Remove two operators: Duration = 0.0208
[Rank 0] Move Remove Delta_up: Duration = 0.0068
[Rank 0] Move Remove Delta_down: Duration = 0.0069
[Rank 0] Move set Insert four operators: Duration = 0.0688
[Rank 0] Move Insert Delta_up_up: Duration = 0.0170
[Rank 0] Move Insert Delta_up_down: Duration = 0.0137
[Rank 0] Move Insert Delta_down_up: Duration = 0.0136
[Rank 0] Move Insert Delta_down_down: Duration = 0.0169
[Rank 0] Move set Remove four operators: Duration = 0.0150
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0022
[Rank 0] Move Remove Delta_down_up: Duration = 0.0022
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0309
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99761, Accepted = 5150, Rate = 0.0516
[Rank 0] Move Insert Delta_up: Proposed = 49986, Accepted = 2539, Rate = 0.0508
[Rank 0] Move Insert Delta_down: Proposed = 49775, Accepted = 2611, Rate = 0.0525
[Rank 0] Move set Remove two operators: Proposed = 99911, Accepted = 5155, Rate = 0.0516
[Rank 0] Move Remove Delta_up: Proposed = 49838, Accepted = 2565, Rate = 0.0515
[Rank 0] Move Remove Delta_down: Proposed = 50073, Accepted = 2590, Rate = 0.0517
[Rank 0] Move set Insert four operators: Proposed = 100407, Accepted = 323, Rate = 0.0032
[Rank 0] Move Insert Delta_up_up: Proposed = 25296, Accepted = 87, Rate = 0.0034
[Rank 0] Move Insert Delta_up_down: Proposed = 25003, Accepted = 81, Rate = 0.0032
[Rank 0] Move Insert Delta_down_up: Proposed = 25112, Accepted = 81, Rate = 0.0032
[Rank 0] Move Insert Delta_down_down: Proposed = 24996, Accepted = 74, Rate = 0.0030
[Rank 0] Move set Remove four operators: Proposed = 100120, Accepted = 320, Rate = 0.0032
[Rank 0] Move Remove Delta_up_up: Proposed = 24771, Accepted = 71, Rate = 0.0029
[Rank 0] Move Remove Delta_up_down: Proposed = 25177, Accepted = 87, Rate = 0.0035
[Rank 0] Move Remove Delta_down_up: Proposed = 25125, Accepted = 81, Rate = 0.0032
[Rank 0] Move Remove Delta_down_down: Proposed = 25047, Accepted = 81, Rate = 0.0032
[Rank 0] Move Shift one operator: Proposed = 99801, Accepted = 2788, Rate = 0.0279
Total number of measures: 10000
Total cycles (measures) / second: 4.81e+04
Average sign: 0.998
Average order: 0.9502
Auto-correlation time: 2.43828 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:30 94.20% done, ETA 00:00:00, cycle 4710 of 5000, 4.71e+04 cycles/sec
[Rank 0] 08:09:30 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.74e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:31 45.03% done, ETA 00:00:00, cycle 4503 of 10000, 4.50e+04 cycles/sec
[Rank 0] 08:09:31 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.69e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1056 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2132 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.69e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1859):
[Rank 0] Move set Insert two operators: Duration = 0.0470
[Rank 0] Move Insert Delta_up: Duration = 0.0198
[Rank 0] Move Insert Delta_down: Duration = 0.0199
[Rank 0] Move set Remove two operators: Duration = 0.0215
[Rank 0] Move Remove Delta_up: Duration = 0.0071
[Rank 0] Move Remove Delta_down: Duration = 0.0071
[Rank 0] Move set Insert four operators: Duration = 0.0704
[Rank 0] Move Insert Delta_up_up: Duration = 0.0175
[Rank 0] Move Insert Delta_up_down: Duration = 0.0139
[Rank 0] Move Insert Delta_down_up: Duration = 0.0138
[Rank 0] Move Insert Delta_down_down: Duration = 0.0174
[Rank 0] Move set Remove four operators: Duration = 0.0151
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0022
[Rank 0] Move Remove Delta_down_up: Duration = 0.0022
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0320
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99638, Accepted = 5211, Rate = 0.0523
[Rank 0] Move Insert Delta_up: Proposed = 49938, Accepted = 2587, Rate = 0.0518
[Rank 0] Move Insert Delta_down: Proposed = 49700, Accepted = 2624, Rate = 0.0528
[Rank 0] Move set Remove two operators: Proposed = 99982, Accepted = 5238, Rate = 0.0524
[Rank 0] Move Remove Delta_up: Proposed = 49823, Accepted = 2629, Rate = 0.0528
[Rank 0] Move Remove Delta_down: Proposed = 50159, Accepted = 2609, Rate = 0.0520
[Rank 0] Move set Insert four operators: Proposed = 100553, Accepted = 334, Rate = 0.0033
[Rank 0] Move Insert Delta_up_up: Proposed = 25401, Accepted = 98, Rate = 0.0039
[Rank 0] Move Insert Delta_up_down: Proposed = 25073, Accepted = 83, Rate = 0.0033
[Rank 0] Move Insert Delta_down_up: Proposed = 25063, Accepted = 72, Rate = 0.0029
[Rank 0] Move Insert Delta_down_down: Proposed = 25016, Accepted = 81, Rate = 0.0032
[Rank 0] Move set Remove four operators: Proposed = 100065, Accepted = 321, Rate = 0.0032
[Rank 0] Move Remove Delta_up_up: Proposed = 24732, Accepted = 75, Rate = 0.0030
[Rank 0] Move Remove Delta_up_down: Proposed = 25199, Accepted = 65, Rate = 0.0026
[Rank 0] Move Remove Delta_down_up: Proposed = 25109, Accepted = 94, Rate = 0.0037
[Rank 0] Move Remove Delta_down_down: Proposed = 25025, Accepted = 87, Rate = 0.0035
[Rank 0] Move Shift one operator: Proposed = 99762, Accepted = 2952, Rate = 0.0296
Total number of measures: 10000
Total cycles (measures) / second: 4.69e+04
Average sign: 0.999
Average order: 0.9579
Auto-correlation time: 2.4987 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-5.5*c_dag('down',0)*c('down',0) + -5.5*c_dag('up',0)*c('up',0) + 11*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:31 93.62% done, ETA 00:00:00, cycle 4681 of 5000, 4.68e+04 cycles/sec
[Rank 0] 08:09:31 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.69e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:31 46.48% done, ETA 00:00:00, cycle 4648 of 10000, 4.65e+04 cycles/sec
[Rank 0] 08:09:31 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.64e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1066 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2156 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.64e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1884):
[Rank 0] Move set Insert two operators: Duration = 0.0475
[Rank 0] Move Insert Delta_up: Duration = 0.0199
[Rank 0] Move Insert Delta_down: Duration = 0.0201
[Rank 0] Move set Remove two operators: Duration = 0.0218
[Rank 0] Move Remove Delta_up: Duration = 0.0072
[Rank 0] Move Remove Delta_down: Duration = 0.0074
[Rank 0] Move set Insert four operators: Duration = 0.0710
[Rank 0] Move Insert Delta_up_up: Duration = 0.0176
[Rank 0] Move Insert Delta_up_down: Duration = 0.0140
[Rank 0] Move Insert Delta_down_up: Duration = 0.0140
[Rank 0] Move Insert Delta_down_down: Duration = 0.0176
[Rank 0] Move set Remove four operators: Duration = 0.0156
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0024
[Rank 0] Move Remove Delta_down_up: Duration = 0.0024
[Rank 0] Move Remove Delta_down_down: Duration = 0.0016
[Rank 0] Move Shift one operator: Duration = 0.0325
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99583, Accepted = 5181, Rate = 0.0520
[Rank 0] Move Insert Delta_up: Proposed = 49875, Accepted = 2568, Rate = 0.0515
[Rank 0] Move Insert Delta_down: Proposed = 49708, Accepted = 2613, Rate = 0.0526
[Rank 0] Move set Remove two operators: Proposed = 99887, Accepted = 5248, Rate = 0.0525
[Rank 0] Move Remove Delta_up: Proposed = 49916, Accepted = 2621, Rate = 0.0525
[Rank 0] Move Remove Delta_down: Proposed = 49971, Accepted = 2627, Rate = 0.0526
[Rank 0] Move set Insert four operators: Proposed = 100442, Accepted = 337, Rate = 0.0034
[Rank 0] Move Insert Delta_up_up: Proposed = 25381, Accepted = 105, Rate = 0.0041
[Rank 0] Move Insert Delta_up_down: Proposed = 25063, Accepted = 81, Rate = 0.0032
[Rank 0] Move Insert Delta_down_up: Proposed = 24921, Accepted = 73, Rate = 0.0029
[Rank 0] Move Insert Delta_down_down: Proposed = 25077, Accepted = 78, Rate = 0.0031
[Rank 0] Move set Remove four operators: Proposed = 100160, Accepted = 303, Rate = 0.0030
[Rank 0] Move Remove Delta_up_up: Proposed = 24771, Accepted = 77, Rate = 0.0031
[Rank 0] Move Remove Delta_up_down: Proposed = 25194, Accepted = 73, Rate = 0.0029
[Rank 0] Move Remove Delta_down_up: Proposed = 25133, Accepted = 83, Rate = 0.0033
[Rank 0] Move Remove Delta_down_down: Proposed = 25062, Accepted = 70, Rate = 0.0028
[Rank 0] Move Shift one operator: Proposed = 99928, Accepted = 3008, Rate = 0.0301
Total number of measures: 10000
Total cycles (measures) / second: 4.64e+04
Average sign: 0.9998
Average order: 0.9797
Auto-correlation time: 3.73462 cycles
U = 12.0
Iteration = 1 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:31 65.82% done, ETA 00:00:00, cycle 3291 of 5000, 3.29e+04 cycles/sec
[Rank 0] 08:09:31 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 3.37e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:31 34.03% done, ETA 00:00:00, cycle 3403 of 10000, 3.40e+04 cycles/sec
[Rank 0] 08:09:32 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 3.24e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1485 seconds [00:00:00]
[Rank 0] Simulation duration: 0.3084 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 3.24e+04
[Rank 0] Measurement durations (total = 0.0025):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0012
[Rank 0] Move durations (total = 0.2804):
[Rank 0] Move set Insert two operators: Duration = 0.0615
[Rank 0] Move Insert Delta_up: Duration = 0.0268
[Rank 0] Move Insert Delta_down: Duration = 0.0270
[Rank 0] Move set Remove two operators: Duration = 0.0384
[Rank 0] Move Remove Delta_up: Duration = 0.0154
[Rank 0] Move Remove Delta_down: Duration = 0.0154
[Rank 0] Move set Insert four operators: Duration = 0.0896
[Rank 0] Move Insert Delta_up_up: Duration = 0.0225
[Rank 0] Move Insert Delta_up_down: Duration = 0.0182
[Rank 0] Move Insert Delta_down_up: Duration = 0.0185
[Rank 0] Move Insert Delta_down_down: Duration = 0.0222
[Rank 0] Move set Remove four operators: Duration = 0.0288
[Rank 0] Move Remove Delta_up_up: Duration = 0.0036
[Rank 0] Move Remove Delta_up_down: Duration = 0.0069
[Rank 0] Move Remove Delta_down_up: Duration = 0.0069
[Rank 0] Move Remove Delta_down_down: Duration = 0.0034
[Rank 0] Move Shift one operator: Duration = 0.0621
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99831, Accepted = 6581, Rate = 0.0659
[Rank 0] Move Insert Delta_up: Proposed = 50013, Accepted = 3226, Rate = 0.0645
[Rank 0] Move Insert Delta_down: Proposed = 49818, Accepted = 3355, Rate = 0.0673
[Rank 0] Move set Remove two operators: Proposed = 99950, Accepted = 6638, Rate = 0.0664
[Rank 0] Move Remove Delta_up: Proposed = 49840, Accepted = 3275, Rate = 0.0657
[Rank 0] Move Remove Delta_down: Proposed = 50110, Accepted = 3363, Rate = 0.0671
[Rank 0] Move set Insert four operators: Proposed = 100397, Accepted = 976, Rate = 0.0097
[Rank 0] Move Insert Delta_up_up: Proposed = 25228, Accepted = 206, Rate = 0.0082
[Rank 0] Move Insert Delta_up_down: Proposed = 24904, Accepted = 300, Rate = 0.0120
[Rank 0] Move Insert Delta_down_up: Proposed = 25370, Accepted = 313, Rate = 0.0123
[Rank 0] Move Insert Delta_down_down: Proposed = 24895, Accepted = 157, Rate = 0.0063
[Rank 0] Move set Remove four operators: Proposed = 99964, Accepted = 948, Rate = 0.0095
[Rank 0] Move Remove Delta_up_up: Proposed = 24796, Accepted = 177, Rate = 0.0071
[Rank 0] Move Remove Delta_up_down: Proposed = 24989, Accepted = 300, Rate = 0.0120
[Rank 0] Move Remove Delta_down_up: Proposed = 25213, Accepted = 322, Rate = 0.0128
[Rank 0] Move Remove Delta_down_down: Proposed = 24966, Accepted = 149, Rate = 0.0060
[Rank 0] Move Shift one operator: Proposed = 99858, Accepted = 9955, Rate = 0.0997
Total number of measures: 10000
Total cycles (measures) / second: 3.24e+04
Average sign: 1
Average order: 2.1975
Auto-correlation time: 6.26617 cycles
Iteration = 2 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:32 99.98% done, ETA 00:00:00, cycle 4999 of 5000, 5.00e+04 cycles/sec
[Rank 0] 08:09:32 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 5.00e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:32 45.65% done, ETA 00:00:00, cycle 4565 of 10000, 4.56e+04 cycles/sec
[Rank 0] 08:09:32 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.65e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1000 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2150 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.65e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1873):
[Rank 0] Move set Insert two operators: Duration = 0.0477
[Rank 0] Move Insert Delta_up: Duration = 0.0200
[Rank 0] Move Insert Delta_down: Duration = 0.0201
[Rank 0] Move set Remove two operators: Duration = 0.0215
[Rank 0] Move Remove Delta_up: Duration = 0.0070
[Rank 0] Move Remove Delta_down: Duration = 0.0070
[Rank 0] Move set Insert four operators: Duration = 0.0714
[Rank 0] Move Insert Delta_up_up: Duration = 0.0176
[Rank 0] Move Insert Delta_up_down: Duration = 0.0142
[Rank 0] Move Insert Delta_down_up: Duration = 0.0140
[Rank 0] Move Insert Delta_down_down: Duration = 0.0176
[Rank 0] Move set Remove four operators: Duration = 0.0153
[Rank 0] Move Remove Delta_up_up: Duration = 0.0015
[Rank 0] Move Remove Delta_up_down: Duration = 0.0023
[Rank 0] Move Remove Delta_down_up: Duration = 0.0022
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0315
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99728, Accepted = 5314, Rate = 0.0533
[Rank 0] Move Insert Delta_up: Proposed = 49871, Accepted = 2604, Rate = 0.0522
[Rank 0] Move Insert Delta_down: Proposed = 49857, Accepted = 2710, Rate = 0.0544
[Rank 0] Move set Remove two operators: Proposed = 100015, Accepted = 5335, Rate = 0.0533
[Rank 0] Move Remove Delta_up: Proposed = 49876, Accepted = 2658, Rate = 0.0533
[Rank 0] Move Remove Delta_down: Proposed = 50139, Accepted = 2677, Rate = 0.0534
[Rank 0] Move set Insert four operators: Proposed = 100406, Accepted = 448, Rate = 0.0045
[Rank 0] Move Insert Delta_up_up: Proposed = 25291, Accepted = 108, Rate = 0.0043
[Rank 0] Move Insert Delta_up_down: Proposed = 25072, Accepted = 141, Rate = 0.0056
[Rank 0] Move Insert Delta_down_up: Proposed = 24967, Accepted = 119, Rate = 0.0048
[Rank 0] Move Insert Delta_down_down: Proposed = 25076, Accepted = 80, Rate = 0.0032
[Rank 0] Move set Remove four operators: Proposed = 100084, Accepted = 437, Rate = 0.0044
[Rank 0] Move Remove Delta_up_up: Proposed = 24769, Accepted = 81, Rate = 0.0033
[Rank 0] Move Remove Delta_up_down: Proposed = 25130, Accepted = 119, Rate = 0.0047
[Rank 0] Move Remove Delta_down_up: Proposed = 25133, Accepted = 140, Rate = 0.0056
[Rank 0] Move Remove Delta_down_down: Proposed = 25052, Accepted = 97, Rate = 0.0039
[Rank 0] Move Shift one operator: Proposed = 99767, Accepted = 2770, Rate = 0.0278
Total number of measures: 10000
Total cycles (measures) / second: 4.65e+04
Average sign: 1
Average order: 0.8927
Auto-correlation time: 2.28848 cycles
Iteration = 3 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:32 99.78% done, ETA 00:00:00, cycle 4989 of 5000, 4.99e+04 cycles/sec
[Rank 0] 08:09:32 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.99e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:32 50.02% done, ETA 00:00:00, cycle 5002 of 10000, 5.00e+04 cycles/sec
[Rank 0] 08:09:32 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.96e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1002 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2016 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.96e+04
[Rank 0] Measurement durations (total = 0.0021):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1752):
[Rank 0] Move set Insert two operators: Duration = 0.0448
[Rank 0] Move Insert Delta_up: Duration = 0.0187
[Rank 0] Move Insert Delta_down: Duration = 0.0189
[Rank 0] Move set Remove two operators: Duration = 0.0199
[Rank 0] Move Remove Delta_up: Duration = 0.0063
[Rank 0] Move Remove Delta_down: Duration = 0.0065
[Rank 0] Move set Insert four operators: Duration = 0.0671
[Rank 0] Move Insert Delta_up_up: Duration = 0.0165
[Rank 0] Move Insert Delta_up_down: Duration = 0.0133
[Rank 0] Move Insert Delta_down_up: Duration = 0.0131
[Rank 0] Move Insert Delta_down_down: Duration = 0.0165
[Rank 0] Move set Remove four operators: Duration = 0.0144
[Rank 0] Move Remove Delta_up_up: Duration = 0.0013
[Rank 0] Move Remove Delta_up_down: Duration = 0.0021
[Rank 0] Move Remove Delta_down_up: Duration = 0.0020
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0290
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99800, Accepted = 4869, Rate = 0.0488
[Rank 0] Move Insert Delta_up: Proposed = 49985, Accepted = 2376, Rate = 0.0475
[Rank 0] Move Insert Delta_down: Proposed = 49815, Accepted = 2493, Rate = 0.0500
[Rank 0] Move set Remove two operators: Proposed = 100028, Accepted = 4924, Rate = 0.0492
[Rank 0] Move Remove Delta_up: Proposed = 49893, Accepted = 2428, Rate = 0.0487
[Rank 0] Move Remove Delta_down: Proposed = 50135, Accepted = 2496, Rate = 0.0498
[Rank 0] Move set Insert four operators: Proposed = 100448, Accepted = 319, Rate = 0.0032
[Rank 0] Move Insert Delta_up_up: Proposed = 25308, Accepted = 91, Rate = 0.0036
[Rank 0] Move Insert Delta_up_down: Proposed = 25139, Accepted = 88, Rate = 0.0035
[Rank 0] Move Insert Delta_down_up: Proposed = 24988, Accepted = 71, Rate = 0.0028
[Rank 0] Move Insert Delta_down_down: Proposed = 25013, Accepted = 69, Rate = 0.0028
[Rank 0] Move set Remove four operators: Proposed = 99930, Accepted = 292, Rate = 0.0029
[Rank 0] Move Remove Delta_up_up: Proposed = 24739, Accepted = 64, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25092, Accepted = 76, Rate = 0.0030
[Rank 0] Move Remove Delta_down_up: Proposed = 25140, Accepted = 85, Rate = 0.0034
[Rank 0] Move Remove Delta_down_down: Proposed = 24959, Accepted = 67, Rate = 0.0027
[Rank 0] Move Shift one operator: Proposed = 99794, Accepted = 2359, Rate = 0.0236
Total number of measures: 10000
Total cycles (measures) / second: 4.96e+04
Average sign: 0.9998
Average order: 0.8792
Auto-correlation time: 2.27664 cycles
Iteration = 4 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:32 96.34% done, ETA 00:00:00, cycle 4817 of 5000, 4.82e+04 cycles/sec
[Rank 0] 08:09:32 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.81e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:32 48.02% done, ETA 00:00:00, cycle 4802 of 10000, 4.80e+04 cycles/sec
[Rank 0] 08:09:33 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.82e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1040 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2076 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.82e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1806):
[Rank 0] Move set Insert two operators: Duration = 0.0460
[Rank 0] Move Insert Delta_up: Duration = 0.0193
[Rank 0] Move Insert Delta_down: Duration = 0.0194
[Rank 0] Move set Remove two operators: Duration = 0.0207
[Rank 0] Move Remove Delta_up: Duration = 0.0067
[Rank 0] Move Remove Delta_down: Duration = 0.0067
[Rank 0] Move set Insert four operators: Duration = 0.0690
[Rank 0] Move Insert Delta_up_up: Duration = 0.0170
[Rank 0] Move Insert Delta_up_down: Duration = 0.0136
[Rank 0] Move Insert Delta_down_up: Duration = 0.0135
[Rank 0] Move Insert Delta_down_down: Duration = 0.0170
[Rank 0] Move set Remove four operators: Duration = 0.0147
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0022
[Rank 0] Move Remove Delta_down_up: Duration = 0.0021
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0303
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99753, Accepted = 4807, Rate = 0.0482
[Rank 0] Move Insert Delta_up: Proposed = 49921, Accepted = 2375, Rate = 0.0476
[Rank 0] Move Insert Delta_down: Proposed = 49832, Accepted = 2432, Rate = 0.0488
[Rank 0] Move set Remove two operators: Proposed = 99889, Accepted = 4863, Rate = 0.0487
[Rank 0] Move Remove Delta_up: Proposed = 49829, Accepted = 2420, Rate = 0.0486
[Rank 0] Move Remove Delta_down: Proposed = 50060, Accepted = 2443, Rate = 0.0488
[Rank 0] Move set Insert four operators: Proposed = 100391, Accepted = 282, Rate = 0.0028
[Rank 0] Move Insert Delta_up_up: Proposed = 25300, Accepted = 82, Rate = 0.0032
[Rank 0] Move Insert Delta_up_down: Proposed = 24978, Accepted = 80, Rate = 0.0032
[Rank 0] Move Insert Delta_down_up: Proposed = 25020, Accepted = 62, Rate = 0.0025
[Rank 0] Move Insert Delta_down_down: Proposed = 25093, Accepted = 58, Rate = 0.0023
[Rank 0] Move set Remove four operators: Proposed = 100134, Accepted = 254, Rate = 0.0025
[Rank 0] Move Remove Delta_up_up: Proposed = 24792, Accepted = 64, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25181, Accepted = 62, Rate = 0.0025
[Rank 0] Move Remove Delta_down_up: Proposed = 25170, Accepted = 72, Rate = 0.0029
[Rank 0] Move Remove Delta_down_down: Proposed = 24991, Accepted = 56, Rate = 0.0022
[Rank 0] Move Shift one operator: Proposed = 99833, Accepted = 2463, Rate = 0.0247
Total number of measures: 10000
Total cycles (measures) / second: 4.82e+04
Average sign: 0.9992
Average order: 0.9191
Auto-correlation time: 3.4317 cycles
Iteration = 5 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:33 99.04% done, ETA 00:00:00, cycle 4952 of 5000, 4.95e+04 cycles/sec
[Rank 0] 08:09:33 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.94e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:33 49.39% done, ETA 00:00:00, cycle 4939 of 10000, 4.94e+04 cycles/sec
[Rank 0] 08:09:33 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.83e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1011 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2070 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.83e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1800):
[Rank 0] Move set Insert two operators: Duration = 0.0458
[Rank 0] Move Insert Delta_up: Duration = 0.0191
[Rank 0] Move Insert Delta_down: Duration = 0.0193
[Rank 0] Move set Remove two operators: Duration = 0.0204
[Rank 0] Move Remove Delta_up: Duration = 0.0065
[Rank 0] Move Remove Delta_down: Duration = 0.0067
[Rank 0] Move set Insert four operators: Duration = 0.0688
[Rank 0] Move Insert Delta_up_up: Duration = 0.0170
[Rank 0] Move Insert Delta_up_down: Duration = 0.0136
[Rank 0] Move Insert Delta_down_up: Duration = 0.0135
[Rank 0] Move Insert Delta_down_down: Duration = 0.0170
[Rank 0] Move set Remove four operators: Duration = 0.0148
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0021
[Rank 0] Move Remove Delta_down_up: Duration = 0.0021
[Rank 0] Move Remove Delta_down_down: Duration = 0.0015
[Rank 0] Move Shift one operator: Duration = 0.0303
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99859, Accepted = 4820, Rate = 0.0483
[Rank 0] Move Insert Delta_up: Proposed = 50050, Accepted = 2370, Rate = 0.0474
[Rank 0] Move Insert Delta_down: Proposed = 49809, Accepted = 2450, Rate = 0.0492
[Rank 0] Move set Remove two operators: Proposed = 99862, Accepted = 4815, Rate = 0.0482
[Rank 0] Move Remove Delta_up: Proposed = 49900, Accepted = 2401, Rate = 0.0481
[Rank 0] Move Remove Delta_down: Proposed = 49962, Accepted = 2414, Rate = 0.0483
[Rank 0] Move set Insert four operators: Proposed = 100466, Accepted = 296, Rate = 0.0029
[Rank 0] Move Insert Delta_up_up: Proposed = 25286, Accepted = 87, Rate = 0.0034
[Rank 0] Move Insert Delta_up_down: Proposed = 25028, Accepted = 73, Rate = 0.0029
[Rank 0] Move Insert Delta_down_up: Proposed = 25068, Accepted = 69, Rate = 0.0028
[Rank 0] Move Insert Delta_down_down: Proposed = 25084, Accepted = 67, Rate = 0.0027
[Rank 0] Move set Remove four operators: Proposed = 100199, Accepted = 299, Rate = 0.0030
[Rank 0] Move Remove Delta_up_up: Proposed = 24761, Accepted = 65, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25221, Accepted = 72, Rate = 0.0029
[Rank 0] Move Remove Delta_down_up: Proposed = 25203, Accepted = 83, Rate = 0.0033
[Rank 0] Move Remove Delta_down_down: Proposed = 25014, Accepted = 79, Rate = 0.0032
[Rank 0] Move Shift one operator: Proposed = 99614, Accepted = 2456, Rate = 0.0247
Total number of measures: 10000
Total cycles (measures) / second: 4.83e+04
Average sign: 0.9972
Average order: 0.911
Auto-correlation time: 2.65344 cycles
Iteration = 6 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:33 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 5.01e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:33 49.12% done, ETA 00:00:00, cycle 4912 of 10000, 4.91e+04 cycles/sec
[Rank 0] 08:09:33 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.97e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.0998 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2012 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.97e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1750):
[Rank 0] Move set Insert two operators: Duration = 0.0446
[Rank 0] Move Insert Delta_up: Duration = 0.0186
[Rank 0] Move Insert Delta_down: Duration = 0.0189
[Rank 0] Move set Remove two operators: Duration = 0.0200
[Rank 0] Move Remove Delta_up: Duration = 0.0063
[Rank 0] Move Remove Delta_down: Duration = 0.0065
[Rank 0] Move set Insert four operators: Duration = 0.0669
[Rank 0] Move Insert Delta_up_up: Duration = 0.0164
[Rank 0] Move Insert Delta_up_down: Duration = 0.0133
[Rank 0] Move Insert Delta_down_up: Duration = 0.0132
[Rank 0] Move Insert Delta_down_down: Duration = 0.0165
[Rank 0] Move set Remove four operators: Duration = 0.0144
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0021
[Rank 0] Move Remove Delta_down_up: Duration = 0.0020
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0291
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99777, Accepted = 4878, Rate = 0.0489
[Rank 0] Move Insert Delta_up: Proposed = 49942, Accepted = 2390, Rate = 0.0479
[Rank 0] Move Insert Delta_down: Proposed = 49835, Accepted = 2488, Rate = 0.0499
[Rank 0] Move set Remove two operators: Proposed = 99996, Accepted = 4915, Rate = 0.0492
[Rank 0] Move Remove Delta_up: Proposed = 49915, Accepted = 2420, Rate = 0.0485
[Rank 0] Move Remove Delta_down: Proposed = 50081, Accepted = 2495, Rate = 0.0498
[Rank 0] Move set Insert four operators: Proposed = 100428, Accepted = 305, Rate = 0.0030
[Rank 0] Move Insert Delta_up_up: Proposed = 25312, Accepted = 81, Rate = 0.0032
[Rank 0] Move Insert Delta_up_down: Proposed = 25017, Accepted = 82, Rate = 0.0033
[Rank 0] Move Insert Delta_down_up: Proposed = 24994, Accepted = 73, Rate = 0.0029
[Rank 0] Move Insert Delta_down_down: Proposed = 25105, Accepted = 69, Rate = 0.0027
[Rank 0] Move set Remove four operators: Proposed = 100239, Accepted = 286, Rate = 0.0029
[Rank 0] Move Remove Delta_up_up: Proposed = 24800, Accepted = 63, Rate = 0.0025
[Rank 0] Move Remove Delta_up_down: Proposed = 25215, Accepted = 74, Rate = 0.0029
[Rank 0] Move Remove Delta_down_up: Proposed = 25145, Accepted = 86, Rate = 0.0034
[Rank 0] Move Remove Delta_down_down: Proposed = 25079, Accepted = 63, Rate = 0.0025
[Rank 0] Move Shift one operator: Proposed = 99560, Accepted = 2446, Rate = 0.0246
Total number of measures: 10000
Total cycles (measures) / second: 4.97e+04
Average sign: 0.9988
Average order: 0.8968
Auto-correlation time: 3.20914 cycles
Iteration = 7 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:33 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 5.06e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:33 49.07% done, ETA 00:00:00, cycle 4907 of 10000, 4.91e+04 cycles/sec
[Rank 0] 08:09:34 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.83e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.0989 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2070 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.83e+04
[Rank 0] Measurement durations (total = 0.0023):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0010
[Rank 0] Move durations (total = 0.1798):
[Rank 0] Move set Insert two operators: Duration = 0.0457
[Rank 0] Move Insert Delta_up: Duration = 0.0191
[Rank 0] Move Insert Delta_down: Duration = 0.0193
[Rank 0] Move set Remove two operators: Duration = 0.0205
[Rank 0] Move Remove Delta_up: Duration = 0.0065
[Rank 0] Move Remove Delta_down: Duration = 0.0066
[Rank 0] Move set Insert four operators: Duration = 0.0688
[Rank 0] Move Insert Delta_up_up: Duration = 0.0170
[Rank 0] Move Insert Delta_up_down: Duration = 0.0136
[Rank 0] Move Insert Delta_down_up: Duration = 0.0135
[Rank 0] Move Insert Delta_down_down: Duration = 0.0169
[Rank 0] Move set Remove four operators: Duration = 0.0148
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0021
[Rank 0] Move Remove Delta_down_up: Duration = 0.0021
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0300
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99642, Accepted = 4714, Rate = 0.0473
[Rank 0] Move Insert Delta_up: Proposed = 49864, Accepted = 2292, Rate = 0.0460
[Rank 0] Move Insert Delta_down: Proposed = 49778, Accepted = 2422, Rate = 0.0487
[Rank 0] Move set Remove two operators: Proposed = 99931, Accepted = 4732, Rate = 0.0474
[Rank 0] Move Remove Delta_up: Proposed = 49904, Accepted = 2314, Rate = 0.0464
[Rank 0] Move Remove Delta_down: Proposed = 50027, Accepted = 2418, Rate = 0.0483
[Rank 0] Move set Insert four operators: Proposed = 100385, Accepted = 274, Rate = 0.0027
[Rank 0] Move Insert Delta_up_up: Proposed = 25316, Accepted = 80, Rate = 0.0032
[Rank 0] Move Insert Delta_up_down: Proposed = 25064, Accepted = 72, Rate = 0.0029
[Rank 0] Move Insert Delta_down_up: Proposed = 24974, Accepted = 61, Rate = 0.0024
[Rank 0] Move Insert Delta_down_down: Proposed = 25031, Accepted = 61, Rate = 0.0024
[Rank 0] Move set Remove four operators: Proposed = 100125, Accepted = 264, Rate = 0.0026
[Rank 0] Move Remove Delta_up_up: Proposed = 24776, Accepted = 64, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25219, Accepted = 61, Rate = 0.0024
[Rank 0] Move Remove Delta_down_up: Proposed = 25058, Accepted = 80, Rate = 0.0032
[Rank 0] Move Remove Delta_down_down: Proposed = 25072, Accepted = 59, Rate = 0.0024
[Rank 0] Move Shift one operator: Proposed = 99917, Accepted = 2331, Rate = 0.0233
Total number of measures: 10000
Total cycles (measures) / second: 4.83e+04
Average sign: 0.9988
Average order: 0.8957
Auto-correlation time: 2.14532 cycles
Iteration = 8 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:34 96.68% done, ETA 00:00:00, cycle 4834 of 5000, 4.83e+04 cycles/sec
[Rank 0] 08:09:34 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.84e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:34 47.52% done, ETA 00:00:00, cycle 4752 of 10000, 4.75e+04 cycles/sec
[Rank 0] 08:09:34 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.81e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1033 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2080 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.81e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1807):
[Rank 0] Move set Insert two operators: Duration = 0.0459
[Rank 0] Move Insert Delta_up: Duration = 0.0192
[Rank 0] Move Insert Delta_down: Duration = 0.0193
[Rank 0] Move set Remove two operators: Duration = 0.0208
[Rank 0] Move Remove Delta_up: Duration = 0.0066
[Rank 0] Move Remove Delta_down: Duration = 0.0067
[Rank 0] Move set Insert four operators: Duration = 0.0690
[Rank 0] Move Insert Delta_up_up: Duration = 0.0170
[Rank 0] Move Insert Delta_up_down: Duration = 0.0137
[Rank 0] Move Insert Delta_down_up: Duration = 0.0136
[Rank 0] Move Insert Delta_down_down: Duration = 0.0169
[Rank 0] Move set Remove four operators: Duration = 0.0149
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0022
[Rank 0] Move Remove Delta_down_up: Duration = 0.0022
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0301
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99896, Accepted = 4882, Rate = 0.0489
[Rank 0] Move Insert Delta_up: Proposed = 50056, Accepted = 2412, Rate = 0.0482
[Rank 0] Move Insert Delta_down: Proposed = 49840, Accepted = 2470, Rate = 0.0496
[Rank 0] Move set Remove two operators: Proposed = 99905, Accepted = 4900, Rate = 0.0490
[Rank 0] Move Remove Delta_up: Proposed = 49781, Accepted = 2435, Rate = 0.0489
[Rank 0] Move Remove Delta_down: Proposed = 50124, Accepted = 2465, Rate = 0.0492
[Rank 0] Move set Insert four operators: Proposed = 100321, Accepted = 283, Rate = 0.0028
[Rank 0] Move Insert Delta_up_up: Proposed = 25244, Accepted = 80, Rate = 0.0032
[Rank 0] Move Insert Delta_up_down: Proposed = 25048, Accepted = 74, Rate = 0.0030
[Rank 0] Move Insert Delta_down_up: Proposed = 25017, Accepted = 68, Rate = 0.0027
[Rank 0] Move Insert Delta_down_down: Proposed = 25012, Accepted = 61, Rate = 0.0024
[Rank 0] Move set Remove four operators: Proposed = 100092, Accepted = 274, Rate = 0.0027
[Rank 0] Move Remove Delta_up_up: Proposed = 24724, Accepted = 65, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25275, Accepted = 69, Rate = 0.0027
[Rank 0] Move Remove Delta_down_up: Proposed = 25146, Accepted = 79, Rate = 0.0031
[Rank 0] Move Remove Delta_down_down: Proposed = 24947, Accepted = 61, Rate = 0.0024
[Rank 0] Move Shift one operator: Proposed = 99786, Accepted = 2487, Rate = 0.0249
Total number of measures: 10000
Total cycles (measures) / second: 4.81e+04
Average sign: 0.998
Average order: 0.9022
Auto-correlation time: 2.61277 cycles
Iteration = 9 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:34 94.08% done, ETA 00:00:00, cycle 4704 of 5000, 4.70e+04 cycles/sec
[Rank 0] 08:09:34 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.73e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:34 49.53% done, ETA 00:00:00, cycle 4953 of 10000, 4.95e+04 cycles/sec
[Rank 0] 08:09:34 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.95e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1056 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2020 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.95e+04
[Rank 0] Measurement durations (total = 0.0021):
[Rank 0] Measure Auto-correlation time: Duration = 0.0008
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1754):
[Rank 0] Move set Insert two operators: Duration = 0.0448
[Rank 0] Move Insert Delta_up: Duration = 0.0187
[Rank 0] Move Insert Delta_down: Duration = 0.0188
[Rank 0] Move set Remove two operators: Duration = 0.0197
[Rank 0] Move Remove Delta_up: Duration = 0.0062
[Rank 0] Move Remove Delta_down: Duration = 0.0064
[Rank 0] Move set Insert four operators: Duration = 0.0675
[Rank 0] Move Insert Delta_up_up: Duration = 0.0167
[Rank 0] Move Insert Delta_up_down: Duration = 0.0133
[Rank 0] Move Insert Delta_down_up: Duration = 0.0133
[Rank 0] Move Insert Delta_down_down: Duration = 0.0166
[Rank 0] Move set Remove four operators: Duration = 0.0144
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0020
[Rank 0] Move Remove Delta_down_up: Duration = 0.0020
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0291
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99609, Accepted = 4902, Rate = 0.0492
[Rank 0] Move Insert Delta_up: Proposed = 49922, Accepted = 2418, Rate = 0.0484
[Rank 0] Move Insert Delta_down: Proposed = 49687, Accepted = 2484, Rate = 0.0500
[Rank 0] Move set Remove two operators: Proposed = 99937, Accepted = 4890, Rate = 0.0489
[Rank 0] Move Remove Delta_up: Proposed = 49866, Accepted = 2437, Rate = 0.0489
[Rank 0] Move Remove Delta_down: Proposed = 50071, Accepted = 2453, Rate = 0.0490
[Rank 0] Move set Insert four operators: Proposed = 100543, Accepted = 275, Rate = 0.0027
[Rank 0] Move Insert Delta_up_up: Proposed = 25383, Accepted = 83, Rate = 0.0033
[Rank 0] Move Insert Delta_up_down: Proposed = 24991, Accepted = 69, Rate = 0.0028
[Rank 0] Move Insert Delta_down_up: Proposed = 25089, Accepted = 64, Rate = 0.0026
[Rank 0] Move Insert Delta_down_down: Proposed = 25080, Accepted = 59, Rate = 0.0024
[Rank 0] Move set Remove four operators: Proposed = 100198, Accepted = 281, Rate = 0.0028
[Rank 0] Move Remove Delta_up_up: Proposed = 24778, Accepted = 64, Rate = 0.0026
[Rank 0] Move Remove Delta_up_down: Proposed = 25188, Accepted = 72, Rate = 0.0029
[Rank 0] Move Remove Delta_down_up: Proposed = 25173, Accepted = 80, Rate = 0.0032
[Rank 0] Move Remove Delta_down_down: Proposed = 25059, Accepted = 65, Rate = 0.0026
[Rank 0] Move Shift one operator: Proposed = 99713, Accepted = 2446, Rate = 0.0245
Total number of measures: 10000
Total cycles (measures) / second: 4.95e+04
Average sign: 0.9986
Average order: 0.8688
Auto-correlation time: 2.1976 cycles
Iteration = 10 / 10
╔╦╗╦═╗╦╔═╗ ╔═╗ ┌─┐┌┬┐┬ ┬┬ ┬┌┐
║ ╠╦╝║║═╬╗╚═╗ │ │ ├─┤└┬┘├┴┐
╩ ╩╚═╩╚═╝╚╚═╝ └─┘ ┴ ┴ ┴ ┴ └─┘
The local Hamiltonian of the problem:
-6*c_dag('down',0)*c('down',0) + -6*c_dag('up',0)*c('up',0) + 12*c_dag('down',0)*c_dag('up',0)*c('up',0)*c('down',0)
Using autopartition algorithm to partition the local Hilbert space
Found 4 subspaces.
[Rank 0] Performing warmup phase...
[Rank 0] 08:09:34 97.96% done, ETA 00:00:00, cycle 4898 of 5000, 4.90e+04 cycles/sec
[Rank 0] 08:09:34 100.00% done, ETA 00:00:00, cycle 5000 of 5000, 4.90e+04 cycles/sec
[Rank 0] Performing accumulation phase...
[Rank 0] 08:09:35 49.88% done, ETA 00:00:00, cycle 4988 of 10000, 4.99e+04 cycles/sec
[Rank 0] 08:09:35 100.00% done, ETA 00:00:00, cycle 10000 of 10000, 4.84e+04 cycles/sec
[Rank 0] Collect results: Waiting for all MPI processes to finish accumulating...
[Rank 0] Warmup duration: 0.1020 seconds [00:00:00]
[Rank 0] Simulation duration: 0.2066 seconds [00:00:00]
[Rank 0] Number of measures: 10000
[Rank 0] Cycles (measures) / second: 4.84e+04
[Rank 0] Measurement durations (total = 0.0022):
[Rank 0] Measure Auto-correlation time: Duration = 0.0009
[Rank 0] Measure Average order: Duration = 0.0002
[Rank 0] Measure Average sign: Duration = 0.0002
[Rank 0] Measure G_tau measure: Duration = 0.0009
[Rank 0] Move durations (total = 0.1792):
[Rank 0] Move set Insert two operators: Duration = 0.0461
[Rank 0] Move Insert Delta_up: Duration = 0.0192
[Rank 0] Move Insert Delta_down: Duration = 0.0194
[Rank 0] Move set Remove two operators: Duration = 0.0202
[Rank 0] Move Remove Delta_up: Duration = 0.0064
[Rank 0] Move Remove Delta_down: Duration = 0.0064
[Rank 0] Move set Insert four operators: Duration = 0.0690
[Rank 0] Move Insert Delta_up_up: Duration = 0.0170
[Rank 0] Move Insert Delta_up_down: Duration = 0.0137
[Rank 0] Move Insert Delta_down_up: Duration = 0.0135
[Rank 0] Move Insert Delta_down_down: Duration = 0.0169
[Rank 0] Move set Remove four operators: Duration = 0.0146
[Rank 0] Move Remove Delta_up_up: Duration = 0.0014
[Rank 0] Move Remove Delta_up_down: Duration = 0.0020
[Rank 0] Move Remove Delta_down_up: Duration = 0.0020
[Rank 0] Move Remove Delta_down_down: Duration = 0.0014
[Rank 0] Move Shift one operator: Duration = 0.0292
[Rank 0] Move statistics:
[Rank 0] Move set Insert two operators: Proposed = 99712, Accepted = 4853, Rate = 0.0487
[Rank 0] Move Insert Delta_up: Proposed = 49910, Accepted = 2393, Rate = 0.0479
[Rank 0] Move Insert Delta_down: Proposed = 49802, Accepted = 2460, Rate = 0.0494
[Rank 0] Move set Remove two operators: Proposed = 100062, Accepted = 4889, Rate = 0.0489
[Rank 0] Move Remove Delta_up: Proposed = 49897, Accepted = 2440, Rate = 0.0489
[Rank 0] Move Remove Delta_down: Proposed = 50165, Accepted = 2449, Rate = 0.0488
[Rank 0] Move set Insert four operators: Proposed = 100300, Accepted = 275, Rate = 0.0027
[Rank 0] Move Insert Delta_up_up: Proposed = 25278, Accepted = 90, Rate = 0.0036
[Rank 0] Move Insert Delta_up_down: Proposed = 25066, Accepted = 69, Rate = 0.0028
[Rank 0] Move Insert Delta_down_up: Proposed = 24988, Accepted = 63, Rate = 0.0025
[Rank 0] Move Insert Delta_down_down: Proposed = 24968, Accepted = 53, Rate = 0.0021
[Rank 0] Move set Remove four operators: Proposed = 100054, Accepted = 258, Rate = 0.0026
[Rank 0] Move Remove Delta_up_up: Proposed = 24833, Accepted = 66, Rate = 0.0027
[Rank 0] Move Remove Delta_up_down: Proposed = 25144, Accepted = 61, Rate = 0.0024
[Rank 0] Move Remove Delta_down_up: Proposed = 25148, Accepted = 73, Rate = 0.0029
[Rank 0] Move Remove Delta_down_down: Proposed = 24929, Accepted = 58, Rate = 0.0023
[Rank 0] Move Shift one operator: Proposed = 99872, Accepted = 2314, Rate = 0.0232
Total number of measures: 10000
Total cycles (measures) / second: 4.84e+04
Average sign: 0.9978
Average order: 0.8281
Auto-correlation time: 1.77397 cycles
If you are stuck or short on time, take a sneak peek at the solution below. Note that there is a variable filling that can be set either to half or to quarter and that defines the filling of the problem.
Warning: don’t run the script, the calculations are quite long! It is just here for illustration purposes.
[2]:
%load scripts/two_band.py
For the following exercises, the calculations have already been performed for you, and the data is stored in the data/two_band folder, see below. Use this data to perform the analysis below. Again, do not run the script on your machine!
[3]:
!ls data/two_band/
half-U10.00-J0.00.h5 half-U6.00-J0.00.h5 quarter-U2.00-J0.00.h5
half-U10.00-J1.00.h5 half-U6.00-J0.60.h5 quarter-U2.00-J0.20.h5
half-U10.00-J2.00.h5 half-U6.00-J1.20.h5 quarter-U2.00-J0.40.h5
half-U1.00-J0.00.h5 half-U7.00-J0.00.h5 quarter-U3.00-J0.00.h5
half-U1.00-J0.10.h5 half-U7.00-J0.70.h5 quarter-U3.00-J0.30.h5
half-U1.00-J0.20.h5 half-U7.00-J1.40.h5 quarter-U3.00-J0.60.h5
half-U11.00-J0.00.h5 half-U8.00-J0.00.h5 quarter-U4.00-J0.00.h5
half-U11.00-J1.10.h5 half-U8.00-J0.80.h5 quarter-U4.00-J0.40.h5
half-U11.00-J2.20.h5 half-U8.00-J1.60.h5 quarter-U4.00-J0.80.h5
half-U12.00-J0.00.h5 half-U9.00-J0.00.h5 quarter-U5.00-J0.00.h5
half-U12.00-J1.20.h5 half-U9.00-J0.90.h5 quarter-U5.00-J0.50.h5
half-U12.00-J2.40.h5 half-U9.00-J1.80.h5 quarter-U5.00-J1.00.h5
half-U2.00-J0.00.h5 quarter-U10.00-J0.00.h5 quarter-U6.00-J0.00.h5
half-U2.00-J0.20.h5 quarter-U10.00-J1.00.h5 quarter-U6.00-J0.60.h5
half-U2.00-J0.40.h5 quarter-U10.00-J2.00.h5 quarter-U6.00-J1.20.h5
half-U3.00-J0.00.h5 quarter-U1.00-J0.00.h5 quarter-U7.00-J0.00.h5
half-U3.00-J0.30.h5 quarter-U1.00-J0.10.h5 quarter-U7.00-J0.70.h5
half-U3.00-J0.60.h5 quarter-U1.00-J0.20.h5 quarter-U7.00-J1.40.h5
half-U4.00-J0.00.h5 quarter-U11.00-J0.00.h5 quarter-U8.00-J0.00.h5
half-U4.00-J0.40.h5 quarter-U11.00-J1.10.h5 quarter-U8.00-J0.80.h5
half-U4.00-J0.80.h5 quarter-U11.00-J2.20.h5 quarter-U8.00-J1.60.h5
half-U5.00-J0.00.h5 quarter-U12.00-J0.00.h5 quarter-U9.00-J0.00.h5
half-U5.00-J0.50.h5 quarter-U12.00-J1.20.h5 quarter-U9.00-J0.90.h5
half-U5.00-J1.00.h5 quarter-U12.00-J2.40.h5 quarter-U9.00-J1.80.h5
Solution 1
Run the cell below to load the script that solves the two-orbital Hubbard model for a variety of filling, \(U\) and \(J\).
Warning: don’t run the script, the calculations are quite long! It is just here for illustration purposes.
[4]:
%load scripts/two_band.py
Exercise 2
Start by studying the problem at half-filling. By varying \(U\) find the critical \(U_c\) for the Mott transition for different values of \(J\). How does \(U_c\) change with \(J\)? Hint: take the following values for \(J/U = 0.0, 0.1, 0.2\) and values of \(U/t\) between 1 and 12. Use the data in the data/two_band directory that was generated for you using the scripts/two_band.py script.
Solution 2
The Green’s functions and self-energies are saved in archives in the data/two_band subdirectory. Here is a plot of the Green’s functions for different values of \(U\) at given \(J\)’s.
J = 0.0
You will see that the Mott transition is somewhere between 6.0 and 7.0.
[5]:
%matplotlib inline
import numpy as np
from triqs.gfs import *
from h5 import *
from triqs.plot.mpl_interface import plt,oplot
import matplotlib as mpl
mpl.rcParams['figure.dpi']=100
coeff = 0.0
for U in np.arange(1.0, 13.0):
J = coeff * U
A = HDFArchive("data/two_band/half-U%.2f-J%.2f.h5"%(U,J), 'r')
oplot(A['G-9']['up-0'].imag, 'o', label="U = %.2f"%U)
plt.xlim(0,10)
plt.ylim(-1,0)
plt.ylabel("$G(i\\omega_n)$")
plt.show()
J = 0.1 U
You will see that the Mott transition is somewhere between 4.0 and 5.0.
[6]:
coeff = 0.1
for U in np.arange(1.0, 13.0):
J = coeff * U
A = HDFArchive("data/two_band/half-U%.2f-J%.2f.h5"%(U,J), 'r')
oplot(A['G-9']['up-0'].imag, 'o', label="U = %.2f"%U)
plt.xlim(0,10)
plt.ylim(-1,0)
plt.ylabel("$G(i\\omega_n)$")
plt.show()
J = 0.2 U
You will see that the Mott transition is somewhere between 3.0 and 4.0.
[7]:
coeff = 0.2
for U in np.arange(1.0, 13.0):
J = coeff * U
A = HDFArchive("data/two_band/half-U%.2f-J%.2f.h5"%(U,J), 'r')
oplot(A['G-9']['up-0'].imag, 'o', label="U = %.2f"%U)
plt.xlim(0,10)
plt.ylim(-1,0)
plt.ylabel("$G(i\\omega_n)$")
plt.show()
Conclusion of Exercise 2
The value of \(U_c\) is decreasing with increasing values of \(J\)! Can you understand why?
Exercise 3
Do the same study as in Exercise 2, but at quarter-filling. How does \(U_c\) change with \(J\)? Take again values of \(J/U = 0.0, 0.1, 0.2\) and values of \(U/t\) between 1 and 12.
Solution of exercise 3
The solution of the exercise is again contained in the scripts/two_band.py file. The calculation was already run with the setting filling = 'quarter'. The generated archives are in the results subdirectory. Here is a plot of the Green’s functions for different values of \(U\) at given \(J\)’s.
J = 0.0
You will se that the Mott transition is somewhere between 5.0 and 6.0.
[8]:
coeff = 0.0
for U in np.arange(1.0, 13.0):
J = coeff * U
A = HDFArchive("data/two_band/quarter-U%.2f-J%.2f.h5"%(U,J), 'r')
oplot(A['G-9']['up-0'].imag, 'o', label="U = %.2f"%U)
plt.xlim(0,10)
plt.ylim(-1,0)
plt.ylabel("$G(i\\omega_n)$")
plt.show()
J = 0.1 U
You will see that the Mott transition is somewhere between 7.0 and 8.0.
[9]:
coeff = 0.1
for U in np.arange(1.0, 13.0):
J = coeff * U
A = HDFArchive("data/two_band/quarter-U%.2f-J%.2f.h5"%(U,J), 'r')
oplot(A['G-9']['up-0'].imag, 'o', label="U = %.2f"%U)
plt.xlim(0,10)
plt.ylim(-1,0)
plt.ylabel("$G(i\\omega_n)$")
plt.show()
J = 0.2 U
You will see that the Mott transition happens at values of \(U\) larger than 12.
[10]:
coeff = 0.2
for U in np.arange(1.0, 13.0):
J = coeff * U
A = HDFArchive("data/two_band/quarter-U%.2f-J%.2f.h5"%(U,J), 'r')
oplot(A['G-9']['up-0'].imag, 'o', label="U = %.2f"%U)
plt.xlim(0,10)
plt.ylim(-1,0)
plt.ylabel("$G(i\\omega_n)$")
plt.show()
Conclusion of Exercise 3
Now the value of \(U_c\) is increasing with increasing values of \(J\)! Why? Numerically, this can also be investigated by looking at the impurity multiplets and their respective energies for different \(U,J\) settings.