Getting started with emu-mps
This tutorial shows how to use emu-mps as a Pulser backend to run a pulse sequence and extract observables (for example, magnetization). We emulate step-by-step the preparation of an antiferromagnetic (AFM) state on a 1D ring of atoms.
For details about this pulse sequence see this arxiv article (external).
Let's first import all the needed libraries.
# standard libraryfrom typing import Anyimport math
# Pulser and others librariesimport numpy as npimport matplotlib.pyplot as pltimport pulserfrom pulser.devices import AnalogDevice
# emu-mpsfrom emu_mps import ( MPS, MPSConfig, MPSBackend, BitStrings, Fidelity, Occupation,)Pulser and emu-mps
Section titled “Pulser and emu-mps”Emu-mps is a Pulser backend, designed to emulate the dynamics of programmable arrays of neutral atoms and here are the steps on how to use it:
- using Pulser we will first create the atomic Register
- again with Pulser we will then generate the Pulse sequence that produces the AFM state for the created register
- we create the configuration object (
MPSConfig) and we fill it with the needed observables and time stepdt - we instantiate the backend class (
MPSBackend) and run the simulation - we inspect the
resultsobtained
Register and Sequence creation
Section titled “Register and Sequence creation”To keep this tutorial focused on the backend functionalities we use two auxiliary functions to quickly create the Pulser objects like register and the sequence.
The function square_perimeter_points calculates the coordinates of the atoms located on the perimeter of a square.
The qubits will be labeled starting from the bottom-left corner and moving counter-clockwise around the square. Please notice that the measured bitstrings will depend on the order chosen for the atom locations.
The function afm_sequence_from_register creates the pulse sequence for the AFM state for the specified register. The sequence will consist of three phases: a rise, a sweep, and a fall where the sweep time is proportional to the rise and fall times.
def afm_sequence_from_register( reg: pulser.Register, Omega_max: float, delta_0: float, delta_f: float, t_rise: int, t_fall: int, factor_sweep: int, device: Any = pulser.devices.MockDevice,) -> pulser.Sequence: """Sequence that creates AntiFerromagnetic State (AFM) for 1d chain of atoms using pulser. This function constructs a sequence of pulses to transition a system of qubits distributed in a 1D chain (represented by `reg`) into an AFM state using a specified device. The sequence consists of three phases: a rise, a sweep, and a fall. For more information, check this [arxiv article](https://arxiv.org/abs/1711.01185)."""
t_sweep = (delta_f - delta_0) / (2 * np.pi * 10) * 1000 * factor_sweep rise = pulser.Pulse.ConstantDetuning( pulser.waveforms.RampWaveform(t_rise, 0.0, Omega_max), delta_0, 0.0 ) sweep = pulser.Pulse.ConstantAmplitude( Omega_max, pulser.waveforms.RampWaveform(int(t_sweep), delta_0, delta_f), 0.0 ) fall = pulser.Pulse.ConstantDetuning( pulser.waveforms.RampWaveform(t_fall, Omega_max, 0.0), delta_f, 0.0 )
seq = pulser.Sequence(reg, device) seq.declare_channel("ising_global", "rydberg_global") seq.add(rise, "ising_global") seq.add(sweep, "ising_global") seq.add(fall, "ising_global")
return seq
def square_perimeter_points(L: int) -> np.ndarray: """ Calculate the coordinates of the points located on the perimeter of a square of size L. The square is centered at the origin (0, 0) with sides parallel to the axes. The points are ordered starting from the bottom-left corner and moving counter-clockwise around the square. The order is important when measuaring the bitstrings
Args: L (int): The length of the side of the square. L should be a positive integer.
Returns: np.ndarray: An array of shape (4*L-4, 2) containing the coordinates of the perimeter points.
Example: >>> square_perimeter_points(3) array([[-1, -1], [-1, 0], [-1, 1], [ 0, 1], [ 1, 1], [ 1, 0], [ 1, -1], [ 0, -1]]) """ pairOrodd = L % 2 toGrid = int(math.floor(L / 2)) if pairOrodd == 0: axis = list(range(-toGrid, toGrid, 1)) else: axis = list(range(-toGrid, toGrid + 1, 1)) coord = [] for i in axis: # from left, first column of the perimeter coord.append([axis[0], i])
for i in axis[1:-1]: coord.append([i, axis[-1]])
for i in reversed(axis): coord.append([axis[-1], i])
for i in reversed(axis[1:-1]): coord.append([i, axis[0]])
return np.array(coord)We define the main physical parameters used throughout the tutorial and recall their meaning:
Omega_max: peak laser amplitude used in the pulse sequence.delta_0: initial detuning.delta_f: final detuning.t_rise: duration of the rise phase.t_fall: duration of the fall phase.sweep_factor: scale factor for the sweep duration (proportional todelta_f - delta_0).
We choose the interatomic distance to scale with Omega_max, so the interaction strengths are relative to the pulse parameters.
Omega_max = 2 * 2 * np.pidelta_0 = -6 * Omega_max / 2delta_f = 1 * Omega_max / 2t_rise = 500t_fall = 1500sweep_factor = 2
square_length = 3R_interatomic = AnalogDevice.rydberg_blockade_radius(Omega_max / 2)We can now create the register consisting of 8 atom locations.
coords = R_interatomic * square_perimeter_points(square_length)reg = pulser.Register.from_coordinates(coords,prefix='q')reg.draw(blockade_radius=R_interatomic, draw_graph=True, draw_half_radius=True)And finally the pulse sequence that will realize the AFM state:
seq = afm_sequence_from_register( reg, Omega_max, delta_0, delta_f, t_rise, t_fall, sweep_factor, AnalogDevice)seq.draw("input")Using emu-mps as backend
Section titled “Using emu-mps as backend”As mentioned earlier, to run a simulation with the emu-mps backend we need to provide as input a Pulse sequence - which we have just created - and a configuration object.
We still have to create the configuration for the emu-mps backend. This is done via an instantiation of the configuration class MPSConfig which contains all the observables that we wish to measure and the time step chosen for the simulation, along with various algorithm specific parameters that are explained in the documentation.
We start by setting a bigger discretization time than the default one provided ($dt=10$). For simplicity, we will measure the observables only at the final time of the simulation.
We also fix the basis along which the measurements will be done. For the details regarding the conventions used we refer to the Pulser documentation (external).
dt = 5.0eval_times = [0.0, 1.0]
basis = ("r","g")BitString counts
Section titled “BitString counts”It samples the evolved state at desired time steps, returning the bitStrings in a counter.
sampling_times = 1000bitstrings = BitStrings(evaluation_times=eval_times, num_shots=sampling_times)Fidelity
Section titled “Fidelity”The fidelity is computed as $\langle \psi_{evolved} | \phi_{given} \rangle^2$ where
- $\psi_{evolved}$ is the system state at desired steps
- $\phi_{given}$ is the state onto which we want to project the system state.
In this tutorial we will compute the fidelity against one of the two dominant antiferromagnetic states $\phi_{given} = |rgrgrgrg>$
nqubits = len(seq.register.qubit_ids)
afm_string_pure = {"rgrgrgrg": 1.0} # |10101010> in ground-rydberg basis
afm_mps_state = MPS.from_state_amplitudes( eigenstates=basis, amplitudes=afm_string_pure)fidelity_mps_pure = Fidelity(evaluation_times=eval_times, state=afm_mps_state,tag_suffix="1")Occupation of the excited states
Section titled “Occupation of the excited states”It is computed as $\langle \psi_{evolved} |\frac{(1+Z_i)}{2}|\psi_{evolved}\rangle$ and often informally referred to as the magnetization at each atom site.
duration = seq.get_duration()step = int(dt)occ_eval_times = [t / duration for t in range(0, duration+step, step)]density = Occupation(evaluation_times=occ_eval_times)Configuration object for emu-mps
Section titled “Configuration object for emu-mps”mpsconfig = MPSConfig( dt=dt, precision=1.0e-9, observables=[ bitstrings, fidelity_mps_pure, density, ], log_level=10,)emu-mps allows only {'energy', 'energy_variance', 'occupation', 'bitstrings', 'energy_second_moment', 'correlation_matrix', 'statistics'} observables with `optimize_qubit_ordering = True`. you provided unsupported {'fidelity'} using `optimize_qubit_ordering = False` instead.
Finally, we run
Section titled “Finally, we run”We instantiate the backend and run the simulation. The MPSBackend class takes the sequence and config objects as arguments.
sim = MPSBackend(seq, config=mpsconfig)results = sim.run()emu-mps allows only {'energy', 'energy_variance', 'occupation', 'bitstrings', 'energy_second_moment', 'correlation_matrix', 'statistics'} observables with `optimize_qubit_ordering = True`. you provided unsupported {'fidelity'} using `optimize_qubit_ordering = False` instead.
Will save simulation state to file "emu_mps_save_1ce42ea0-faa7-11f0-a0dd-b6cf08f1a91f.dat"
every inf seconds.
To resume: `MPSBackend().resume("/Users/kemal/Programs/Pasqal/emuteam/Stefano/emulators/docs/emu_mps/notebooks/emu_mps_save_1ce42ea0-faa7-11f0-a0dd-b6cf08f1a91f.dat")`
step = 1/680, χ = 1, |ψ| = 0.000 MB, RSS = 372965.376 MB, Δt = 0.044 s
step = 2/680, χ = 3, |ψ| = 0.001 MB, RSS = 372981.760 MB, Δt = 0.016 s
step = 3/680, χ = 3, |ψ| = 0.001 MB, RSS = 372981.760 MB, Δt = 0.019 s
step = 4/680, χ = 4, |ψ| = 0.002 MB, RSS = 372998.144 MB, Δt = 0.020 s
step = 5/680, χ = 4, |ψ| = 0.002 MB, RSS = 373014.528 MB, Δt = 0.020 s
step = 6/680, χ = 3, |ψ| = 0.001 MB, RSS = 373047.296 MB, Δt = 0.023 s
step = 7/680, χ = 3, |ψ| = 0.002 MB, RSS = 373063.680 MB, Δt = 0.025 s
step = 8/680, χ = 5, |ψ| = 0.003 MB, RSS = 373096.448 MB, Δt = 0.025 s
step = 9/680, χ = 4, |ψ| = 0.003 MB, RSS = 373129.216 MB, Δt = 0.025 s
step = 10/680, χ = 5, |ψ| = 0.003 MB, RSS = 373178.368 MB, Δt = 0.025 s
step = 11/680, χ = 5, |ψ| = 0.003 MB, RSS = 373194.752 MB, Δt = 0.025 s
step = 12/680, χ = 5, |ψ| = 0.003 MB, RSS = 373211.136 MB, Δt = 0.025 s
step = 13/680, χ = 6, |ψ| = 0.004 MB, RSS = 373227.520 MB, Δt = 0.025 s
step = 14/680, χ = 7, |ψ| = 0.004 MB, RSS = 373227.520 MB, Δt = 0.025 s
step = 15/680, χ = 7, |ψ| = 0.004 MB, RSS = 373276.672 MB, Δt = 0.026 s
step = 16/680, χ = 6, |ψ| = 0.004 MB, RSS = 373276.672 MB, Δt = 0.026 s
step = 17/680, χ = 6, |ψ| = 0.003 MB, RSS = 373276.672 MB, Δt = 0.027 s
step = 18/680, χ = 6, |ψ| = 0.004 MB, RSS = 373293.056 MB, Δt = 0.026 s
step = 19/680, χ = 6, |ψ| = 0.004 MB, RSS = 373293.056 MB, Δt = 0.025 s
step = 20/680, χ = 6, |ψ| = 0.004 MB, RSS = 373342.208 MB, Δt = 0.026 s
step = 21/680, χ = 8, |ψ| = 0.005 MB, RSS = 373374.976 MB, Δt = 0.026 s
step = 22/680, χ = 6, |ψ| = 0.004 MB, RSS = 373391.360 MB, Δt = 0.026 s
step = 23/680, χ = 7, |ψ| = 0.005 MB, RSS = 373407.744 MB, Δt = 0.025 s
step = 24/680, χ = 7, |ψ| = 0.005 MB, RSS = 373538.816 MB, Δt = 0.026 s
step = 25/680, χ = 8, |ψ| = 0.006 MB, RSS = 373555.200 MB, Δt = 0.026 s
step = 26/680, χ = 8, |ψ| = 0.006 MB, RSS = 373555.200 MB, Δt = 0.026 s
step = 27/680, χ = 6, |ψ| = 0.004 MB, RSS = 373571.584 MB, Δt = 0.026 s
step = 28/680, χ = 6, |ψ| = 0.004 MB, RSS = 373571.584 MB, Δt = 0.026 s
step = 29/680, χ = 6, |ψ| = 0.004 MB, RSS = 373571.584 MB, Δt = 0.026 s
step = 30/680, χ = 7, |ψ| = 0.005 MB, RSS = 373571.584 MB, Δt = 0.026 s
step = 31/680, χ = 7, |ψ| = 0.006 MB, RSS = 373571.584 MB, Δt = 0.025 s
step = 32/680, χ = 7, |ψ| = 0.005 MB, RSS = 373587.968 MB, Δt = 0.026 s
step = 33/680, χ = 8, |ψ| = 0.006 MB, RSS = 373587.968 MB, Δt = 0.024 s
step = 34/680, χ = 7, |ψ| = 0.005 MB, RSS = 373587.968 MB, Δt = 0.025 s
step = 35/680, χ = 7, |ψ| = 0.005 MB, RSS = 373587.968 MB, Δt = 0.026 s
step = 36/680, χ = 7, |ψ| = 0.005 MB, RSS = 373604.352 MB, Δt = 0.026 s
step = 37/680, χ = 7, |ψ| = 0.004 MB, RSS = 373604.352 MB, Δt = 0.025 s
step = 38/680, χ = 7, |ψ| = 0.005 MB, RSS = 373604.352 MB, Δt = 0.026 s
step = 39/680, χ = 8, |ψ| = 0.007 MB, RSS = 373604.352 MB, Δt = 0.026 s
step = 40/680, χ = 7, |ψ| = 0.005 MB, RSS = 373620.736 MB, Δt = 0.026 s
step = 41/680, χ = 7, |ψ| = 0.005 MB, RSS = 373637.120 MB, Δt = 0.026 s
step = 42/680, χ = 8, |ψ| = 0.005 MB, RSS = 373637.120 MB, Δt = 0.026 s
step = 43/680, χ = 8, |ψ| = 0.006 MB, RSS = 373637.120 MB, Δt = 0.026 s
step = 44/680, χ = 7, |ψ| = 0.005 MB, RSS = 373653.504 MB, Δt = 0.026 s
step = 45/680, χ = 8, |ψ| = 0.006 MB, RSS = 373669.888 MB, Δt = 0.026 s
step = 46/680, χ = 6, |ψ| = 0.005 MB, RSS = 373669.888 MB, Δt = 0.026 s
step = 47/680, χ = 7, |ψ| = 0.005 MB, RSS = 373669.888 MB, Δt = 0.027 s
step = 48/680, χ = 7, |ψ| = 0.005 MB, RSS = 373669.888 MB, Δt = 0.026 s
step = 49/680, χ = 7, |ψ| = 0.006 MB, RSS = 373669.888 MB, Δt = 0.026 s
step = 50/680, χ = 7, |ψ| = 0.005 MB, RSS = 373686.272 MB, Δt = 0.033 s
step = 51/680, χ = 6, |ψ| = 0.004 MB, RSS = 373686.272 MB, Δt = 0.028 s
step = 52/680, χ = 6, |ψ| = 0.005 MB, RSS = 373686.272 MB, Δt = 0.026 s
step = 53/680, χ = 7, |ψ| = 0.005 MB, RSS = 373686.272 MB, Δt = 0.026 s
step = 54/680, χ = 9, |ψ| = 0.006 MB, RSS = 373686.272 MB, Δt = 0.026 s
step = 55/680, χ = 8, |ψ| = 0.005 MB, RSS = 373686.272 MB, Δt = 0.026 s
step = 56/680, χ = 8, |ψ| = 0.005 MB, RSS = 373702.656 MB, Δt = 0.027 s
step = 57/680, χ = 7, |ψ| = 0.005 MB, RSS = 373702.656 MB, Δt = 0.026 s
step = 58/680, χ = 11, |ψ| = 0.008 MB, RSS = 373719.040 MB, Δt = 0.027 s
step = 59/680, χ = 10, |ψ| = 0.007 MB, RSS = 373735.424 MB, Δt = 0.026 s
step = 60/680, χ = 11, |ψ| = 0.009 MB, RSS = 373735.424 MB, Δt = 0.026 s
step = 61/680, χ = 11, |ψ| = 0.008 MB, RSS = 373735.424 MB, Δt = 0.027 s
step = 62/680, χ = 8, |ψ| = 0.007 MB, RSS = 373751.808 MB, Δt = 0.026 s
step = 63/680, χ = 8, |ψ| = 0.006 MB, RSS = 373751.808 MB, Δt = 0.027 s
step = 64/680, χ = 10, |ψ| = 0.008 MB, RSS = 373751.808 MB, Δt = 0.027 s
step = 65/680, χ = 9, |ψ| = 0.007 MB, RSS = 373751.808 MB, Δt = 0.027 s
step = 66/680, χ = 9, |ψ| = 0.008 MB, RSS = 373768.192 MB, Δt = 0.026 s
step = 67/680, χ = 8, |ψ| = 0.007 MB, RSS = 373800.960 MB, Δt = 0.027 s
step = 68/680, χ = 8, |ψ| = 0.006 MB, RSS = 373800.960 MB, Δt = 0.027 s
step = 69/680, χ = 8, |ψ| = 0.006 MB, RSS = 373817.344 MB, Δt = 0.026 s
step = 70/680, χ = 10, |ψ| = 0.007 MB, RSS = 373817.344 MB, Δt = 0.026 s
step = 71/680, χ = 8, |ψ| = 0.006 MB, RSS = 373817.344 MB, Δt = 0.027 s
step = 72/680, χ = 8, |ψ| = 0.007 MB, RSS = 373817.344 MB, Δt = 0.027 s
step = 73/680, χ = 10, |ψ| = 0.009 MB, RSS = 373833.728 MB, Δt = 0.027 s
step = 74/680, χ = 8, |ψ| = 0.006 MB, RSS = 373833.728 MB, Δt = 0.027 s
step = 75/680, χ = 8, |ψ| = 0.007 MB, RSS = 373833.728 MB, Δt = 0.027 s
step = 76/680, χ = 10, |ψ| = 0.007 MB, RSS = 373833.728 MB, Δt = 0.027 s
step = 77/680, χ = 10, |ψ| = 0.007 MB, RSS = 373833.728 MB, Δt = 0.026 s
step = 78/680, χ = 9, |ψ| = 0.007 MB, RSS = 373850.112 MB, Δt = 0.028 s
step = 79/680, χ = 8, |ψ| = 0.006 MB, RSS = 373866.496 MB, Δt = 0.027 s
step = 80/680, χ = 9, |ψ| = 0.008 MB, RSS = 373866.496 MB, Δt = 0.027 s
step = 81/680, χ = 8, |ψ| = 0.007 MB, RSS = 373866.496 MB, Δt = 0.026 s
step = 82/680, χ = 9, |ψ| = 0.007 MB, RSS = 373882.880 MB, Δt = 0.027 s
step = 83/680, χ = 9, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.026 s
step = 84/680, χ = 8, |ψ| = 0.006 MB, RSS = 373899.264 MB, Δt = 0.033 s
step = 85/680, χ = 8, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.027 s
step = 86/680, χ = 9, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.027 s
step = 87/680, χ = 8, |ψ| = 0.006 MB, RSS = 373899.264 MB, Δt = 0.027 s
step = 88/680, χ = 11, |ψ| = 0.008 MB, RSS = 373899.264 MB, Δt = 0.026 s
step = 89/680, χ = 8, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.027 s
step = 90/680, χ = 9, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.028 s
step = 91/680, χ = 10, |ψ| = 0.008 MB, RSS = 373899.264 MB, Δt = 0.026 s
step = 92/680, χ = 11, |ψ| = 0.008 MB, RSS = 373899.264 MB, Δt = 0.026 s
step = 93/680, χ = 9, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.027 s
step = 94/680, χ = 9, |ψ| = 0.007 MB, RSS = 373899.264 MB, Δt = 0.026 s
step = 95/680, χ = 9, |ψ| = 0.008 MB, RSS = 373915.648 MB, Δt = 0.027 s
step = 96/680, χ = 11, |ψ| = 0.010 MB, RSS = 373932.032 MB, Δt = 0.027 s
step = 97/680, χ = 8, |ψ| = 0.006 MB, RSS = 373932.032 MB, Δt = 0.027 s
step = 98/680, χ = 9, |ψ| = 0.008 MB, RSS = 373948.416 MB, Δt = 0.027 s
step = 99/680, χ = 9, |ψ| = 0.007 MB, RSS = 373948.416 MB, Δt = 0.027 s
step = 100/680, χ = 8, |ψ| = 0.007 MB, RSS = 373948.416 MB, Δt = 0.027 s
step = 101/680, χ = 11, |ψ| = 0.007 MB, RSS = 373948.416 MB, Δt = 0.027 s
step = 102/680, χ = 9, |ψ| = 0.007 MB, RSS = 373948.416 MB, Δt = 0.026 s
step = 103/680, χ = 9, |ψ| = 0.007 MB, RSS = 374013.952 MB, Δt = 0.050 s
step = 104/680, χ = 8, |ψ| = 0.007 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 105/680, χ = 10, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 106/680, χ = 9, |ψ| = 0.007 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 107/680, χ = 8, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.026 s
step = 108/680, χ = 9, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 109/680, χ = 9, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.028 s
step = 110/680, χ = 10, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 111/680, χ = 12, |ψ| = 0.009 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 112/680, χ = 9, |ψ| = 0.007 MB, RSS = 374013.952 MB, Δt = 0.026 s
step = 113/680, χ = 9, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 114/680, χ = 9, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.028 s
step = 115/680, χ = 9, |ψ| = 0.007 MB, RSS = 374013.952 MB, Δt = 0.033 s
step = 116/680, χ = 11, |ψ| = 0.009 MB, RSS = 374013.952 MB, Δt = 0.028 s
step = 117/680, χ = 8, |ψ| = 0.007 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 118/680, χ = 12, |ψ| = 0.010 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 119/680, χ = 10, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.027 s
step = 120/680, χ = 12, |ψ| = 0.008 MB, RSS = 374013.952 MB, Δt = 0.028 s
step = 121/680, χ = 10, |ψ| = 0.007 MB, RSS = 374030.336 MB, Δt = 0.029 s
step = 122/680, χ = 10, |ψ| = 0.008 MB, RSS = 374030.336 MB, Δt = 0.026 s
step = 123/680, χ = 11, |ψ| = 0.009 MB, RSS = 374030.336 MB, Δt = 0.027 s
step = 124/680, χ = 11, |ψ| = 0.009 MB, RSS = 374030.336 MB, Δt = 0.028 s
step = 125/680, χ = 12, |ψ| = 0.009 MB, RSS = 374046.720 MB, Δt = 0.027 s
step = 126/680, χ = 11, |ψ| = 0.009 MB, RSS = 374046.720 MB, Δt = 0.027 s
step = 127/680, χ = 11, |ψ| = 0.008 MB, RSS = 374095.872 MB, Δt = 0.027 s
step = 128/680, χ = 10, |ψ| = 0.008 MB, RSS = 374095.872 MB, Δt = 0.027 s
step = 129/680, χ = 10, |ψ| = 0.008 MB, RSS = 374095.872 MB, Δt = 0.027 s
step = 130/680, χ = 10, |ψ| = 0.008 MB, RSS = 374095.872 MB, Δt = 0.027 s
step = 131/680, χ = 12, |ψ| = 0.010 MB, RSS = 374112.256 MB, Δt = 0.028 s
step = 132/680, χ = 10, |ψ| = 0.009 MB, RSS = 374112.256 MB, Δt = 0.026 s
step = 133/680, χ = 11, |ψ| = 0.008 MB, RSS = 374112.256 MB, Δt = 0.027 s
step = 134/680, χ = 9, |ψ| = 0.007 MB, RSS = 374112.256 MB, Δt = 0.028 s
step = 135/680, χ = 9, |ψ| = 0.008 MB, RSS = 374112.256 MB, Δt = 0.027 s
step = 136/680, χ = 9, |ψ| = 0.007 MB, RSS = 374112.256 MB, Δt = 0.027 s
step = 137/680, χ = 10, |ψ| = 0.010 MB, RSS = 374112.256 MB, Δt = 0.027 s
step = 138/680, χ = 11, |ψ| = 0.008 MB, RSS = 374112.256 MB, Δt = 0.027 s
step = 139/680, χ = 10, |ψ| = 0.008 MB, RSS = 374112.256 MB, Δt = 0.027 s
step = 140/680, χ = 10, |ψ| = 0.008 MB, RSS = 374112.256 MB, Δt = 0.028 s
step = 141/680, χ = 9, |ψ| = 0.007 MB, RSS = 374145.024 MB, Δt = 0.027 s
step = 142/680, χ = 10, |ψ| = 0.007 MB, RSS = 374145.024 MB, Δt = 0.027 s
step = 143/680, χ = 9, |ψ| = 0.009 MB, RSS = 374145.024 MB, Δt = 0.027 s
step = 144/680, χ = 12, |ψ| = 0.010 MB, RSS = 374145.024 MB, Δt = 0.027 s
step = 145/680, χ = 11, |ψ| = 0.008 MB, RSS = 374145.024 MB, Δt = 0.028 s
step = 146/680, χ = 12, |ψ| = 0.009 MB, RSS = 374145.024 MB, Δt = 0.028 s
step = 147/680, χ = 10, |ψ| = 0.008 MB, RSS = 374145.024 MB, Δt = 0.026 s
step = 148/680, χ = 11, |ψ| = 0.009 MB, RSS = 374145.024 MB, Δt = 0.027 s
step = 149/680, χ = 9, |ψ| = 0.008 MB, RSS = 374161.408 MB, Δt = 0.027 s
step = 150/680, χ = 10, |ψ| = 0.007 MB, RSS = 374161.408 MB, Δt = 0.033 s
step = 151/680, χ = 9, |ψ| = 0.008 MB, RSS = 374177.792 MB, Δt = 0.028 s
step = 152/680, χ = 12, |ψ| = 0.009 MB, RSS = 374177.792 MB, Δt = 0.027 s
step = 153/680, χ = 10, |ψ| = 0.008 MB, RSS = 374194.176 MB, Δt = 0.027 s
step = 154/680, χ = 11, |ψ| = 0.009 MB, RSS = 374194.176 MB, Δt = 0.027 s
step = 155/680, χ = 12, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.027 s
step = 156/680, χ = 11, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.028 s
step = 157/680, χ = 12, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.027 s
step = 158/680, χ = 11, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.028 s
step = 159/680, χ = 12, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.028 s
step = 160/680, χ = 10, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.026 s
step = 161/680, χ = 12, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.028 s
step = 162/680, χ = 10, |ψ| = 0.008 MB, RSS = 374210.560 MB, Δt = 0.028 s
step = 163/680, χ = 10, |ψ| = 0.009 MB, RSS = 374226.944 MB, Δt = 0.027 s
step = 164/680, χ = 10, |ψ| = 0.008 MB, RSS = 374243.328 MB, Δt = 0.027 s
step = 165/680, χ = 9, |ψ| = 0.007 MB, RSS = 374243.328 MB, Δt = 0.029 s
step = 166/680, χ = 10, |ψ| = 0.007 MB, RSS = 374243.328 MB, Δt = 0.027 s
step = 167/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 168/680, χ = 12, |ψ| = 0.008 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 169/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.026 s
step = 170/680, χ = 9, |ψ| = 0.008 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 171/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 172/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.026 s
step = 173/680, χ = 11, |ψ| = 0.008 MB, RSS = 374259.712 MB, Δt = 0.027 s
step = 174/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.027 s
step = 175/680, χ = 10, |ψ| = 0.009 MB, RSS = 374259.712 MB, Δt = 0.027 s
step = 176/680, χ = 9, |ψ| = 0.006 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 177/680, χ = 10, |ψ| = 0.008 MB, RSS = 374259.712 MB, Δt = 0.027 s
step = 178/680, χ = 11, |ψ| = 0.008 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 179/680, χ = 12, |ψ| = 0.009 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 180/680, χ = 10, |ψ| = 0.008 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 181/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.027 s
step = 182/680, χ = 11, |ψ| = 0.009 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 183/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.027 s
step = 184/680, χ = 9, |ψ| = 0.007 MB, RSS = 374259.712 MB, Δt = 0.028 s
step = 185/680, χ = 10, |ψ| = 0.007 MB, RSS = 374341.632 MB, Δt = 0.034 s
step = 186/680, χ = 11, |ψ| = 0.008 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 187/680, χ = 12, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 188/680, χ = 10, |ψ| = 0.007 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 189/680, χ = 13, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 190/680, χ = 11, |ψ| = 0.007 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 191/680, χ = 11, |ψ| = 0.008 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 192/680, χ = 11, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 193/680, χ = 12, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 194/680, χ = 10, |ψ| = 0.008 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 195/680, χ = 11, |ψ| = 0.011 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 196/680, χ = 10, |ψ| = 0.008 MB, RSS = 374341.632 MB, Δt = 0.026 s
step = 197/680, χ = 12, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 198/680, χ = 11, |ψ| = 0.008 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 199/680, χ = 13, |ψ| = 0.010 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 200/680, χ = 10, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 201/680, χ = 10, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.027 s
step = 202/680, χ = 13, |ψ| = 0.009 MB, RSS = 374341.632 MB, Δt = 0.028 s
step = 203/680, χ = 13, |ψ| = 0.012 MB, RSS = 374341.632 MB, Δt = 0.029 s
step = 204/680, χ = 11, |ψ| = 0.008 MB, RSS = 374358.016 MB, Δt = 0.028 s
step = 205/680, χ = 11, |ψ| = 0.009 MB, RSS = 374358.016 MB, Δt = 0.027 s
step = 206/680, χ = 11, |ψ| = 0.008 MB, RSS = 374374.400 MB, Δt = 0.030 s
step = 207/680, χ = 11, |ψ| = 0.008 MB, RSS = 374374.400 MB, Δt = 0.028 s
step = 208/680, χ = 11, |ψ| = 0.008 MB, RSS = 374374.400 MB, Δt = 0.027 s
step = 209/680, χ = 14, |ψ| = 0.010 MB, RSS = 374390.784 MB, Δt = 0.028 s
step = 210/680, χ = 11, |ψ| = 0.011 MB, RSS = 374390.784 MB, Δt = 0.027 s
step = 211/680, χ = 12, |ψ| = 0.009 MB, RSS = 374390.784 MB, Δt = 0.027 s
step = 212/680, χ = 11, |ψ| = 0.008 MB, RSS = 374390.784 MB, Δt = 0.025 s
step = 213/680, χ = 11, |ψ| = 0.008 MB, RSS = 374390.784 MB, Δt = 0.026 s
step = 214/680, χ = 13, |ψ| = 0.011 MB, RSS = 374390.784 MB, Δt = 0.028 s
step = 215/680, χ = 14, |ψ| = 0.012 MB, RSS = 374390.784 MB, Δt = 0.027 s
step = 216/680, χ = 11, |ψ| = 0.008 MB, RSS = 374407.168 MB, Δt = 0.028 s
step = 217/680, χ = 12, |ψ| = 0.009 MB, RSS = 374407.168 MB, Δt = 0.027 s
step = 218/680, χ = 11, |ψ| = 0.009 MB, RSS = 374423.552 MB, Δt = 0.028 s
step = 219/680, χ = 10, |ψ| = 0.009 MB, RSS = 374423.552 MB, Δt = 0.028 s
step = 220/680, χ = 13, |ψ| = 0.009 MB, RSS = 374423.552 MB, Δt = 0.034 s
step = 221/680, χ = 12, |ψ| = 0.011 MB, RSS = 374423.552 MB, Δt = 0.028 s
step = 222/680, χ = 11, |ψ| = 0.010 MB, RSS = 374423.552 MB, Δt = 0.030 s
step = 223/680, χ = 14, |ψ| = 0.011 MB, RSS = 374439.936 MB, Δt = 0.029 s
step = 224/680, χ = 10, |ψ| = 0.009 MB, RSS = 374456.320 MB, Δt = 0.029 s
step = 225/680, χ = 12, |ψ| = 0.009 MB, RSS = 374456.320 MB, Δt = 0.029 s
step = 226/680, χ = 11, |ψ| = 0.009 MB, RSS = 374472.704 MB, Δt = 0.030 s
step = 227/680, χ = 12, |ψ| = 0.011 MB, RSS = 374472.704 MB, Δt = 0.030 s
step = 228/680, χ = 11, |ψ| = 0.008 MB, RSS = 374472.704 MB, Δt = 0.029 s
step = 229/680, χ = 11, |ψ| = 0.009 MB, RSS = 374489.088 MB, Δt = 0.029 s
step = 230/680, χ = 13, |ψ| = 0.010 MB, RSS = 374489.088 MB, Δt = 0.028 s
step = 231/680, χ = 11, |ψ| = 0.011 MB, RSS = 374489.088 MB, Δt = 0.028 s
step = 232/680, χ = 12, |ψ| = 0.008 MB, RSS = 374489.088 MB, Δt = 0.028 s
step = 233/680, χ = 13, |ψ| = 0.010 MB, RSS = 374489.088 MB, Δt = 0.028 s
step = 234/680, χ = 11, |ψ| = 0.008 MB, RSS = 374505.472 MB, Δt = 0.028 s
step = 235/680, χ = 12, |ψ| = 0.009 MB, RSS = 374505.472 MB, Δt = 0.027 s
step = 236/680, χ = 11, |ψ| = 0.008 MB, RSS = 374505.472 MB, Δt = 0.028 s
step = 237/680, χ = 11, |ψ| = 0.008 MB, RSS = 374505.472 MB, Δt = 0.028 s
step = 238/680, χ = 14, |ψ| = 0.010 MB, RSS = 374505.472 MB, Δt = 0.028 s
step = 239/680, χ = 11, |ψ| = 0.010 MB, RSS = 374505.472 MB, Δt = 0.028 s
step = 240/680, χ = 11, |ψ| = 0.010 MB, RSS = 374505.472 MB, Δt = 0.027 s
step = 241/680, χ = 11, |ψ| = 0.009 MB, RSS = 374505.472 MB, Δt = 0.027 s
step = 242/680, χ = 11, |ψ| = 0.009 MB, RSS = 374505.472 MB, Δt = 0.028 s
step = 243/680, χ = 13, |ψ| = 0.009 MB, RSS = 374538.240 MB, Δt = 0.053 s
step = 244/680, χ = 11, |ψ| = 0.009 MB, RSS = 374538.240 MB, Δt = 0.028 s
step = 245/680, χ = 11, |ψ| = 0.009 MB, RSS = 374538.240 MB, Δt = 0.027 s
step = 246/680, χ = 11, |ψ| = 0.009 MB, RSS = 374538.240 MB, Δt = 0.027 s
step = 247/680, χ = 11, |ψ| = 0.008 MB, RSS = 374538.240 MB, Δt = 0.027 s
step = 248/680, χ = 11, |ψ| = 0.009 MB, RSS = 374571.008 MB, Δt = 0.027 s
step = 249/680, χ = 11, |ψ| = 0.010 MB, RSS = 374571.008 MB, Δt = 0.029 s
step = 250/680, χ = 15, |ψ| = 0.011 MB, RSS = 374571.008 MB, Δt = 0.027 s
step = 251/680, χ = 12, |ψ| = 0.010 MB, RSS = 374603.776 MB, Δt = 0.028 s
step = 252/680, χ = 12, |ψ| = 0.009 MB, RSS = 374603.776 MB, Δt = 0.027 s
step = 253/680, χ = 12, |ψ| = 0.010 MB, RSS = 374603.776 MB, Δt = 0.035 s
step = 254/680, χ = 13, |ψ| = 0.010 MB, RSS = 374603.776 MB, Δt = 0.027 s
step = 255/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 256/680, χ = 12, |ψ| = 0.009 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 257/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 258/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 259/680, χ = 14, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 260/680, χ = 11, |ψ| = 0.008 MB, RSS = 374620.160 MB, Δt = 0.026 s
step = 261/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 262/680, χ = 13, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 263/680, χ = 11, |ψ| = 0.008 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 264/680, χ = 13, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 265/680, χ = 12, |ψ| = 0.009 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 266/680, χ = 11, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.026 s
step = 267/680, χ = 11, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 268/680, χ = 11, |ψ| = 0.009 MB, RSS = 374620.160 MB, Δt = 0.026 s
step = 269/680, χ = 11, |ψ| = 0.009 MB, RSS = 374620.160 MB, Δt = 0.026 s
step = 270/680, χ = 11, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 271/680, χ = 11, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 272/680, χ = 11, |ψ| = 0.008 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 273/680, χ = 11, |ψ| = 0.009 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 274/680, χ = 11, |ψ| = 0.009 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 275/680, χ = 11, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 276/680, χ = 15, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 277/680, χ = 13, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 278/680, χ = 14, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 279/680, χ = 12, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 280/680, χ = 14, |ψ| = 0.012 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 281/680, χ = 14, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 282/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 283/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 284/680, χ = 11, |ψ| = 0.008 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 285/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 286/680, χ = 12, |ψ| = 0.010 MB, RSS = 374620.160 MB, Δt = 0.034 s
step = 287/680, χ = 13, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.027 s
step = 288/680, χ = 15, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.029 s
step = 289/680, χ = 13, |ψ| = 0.011 MB, RSS = 374620.160 MB, Δt = 0.028 s
step = 290/680, χ = 12, |ψ| = 0.009 MB, RSS = 374636.544 MB, Δt = 0.028 s
step = 291/680, χ = 12, |ψ| = 0.010 MB, RSS = 374652.928 MB, Δt = 0.029 s
step = 292/680, χ = 12, |ψ| = 0.009 MB, RSS = 374652.928 MB, Δt = 0.027 s
step = 293/680, χ = 12, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.028 s
step = 294/680, χ = 12, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.028 s
step = 295/680, χ = 13, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.027 s
step = 296/680, χ = 13, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.027 s
step = 297/680, χ = 13, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.027 s
step = 298/680, χ = 13, |ψ| = 0.012 MB, RSS = 374669.312 MB, Δt = 0.028 s
step = 299/680, χ = 13, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.027 s
step = 300/680, χ = 13, |ψ| = 0.010 MB, RSS = 374669.312 MB, Δt = 0.027 s
step = 301/680, χ = 15, |ψ| = 0.013 MB, RSS = 374685.696 MB, Δt = 0.028 s
step = 302/680, χ = 13, |ψ| = 0.010 MB, RSS = 374685.696 MB, Δt = 0.027 s
step = 303/680, χ = 13, |ψ| = 0.010 MB, RSS = 374702.080 MB, Δt = 0.028 s
step = 304/680, χ = 13, |ψ| = 0.011 MB, RSS = 374702.080 MB, Δt = 0.028 s
step = 305/680, χ = 13, |ψ| = 0.011 MB, RSS = 374702.080 MB, Δt = 0.028 s
step = 306/680, χ = 14, |ψ| = 0.011 MB, RSS = 374702.080 MB, Δt = 0.027 s
step = 307/680, χ = 13, |ψ| = 0.010 MB, RSS = 374718.464 MB, Δt = 0.028 s
step = 308/680, χ = 14, |ψ| = 0.010 MB, RSS = 374718.464 MB, Δt = 0.027 s
step = 309/680, χ = 13, |ψ| = 0.011 MB, RSS = 374718.464 MB, Δt = 0.028 s
step = 310/680, χ = 14, |ψ| = 0.010 MB, RSS = 374718.464 MB, Δt = 0.028 s
step = 311/680, χ = 13, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.029 s
step = 312/680, χ = 14, |ψ| = 0.011 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 313/680, χ = 15, |ψ| = 0.012 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 314/680, χ = 13, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.028 s
step = 315/680, χ = 15, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 316/680, χ = 13, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 317/680, χ = 15, |ψ| = 0.012 MB, RSS = 374734.848 MB, Δt = 0.028 s
step = 318/680, χ = 15, |ψ| = 0.012 MB, RSS = 374734.848 MB, Δt = 0.033 s
step = 319/680, χ = 13, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 320/680, χ = 13, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 321/680, χ = 14, |ψ| = 0.010 MB, RSS = 374734.848 MB, Δt = 0.027 s
step = 322/680, χ = 14, |ψ| = 0.011 MB, RSS = 374751.232 MB, Δt = 0.027 s
step = 323/680, χ = 15, |ψ| = 0.012 MB, RSS = 374751.232 MB, Δt = 0.026 s
step = 324/680, χ = 15, |ψ| = 0.010 MB, RSS = 374751.232 MB, Δt = 0.028 s
step = 325/680, χ = 13, |ψ| = 0.010 MB, RSS = 374751.232 MB, Δt = 0.027 s
step = 326/680, χ = 16, |ψ| = 0.012 MB, RSS = 374751.232 MB, Δt = 0.026 s
step = 327/680, χ = 14, |ψ| = 0.010 MB, RSS = 374751.232 MB, Δt = 0.028 s
step = 328/680, χ = 15, |ψ| = 0.011 MB, RSS = 374751.232 MB, Δt = 0.028 s
step = 329/680, χ = 15, |ψ| = 0.011 MB, RSS = 374751.232 MB, Δt = 0.027 s
step = 330/680, χ = 13, |ψ| = 0.010 MB, RSS = 374767.616 MB, Δt = 0.027 s
step = 331/680, χ = 14, |ψ| = 0.011 MB, RSS = 374767.616 MB, Δt = 0.028 s
step = 332/680, χ = 13, |ψ| = 0.009 MB, RSS = 374767.616 MB, Δt = 0.027 s
step = 333/680, χ = 15, |ψ| = 0.011 MB, RSS = 374784.000 MB, Δt = 0.026 s
step = 334/680, χ = 13, |ψ| = 0.010 MB, RSS = 374784.000 MB, Δt = 0.027 s
step = 335/680, χ = 13, |ψ| = 0.010 MB, RSS = 374800.384 MB, Δt = 0.027 s
step = 336/680, χ = 15, |ψ| = 0.012 MB, RSS = 374800.384 MB, Δt = 0.027 s
step = 337/680, χ = 16, |ψ| = 0.012 MB, RSS = 374800.384 MB, Δt = 0.029 s
step = 338/680, χ = 16, |ψ| = 0.012 MB, RSS = 374800.384 MB, Δt = 0.027 s
step = 339/680, χ = 16, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.028 s
step = 340/680, χ = 16, |ψ| = 0.012 MB, RSS = 374800.384 MB, Δt = 0.026 s
step = 341/680, χ = 16, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.028 s
step = 342/680, χ = 14, |ψ| = 0.010 MB, RSS = 374800.384 MB, Δt = 0.027 s
step = 343/680, χ = 16, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.034 s
step = 344/680, χ = 16, |ψ| = 0.012 MB, RSS = 374800.384 MB, Δt = 0.027 s
step = 345/680, χ = 14, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.029 s
step = 346/680, χ = 14, |ψ| = 0.010 MB, RSS = 374800.384 MB, Δt = 0.028 s
step = 347/680, χ = 14, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.027 s
step = 348/680, χ = 14, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.028 s
step = 349/680, χ = 14, |ψ| = 0.011 MB, RSS = 374800.384 MB, Δt = 0.028 s
step = 350/680, χ = 16, |ψ| = 0.013 MB, RSS = 374816.768 MB, Δt = 0.028 s
step = 351/680, χ = 14, |ψ| = 0.011 MB, RSS = 374816.768 MB, Δt = 0.028 s
step = 352/680, χ = 14, |ψ| = 0.011 MB, RSS = 374816.768 MB, Δt = 0.027 s
step = 353/680, χ = 14, |ψ| = 0.011 MB, RSS = 374849.536 MB, Δt = 0.027 s
step = 354/680, χ = 16, |ψ| = 0.011 MB, RSS = 374865.920 MB, Δt = 0.026 s
step = 355/680, χ = 14, |ψ| = 0.011 MB, RSS = 374865.920 MB, Δt = 0.027 s
step = 356/680, χ = 14, |ψ| = 0.011 MB, RSS = 374882.304 MB, Δt = 0.028 s
step = 357/680, χ = 16, |ψ| = 0.011 MB, RSS = 374882.304 MB, Δt = 0.027 s
step = 358/680, χ = 15, |ψ| = 0.010 MB, RSS = 374882.304 MB, Δt = 0.028 s
step = 359/680, χ = 14, |ψ| = 0.011 MB, RSS = 374882.304 MB, Δt = 0.028 s
step = 360/680, χ = 16, |ψ| = 0.011 MB, RSS = 374882.304 MB, Δt = 0.027 s
step = 361/680, χ = 14, |ψ| = 0.011 MB, RSS = 374882.304 MB, Δt = 0.027 s
step = 362/680, χ = 16, |ψ| = 0.012 MB, RSS = 374882.304 MB, Δt = 0.027 s
step = 363/680, χ = 16, |ψ| = 0.011 MB, RSS = 374898.688 MB, Δt = 0.028 s
step = 364/680, χ = 15, |ψ| = 0.012 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 365/680, χ = 14, |ψ| = 0.010 MB, RSS = 374898.688 MB, Δt = 0.028 s
step = 366/680, χ = 15, |ψ| = 0.011 MB, RSS = 374898.688 MB, Δt = 0.028 s
step = 367/680, χ = 13, |ψ| = 0.009 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 368/680, χ = 16, |ψ| = 0.011 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 369/680, χ = 16, |ψ| = 0.012 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 370/680, χ = 13, |ψ| = 0.010 MB, RSS = 374898.688 MB, Δt = 0.028 s
step = 371/680, χ = 16, |ψ| = 0.011 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 372/680, χ = 14, |ψ| = 0.012 MB, RSS = 374898.688 MB, Δt = 0.028 s
step = 373/680, χ = 16, |ψ| = 0.012 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 374/680, χ = 16, |ψ| = 0.011 MB, RSS = 374898.688 MB, Δt = 0.027 s
step = 375/680, χ = 16, |ψ| = 0.011 MB, RSS = 374915.072 MB, Δt = 0.027 s
step = 376/680, χ = 15, |ψ| = 0.010 MB, RSS = 374915.072 MB, Δt = 0.033 s
step = 377/680, χ = 16, |ψ| = 0.012 MB, RSS = 374931.456 MB, Δt = 0.027 s
step = 378/680, χ = 16, |ψ| = 0.011 MB, RSS = 374931.456 MB, Δt = 0.028 s
step = 379/680, χ = 16, |ψ| = 0.011 MB, RSS = 374947.840 MB, Δt = 0.051 s
step = 380/680, χ = 15, |ψ| = 0.010 MB, RSS = 374947.840 MB, Δt = 0.028 s
step = 381/680, χ = 15, |ψ| = 0.011 MB, RSS = 374947.840 MB, Δt = 0.028 s
step = 382/680, χ = 16, |ψ| = 0.013 MB, RSS = 374947.840 MB, Δt = 0.028 s
step = 383/680, χ = 16, |ψ| = 0.012 MB, RSS = 374947.840 MB, Δt = 0.028 s
step = 384/680, χ = 15, |ψ| = 0.011 MB, RSS = 374947.840 MB, Δt = 0.027 s
step = 385/680, χ = 15, |ψ| = 0.010 MB, RSS = 374964.224 MB, Δt = 0.027 s
step = 386/680, χ = 15, |ψ| = 0.011 MB, RSS = 374964.224 MB, Δt = 0.027 s
step = 387/680, χ = 15, |ψ| = 0.010 MB, RSS = 374980.608 MB, Δt = 0.027 s
step = 388/680, χ = 16, |ψ| = 0.013 MB, RSS = 374980.608 MB, Δt = 0.027 s
step = 389/680, χ = 15, |ψ| = 0.012 MB, RSS = 374980.608 MB, Δt = 0.028 s
step = 390/680, χ = 16, |ψ| = 0.013 MB, RSS = 374980.608 MB, Δt = 0.028 s
step = 391/680, χ = 15, |ψ| = 0.011 MB, RSS = 374980.608 MB, Δt = 0.028 s
step = 392/680, χ = 15, |ψ| = 0.011 MB, RSS = 374980.608 MB, Δt = 0.027 s
step = 393/680, χ = 15, |ψ| = 0.011 MB, RSS = 374980.608 MB, Δt = 0.028 s
step = 394/680, χ = 15, |ψ| = 0.011 MB, RSS = 374980.608 MB, Δt = 0.028 s
step = 395/680, χ = 15, |ψ| = 0.011 MB, RSS = 374980.608 MB, Δt = 0.028 s
step = 396/680, χ = 15, |ψ| = 0.011 MB, RSS = 374996.992 MB, Δt = 0.028 s
step = 397/680, χ = 16, |ψ| = 0.011 MB, RSS = 374996.992 MB, Δt = 0.028 s
step = 398/680, χ = 16, |ψ| = 0.011 MB, RSS = 374996.992 MB, Δt = 0.027 s
step = 399/680, χ = 16, |ψ| = 0.011 MB, RSS = 374996.992 MB, Δt = 0.028 s
step = 400/680, χ = 15, |ψ| = 0.012 MB, RSS = 374996.992 MB, Δt = 0.028 s
step = 401/680, χ = 15, |ψ| = 0.010 MB, RSS = 374996.992 MB, Δt = 0.028 s
step = 402/680, χ = 16, |ψ| = 0.013 MB, RSS = 375013.376 MB, Δt = 0.027 s
step = 403/680, χ = 16, |ψ| = 0.012 MB, RSS = 375013.376 MB, Δt = 0.027 s
step = 404/680, χ = 16, |ψ| = 0.012 MB, RSS = 375013.376 MB, Δt = 0.027 s
step = 405/680, χ = 16, |ψ| = 0.011 MB, RSS = 375111.680 MB, Δt = 0.028 s
step = 406/680, χ = 16, |ψ| = 0.012 MB, RSS = 375111.680 MB, Δt = 0.028 s
step = 407/680, χ = 16, |ψ| = 0.011 MB, RSS = 375111.680 MB, Δt = 0.027 s
step = 408/680, χ = 15, |ψ| = 0.010 MB, RSS = 375111.680 MB, Δt = 0.028 s
step = 409/680, χ = 16, |ψ| = 0.013 MB, RSS = 375111.680 MB, Δt = 0.027 s
step = 410/680, χ = 16, |ψ| = 0.012 MB, RSS = 375111.680 MB, Δt = 0.034 s
step = 411/680, χ = 15, |ψ| = 0.012 MB, RSS = 375111.680 MB, Δt = 0.027 s
step = 412/680, χ = 16, |ψ| = 0.013 MB, RSS = 375111.680 MB, Δt = 0.028 s
step = 413/680, χ = 16, |ψ| = 0.012 MB, RSS = 375111.680 MB, Δt = 0.027 s
step = 414/680, χ = 15, |ψ| = 0.012 MB, RSS = 375111.680 MB, Δt = 0.027 s
step = 415/680, χ = 15, |ψ| = 0.012 MB, RSS = 375111.680 MB, Δt = 0.029 s
step = 416/680, χ = 16, |ψ| = 0.013 MB, RSS = 375111.680 MB, Δt = 0.027 s
step = 417/680, χ = 15, |ψ| = 0.011 MB, RSS = 375128.064 MB, Δt = 0.028 s
step = 418/680, χ = 16, |ψ| = 0.012 MB, RSS = 375128.064 MB, Δt = 0.028 s
step = 419/680, χ = 15, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 420/680, χ = 15, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 421/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 422/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 423/680, χ = 15, |ψ| = 0.010 MB, RSS = 375144.448 MB, Δt = 0.026 s
step = 424/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.029 s
step = 425/680, χ = 15, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 426/680, χ = 15, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 427/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 428/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 429/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 430/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 431/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 432/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 433/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.026 s
step = 434/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 435/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 436/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 437/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 438/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 439/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 440/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 441/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 442/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 443/680, χ = 16, |ψ| = 0.011 MB, RSS = 375144.448 MB, Δt = 0.035 s
step = 444/680, χ = 16, |ψ| = 0.013 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 445/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.028 s
step = 446/680, χ = 16, |ψ| = 0.012 MB, RSS = 375144.448 MB, Δt = 0.027 s
step = 447/680, χ = 16, |ψ| = 0.012 MB, RSS = 375160.832 MB, Δt = 0.028 s
step = 448/680, χ = 16, |ψ| = 0.011 MB, RSS = 375160.832 MB, Δt = 0.027 s
step = 449/680, χ = 16, |ψ| = 0.012 MB, RSS = 375160.832 MB, Δt = 0.028 s
step = 450/680, χ = 16, |ψ| = 0.011 MB, RSS = 375160.832 MB, Δt = 0.027 s
step = 451/680, χ = 16, |ψ| = 0.011 MB, RSS = 375177.216 MB, Δt = 0.028 s
step = 452/680, χ = 16, |ψ| = 0.011 MB, RSS = 375177.216 MB, Δt = 0.028 s
step = 453/680, χ = 16, |ψ| = 0.013 MB, RSS = 375177.216 MB, Δt = 0.028 s
step = 454/680, χ = 16, |ψ| = 0.011 MB, RSS = 375193.600 MB, Δt = 0.027 s
step = 455/680, χ = 16, |ψ| = 0.012 MB, RSS = 375209.984 MB, Δt = 0.028 s
step = 456/680, χ = 16, |ψ| = 0.012 MB, RSS = 375226.368 MB, Δt = 0.027 s
step = 457/680, χ = 16, |ψ| = 0.011 MB, RSS = 375226.368 MB, Δt = 0.028 s
step = 458/680, χ = 16, |ψ| = 0.012 MB, RSS = 375242.752 MB, Δt = 0.027 s
step = 459/680, χ = 16, |ψ| = 0.012 MB, RSS = 375242.752 MB, Δt = 0.028 s
step = 460/680, χ = 16, |ψ| = 0.011 MB, RSS = 375259.136 MB, Δt = 0.027 s
step = 461/680, χ = 16, |ψ| = 0.012 MB, RSS = 375275.520 MB, Δt = 0.028 s
step = 462/680, χ = 15, |ψ| = 0.011 MB, RSS = 375275.520 MB, Δt = 0.027 s
step = 463/680, χ = 16, |ψ| = 0.011 MB, RSS = 375291.904 MB, Δt = 0.028 s
step = 464/680, χ = 16, |ψ| = 0.011 MB, RSS = 375291.904 MB, Δt = 0.028 s
step = 465/680, χ = 16, |ψ| = 0.011 MB, RSS = 375308.288 MB, Δt = 0.028 s
step = 466/680, χ = 16, |ψ| = 0.011 MB, RSS = 375308.288 MB, Δt = 0.027 s
step = 467/680, χ = 16, |ψ| = 0.012 MB, RSS = 375308.288 MB, Δt = 0.028 s
step = 468/680, χ = 16, |ψ| = 0.014 MB, RSS = 375308.288 MB, Δt = 0.027 s
step = 469/680, χ = 16, |ψ| = 0.012 MB, RSS = 375308.288 MB, Δt = 0.028 s
step = 470/680, χ = 16, |ψ| = 0.011 MB, RSS = 375308.288 MB, Δt = 0.028 s
step = 471/680, χ = 16, |ψ| = 0.012 MB, RSS = 375308.288 MB, Δt = 0.028 s
step = 472/680, χ = 16, |ψ| = 0.012 MB, RSS = 375324.672 MB, Δt = 0.028 s
step = 473/680, χ = 16, |ψ| = 0.012 MB, RSS = 375324.672 MB, Δt = 0.027 s
step = 474/680, χ = 16, |ψ| = 0.013 MB, RSS = 375324.672 MB, Δt = 0.027 s
step = 475/680, χ = 16, |ψ| = 0.011 MB, RSS = 375324.672 MB, Δt = 0.028 s
step = 476/680, χ = 16, |ψ| = 0.011 MB, RSS = 375324.672 MB, Δt = 0.027 s
step = 477/680, χ = 16, |ψ| = 0.013 MB, RSS = 375324.672 MB, Δt = 0.034 s
step = 478/680, χ = 16, |ψ| = 0.012 MB, RSS = 375324.672 MB, Δt = 0.029 s
step = 479/680, χ = 16, |ψ| = 0.013 MB, RSS = 375324.672 MB, Δt = 0.028 s
step = 480/680, χ = 16, |ψ| = 0.011 MB, RSS = 375357.440 MB, Δt = 0.028 s
step = 481/680, χ = 16, |ψ| = 0.013 MB, RSS = 375373.824 MB, Δt = 0.028 s
step = 482/680, χ = 16, |ψ| = 0.011 MB, RSS = 375373.824 MB, Δt = 0.028 s
step = 483/680, χ = 16, |ψ| = 0.012 MB, RSS = 375373.824 MB, Δt = 0.028 s
step = 484/680, χ = 16, |ψ| = 0.013 MB, RSS = 375373.824 MB, Δt = 0.027 s
step = 485/680, χ = 16, |ψ| = 0.012 MB, RSS = 375373.824 MB, Δt = 0.028 s
step = 486/680, χ = 16, |ψ| = 0.012 MB, RSS = 375373.824 MB, Δt = 0.027 s
step = 487/680, χ = 16, |ψ| = 0.011 MB, RSS = 375373.824 MB, Δt = 0.027 s
step = 488/680, χ = 16, |ψ| = 0.013 MB, RSS = 375373.824 MB, Δt = 0.028 s
step = 489/680, χ = 16, |ψ| = 0.012 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 490/680, χ = 16, |ψ| = 0.011 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 491/680, χ = 16, |ψ| = 0.011 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 492/680, χ = 16, |ψ| = 0.012 MB, RSS = 375390.208 MB, Δt = 0.028 s
step = 493/680, χ = 16, |ψ| = 0.012 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 494/680, χ = 16, |ψ| = 0.012 MB, RSS = 375390.208 MB, Δt = 0.028 s
step = 495/680, χ = 16, |ψ| = 0.012 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 496/680, χ = 16, |ψ| = 0.013 MB, RSS = 375390.208 MB, Δt = 0.028 s
step = 497/680, χ = 16, |ψ| = 0.011 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 498/680, χ = 16, |ψ| = 0.012 MB, RSS = 375390.208 MB, Δt = 0.028 s
step = 499/680, χ = 16, |ψ| = 0.011 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 500/680, χ = 16, |ψ| = 0.011 MB, RSS = 375390.208 MB, Δt = 0.028 s
step = 501/680, χ = 16, |ψ| = 0.013 MB, RSS = 375390.208 MB, Δt = 0.027 s
step = 502/680, χ = 16, |ψ| = 0.012 MB, RSS = 375406.592 MB, Δt = 0.028 s
step = 503/680, χ = 16, |ψ| = 0.011 MB, RSS = 375422.976 MB, Δt = 0.027 s
step = 504/680, χ = 16, |ψ| = 0.011 MB, RSS = 375422.976 MB, Δt = 0.028 s
step = 505/680, χ = 16, |ψ| = 0.012 MB, RSS = 375422.976 MB, Δt = 0.028 s
step = 506/680, χ = 16, |ψ| = 0.012 MB, RSS = 375422.976 MB, Δt = 0.027 s
step = 507/680, χ = 16, |ψ| = 0.012 MB, RSS = 375422.976 MB, Δt = 0.027 s
step = 508/680, χ = 16, |ψ| = 0.011 MB, RSS = 375422.976 MB, Δt = 0.027 s
step = 509/680, χ = 16, |ψ| = 0.012 MB, RSS = 375422.976 MB, Δt = 0.027 s
step = 510/680, χ = 16, |ψ| = 0.011 MB, RSS = 375439.360 MB, Δt = 0.054 s
step = 511/680, χ = 16, |ψ| = 0.012 MB, RSS = 375439.360 MB, Δt = 0.035 s
step = 512/680, χ = 16, |ψ| = 0.011 MB, RSS = 375439.360 MB, Δt = 0.028 s
step = 513/680, χ = 16, |ψ| = 0.012 MB, RSS = 375439.360 MB, Δt = 0.027 s
step = 514/680, χ = 16, |ψ| = 0.012 MB, RSS = 375439.360 MB, Δt = 0.027 s
step = 515/680, χ = 16, |ψ| = 0.012 MB, RSS = 375439.360 MB, Δt = 0.027 s
step = 516/680, χ = 16, |ψ| = 0.011 MB, RSS = 375439.360 MB, Δt = 0.027 s
step = 517/680, χ = 16, |ψ| = 0.012 MB, RSS = 375439.360 MB, Δt = 0.028 s
step = 518/680, χ = 16, |ψ| = 0.011 MB, RSS = 375455.744 MB, Δt = 0.028 s
step = 519/680, χ = 16, |ψ| = 0.013 MB, RSS = 375455.744 MB, Δt = 0.028 s
step = 520/680, χ = 16, |ψ| = 0.013 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 521/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 522/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 523/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 524/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 525/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 526/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 527/680, χ = 16, |ψ| = 0.013 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 528/680, χ = 16, |ψ| = 0.013 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 529/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 530/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 531/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 532/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 533/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 534/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 535/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 536/680, χ = 16, |ψ| = 0.014 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 537/680, χ = 16, |ψ| = 0.012 MB, RSS = 375472.128 MB, Δt = 0.027 s
step = 538/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.026 s
step = 539/680, χ = 16, |ψ| = 0.011 MB, RSS = 375472.128 MB, Δt = 0.026 s
step = 540/680, χ = 16, |ψ| = 0.013 MB, RSS = 375472.128 MB, Δt = 0.028 s
step = 541/680, χ = 16, |ψ| = 0.012 MB, RSS = 375488.512 MB, Δt = 0.028 s
step = 542/680, χ = 16, |ψ| = 0.012 MB, RSS = 375488.512 MB, Δt = 0.026 s
step = 543/680, χ = 16, |ψ| = 0.011 MB, RSS = 375488.512 MB, Δt = 0.027 s
step = 544/680, χ = 16, |ψ| = 0.011 MB, RSS = 375488.512 MB, Δt = 0.033 s
step = 545/680, χ = 16, |ψ| = 0.011 MB, RSS = 375521.280 MB, Δt = 0.027 s
step = 546/680, χ = 16, |ψ| = 0.011 MB, RSS = 375521.280 MB, Δt = 0.027 s
step = 547/680, χ = 16, |ψ| = 0.012 MB, RSS = 375521.280 MB, Δt = 0.026 s
step = 548/680, χ = 16, |ψ| = 0.011 MB, RSS = 375521.280 MB, Δt = 0.027 s
step = 549/680, χ = 16, |ψ| = 0.013 MB, RSS = 375521.280 MB, Δt = 0.028 s
step = 550/680, χ = 16, |ψ| = 0.012 MB, RSS = 375537.664 MB, Δt = 0.026 s
step = 551/680, χ = 16, |ψ| = 0.012 MB, RSS = 375537.664 MB, Δt = 0.027 s
step = 552/680, χ = 16, |ψ| = 0.012 MB, RSS = 375537.664 MB, Δt = 0.027 s
step = 553/680, χ = 16, |ψ| = 0.013 MB, RSS = 375537.664 MB, Δt = 0.027 s
step = 554/680, χ = 16, |ψ| = 0.011 MB, RSS = 375537.664 MB, Δt = 0.027 s
step = 555/680, χ = 16, |ψ| = 0.012 MB, RSS = 375537.664 MB, Δt = 0.027 s
step = 556/680, χ = 16, |ψ| = 0.012 MB, RSS = 375537.664 MB, Δt = 0.027 s
step = 557/680, χ = 16, |ψ| = 0.012 MB, RSS = 375570.432 MB, Δt = 0.027 s
step = 558/680, χ = 16, |ψ| = 0.011 MB, RSS = 375570.432 MB, Δt = 0.026 s
step = 559/680, χ = 16, |ψ| = 0.012 MB, RSS = 375570.432 MB, Δt = 0.026 s
step = 560/680, χ = 16, |ψ| = 0.012 MB, RSS = 375570.432 MB, Δt = 0.027 s
step = 561/680, χ = 16, |ψ| = 0.011 MB, RSS = 375570.432 MB, Δt = 0.027 s
step = 562/680, χ = 16, |ψ| = 0.013 MB, RSS = 375570.432 MB, Δt = 0.027 s
step = 563/680, χ = 16, |ψ| = 0.013 MB, RSS = 375570.432 MB, Δt = 0.027 s
step = 564/680, χ = 16, |ψ| = 0.011 MB, RSS = 375570.432 MB, Δt = 0.028 s
step = 565/680, χ = 16, |ψ| = 0.012 MB, RSS = 375570.432 MB, Δt = 0.027 s
step = 566/680, χ = 16, |ψ| = 0.013 MB, RSS = 375586.816 MB, Δt = 0.027 s
step = 567/680, χ = 16, |ψ| = 0.011 MB, RSS = 375586.816 MB, Δt = 0.026 s
step = 568/680, χ = 16, |ψ| = 0.011 MB, RSS = 375586.816 MB, Δt = 0.026 s
step = 569/680, χ = 16, |ψ| = 0.012 MB, RSS = 375586.816 MB, Δt = 0.027 s
step = 570/680, χ = 16, |ψ| = 0.012 MB, RSS = 375586.816 MB, Δt = 0.027 s
step = 571/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 572/680, χ = 16, |ψ| = 0.012 MB, RSS = 375603.200 MB, Δt = 0.028 s
step = 573/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.027 s
step = 574/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 575/680, χ = 16, |ψ| = 0.013 MB, RSS = 375603.200 MB, Δt = 0.027 s
step = 576/680, χ = 16, |ψ| = 0.012 MB, RSS = 375603.200 MB, Δt = 0.028 s
step = 577/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.033 s
step = 578/680, χ = 16, |ψ| = 0.013 MB, RSS = 375603.200 MB, Δt = 0.027 s
step = 579/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.027 s
step = 580/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.027 s
step = 581/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 582/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 583/680, χ = 16, |ψ| = 0.012 MB, RSS = 375603.200 MB, Δt = 0.027 s
step = 584/680, χ = 16, |ψ| = 0.012 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 585/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 586/680, χ = 16, |ψ| = 0.011 MB, RSS = 375603.200 MB, Δt = 0.026 s
step = 587/680, χ = 16, |ψ| = 0.012 MB, RSS = 375635.968 MB, Δt = 0.027 s
step = 588/680, χ = 16, |ψ| = 0.011 MB, RSS = 375635.968 MB, Δt = 0.027 s
step = 589/680, χ = 16, |ψ| = 0.012 MB, RSS = 375635.968 MB, Δt = 0.026 s
step = 590/680, χ = 16, |ψ| = 0.011 MB, RSS = 375635.968 MB, Δt = 0.026 s
step = 591/680, χ = 16, |ψ| = 0.012 MB, RSS = 375635.968 MB, Δt = 0.027 s
step = 592/680, χ = 16, |ψ| = 0.011 MB, RSS = 375635.968 MB, Δt = 0.027 s
step = 593/680, χ = 16, |ψ| = 0.011 MB, RSS = 375635.968 MB, Δt = 0.026 s
step = 594/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 595/680, χ = 16, |ψ| = 0.011 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 596/680, χ = 16, |ψ| = 0.011 MB, RSS = 375668.736 MB, Δt = 0.027 s
step = 597/680, χ = 16, |ψ| = 0.011 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 598/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 599/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.027 s
step = 600/680, χ = 16, |ψ| = 0.011 MB, RSS = 375668.736 MB, Δt = 0.025 s
step = 601/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.027 s
step = 602/680, χ = 16, |ψ| = 0.013 MB, RSS = 375668.736 MB, Δt = 0.027 s
step = 603/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 604/680, χ = 16, |ψ| = 0.011 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 605/680, χ = 16, |ψ| = 0.011 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 606/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.027 s
step = 607/680, χ = 16, |ψ| = 0.013 MB, RSS = 375668.736 MB, Δt = 0.026 s
step = 608/680, χ = 16, |ψ| = 0.012 MB, RSS = 375668.736 MB, Δt = 0.034 s
step = 609/680, χ = 16, |ψ| = 0.012 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 610/680, χ = 16, |ψ| = 0.013 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 611/680, χ = 16, |ψ| = 0.012 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 612/680, χ = 16, |ψ| = 0.012 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 613/680, χ = 16, |ψ| = 0.011 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 614/680, χ = 16, |ψ| = 0.011 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 615/680, χ = 16, |ψ| = 0.012 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 616/680, χ = 16, |ψ| = 0.011 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 617/680, χ = 16, |ψ| = 0.011 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 618/680, χ = 16, |ψ| = 0.011 MB, RSS = 375685.120 MB, Δt = 0.026 s
step = 619/680, χ = 16, |ψ| = 0.013 MB, RSS = 375701.504 MB, Δt = 0.026 s
step = 620/680, χ = 16, |ψ| = 0.011 MB, RSS = 375701.504 MB, Δt = 0.027 s
step = 621/680, χ = 16, |ψ| = 0.012 MB, RSS = 375701.504 MB, Δt = 0.027 s
step = 622/680, χ = 16, |ψ| = 0.012 MB, RSS = 375701.504 MB, Δt = 0.027 s
step = 623/680, χ = 16, |ψ| = 0.012 MB, RSS = 375701.504 MB, Δt = 0.026 s
step = 624/680, χ = 16, |ψ| = 0.012 MB, RSS = 375701.504 MB, Δt = 0.026 s
step = 625/680, χ = 16, |ψ| = 0.013 MB, RSS = 375701.504 MB, Δt = 0.027 s
step = 626/680, χ = 16, |ψ| = 0.011 MB, RSS = 375701.504 MB, Δt = 0.026 s
step = 627/680, χ = 16, |ψ| = 0.012 MB, RSS = 375701.504 MB, Δt = 0.027 s
step = 628/680, χ = 16, |ψ| = 0.011 MB, RSS = 375701.504 MB, Δt = 0.026 s
step = 629/680, χ = 16, |ψ| = 0.012 MB, RSS = 375734.272 MB, Δt = 0.027 s
step = 630/680, χ = 16, |ψ| = 0.012 MB, RSS = 375734.272 MB, Δt = 0.026 s
step = 631/680, χ = 16, |ψ| = 0.011 MB, RSS = 375734.272 MB, Δt = 0.027 s
step = 632/680, χ = 16, |ψ| = 0.011 MB, RSS = 375734.272 MB, Δt = 0.026 s
step = 633/680, χ = 16, |ψ| = 0.012 MB, RSS = 375734.272 MB, Δt = 0.027 s
step = 634/680, χ = 16, |ψ| = 0.012 MB, RSS = 375750.656 MB, Δt = 0.026 s
step = 635/680, χ = 16, |ψ| = 0.012 MB, RSS = 375750.656 MB, Δt = 0.026 s
step = 636/680, χ = 16, |ψ| = 0.011 MB, RSS = 375750.656 MB, Δt = 0.027 s
step = 637/680, χ = 16, |ψ| = 0.011 MB, RSS = 375767.040 MB, Δt = 0.026 s
step = 638/680, χ = 16, |ψ| = 0.011 MB, RSS = 375767.040 MB, Δt = 0.033 s
step = 639/680, χ = 16, |ψ| = 0.012 MB, RSS = 375767.040 MB, Δt = 0.026 s
step = 640/680, χ = 16, |ψ| = 0.012 MB, RSS = 375996.416 MB, Δt = 0.050 s
step = 641/680, χ = 16, |ψ| = 0.011 MB, RSS = 375996.416 MB, Δt = 0.027 s
step = 642/680, χ = 16, |ψ| = 0.012 MB, RSS = 376012.800 MB, Δt = 0.027 s
step = 643/680, χ = 16, |ψ| = 0.011 MB, RSS = 376029.184 MB, Δt = 0.026 s
step = 644/680, χ = 16, |ψ| = 0.011 MB, RSS = 376029.184 MB, Δt = 0.026 s
step = 645/680, χ = 16, |ψ| = 0.013 MB, RSS = 376029.184 MB, Δt = 0.026 s
step = 646/680, χ = 16, |ψ| = 0.011 MB, RSS = 376029.184 MB, Δt = 0.027 s
step = 647/680, χ = 16, |ψ| = 0.012 MB, RSS = 376029.184 MB, Δt = 0.026 s
step = 648/680, χ = 16, |ψ| = 0.011 MB, RSS = 376029.184 MB, Δt = 0.026 s
step = 649/680, χ = 16, |ψ| = 0.012 MB, RSS = 376029.184 MB, Δt = 0.027 s
step = 650/680, χ = 16, |ψ| = 0.012 MB, RSS = 376029.184 MB, Δt = 0.026 s
step = 651/680, χ = 16, |ψ| = 0.012 MB, RSS = 376045.568 MB, Δt = 0.027 s
step = 652/680, χ = 16, |ψ| = 0.012 MB, RSS = 376045.568 MB, Δt = 0.027 s
step = 653/680, χ = 16, |ψ| = 0.012 MB, RSS = 376045.568 MB, Δt = 0.026 s
step = 654/680, χ = 16, |ψ| = 0.011 MB, RSS = 376045.568 MB, Δt = 0.026 s
step = 655/680, χ = 16, |ψ| = 0.012 MB, RSS = 376045.568 MB, Δt = 0.026 s
step = 656/680, χ = 16, |ψ| = 0.012 MB, RSS = 376045.568 MB, Δt = 0.025 s
step = 657/680, χ = 16, |ψ| = 0.011 MB, RSS = 376045.568 MB, Δt = 0.026 s
step = 658/680, χ = 16, |ψ| = 0.011 MB, RSS = 376045.568 MB, Δt = 0.026 s
step = 659/680, χ = 16, |ψ| = 0.011 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 660/680, χ = 16, |ψ| = 0.011 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 661/680, χ = 16, |ψ| = 0.012 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 662/680, χ = 16, |ψ| = 0.012 MB, RSS = 376061.952 MB, Δt = 0.027 s
step = 663/680, χ = 16, |ψ| = 0.013 MB, RSS = 376061.952 MB, Δt = 0.027 s
step = 664/680, χ = 16, |ψ| = 0.012 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 665/680, χ = 16, |ψ| = 0.012 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 666/680, χ = 16, |ψ| = 0.011 MB, RSS = 376061.952 MB, Δt = 0.032 s
step = 667/680, χ = 16, |ψ| = 0.011 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 668/680, χ = 16, |ψ| = 0.012 MB, RSS = 376061.952 MB, Δt = 0.027 s
step = 669/680, χ = 16, |ψ| = 0.012 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 670/680, χ = 16, |ψ| = 0.013 MB, RSS = 376061.952 MB, Δt = 0.026 s
step = 671/680, χ = 16, |ψ| = 0.012 MB, RSS = 376078.336 MB, Δt = 0.027 s
step = 672/680, χ = 16, |ψ| = 0.011 MB, RSS = 376094.720 MB, Δt = 0.026 s
step = 673/680, χ = 16, |ψ| = 0.012 MB, RSS = 376094.720 MB, Δt = 0.026 s
step = 674/680, χ = 16, |ψ| = 0.012 MB, RSS = 376094.720 MB, Δt = 0.026 s
step = 675/680, χ = 16, |ψ| = 0.013 MB, RSS = 376094.720 MB, Δt = 0.026 s
step = 676/680, χ = 16, |ψ| = 0.012 MB, RSS = 376094.720 MB, Δt = 0.027 s
step = 677/680, χ = 16, |ψ| = 0.013 MB, RSS = 376094.720 MB, Δt = 0.026 s
step = 678/680, χ = 16, |ψ| = 0.012 MB, RSS = 376094.720 MB, Δt = 0.026 s
step = 679/680, χ = 16, |ψ| = 0.012 MB, RSS = 376094.720 MB, Δt = 0.027 s
step = 680/680, χ = 16, |ψ| = 0.011 MB, RSS = 376094.720 MB, Δt = 0.056 s
Inspecting the result object
Section titled “Inspecting the result object”In the following lines, we are going to give brief code examples of how you can get the information from the results object
results.get_result_tags()['bitstrings', 'fidelity_1', 'occupation', 'statistics']
Notice that fidelity_1 name contains the subindex _1 according to the tag_suffix="1", because it is possible to create several fidelities on different states, and the names must be unique.
Computation statistics
Section titled “Computation statistics”During the simulation the sequence is discretized into steps according to dt. For each step results.statistics contains:
- $\chi$: maximum bond dimension used.
- $|\Psi|$: MPS memory footprint.
- RSS: peak memory allocation.
- Δt: wall-clock time for that step.
Example:
# print statistics of step 1statistics = results.statisticsprint(f"Number of discretized steps:\n {len(statistics)}")print("Step 1 statistics\n",statistics[1])Number of discretized steps:
680
Step 1 statistics
{'max_bond_dimension': 3, 'memory_footprint': 0.000736, 'RSS': 372981.76, 'duration': 0.016418933868408203}
Bitstrings analysis
Section titled “Bitstrings analysis”Below, we retrieve the bitstrings computed. We observe that they were indeed computed only at a single time $ns = 3400$, and we find those that were sampled the highest number of times with their relative counting.
results.get_result_times(bitstrings)bitstrings_final = results.get_result(bitstrings, 1.0)
max_val = max(bitstrings_final.values()) # max number of counts in the bitstringmax_string = [key for key, value in bitstrings_final.items() if value == max_val]print( "The most frequent bitstring is {} which was sampled {} times".format( max_string, max_val ))
filtered_counts = [count for count in bitstrings_final.values() if count > 20]filtered_bitstrings = [ bitstring for bitstring, count in bitstrings_final.items() if count > 20]x_labels = range(len(filtered_bitstrings))with plt.style.context("seaborn-v0_8-darkgrid"): fig, ax = plt.subplots() ax.bar(x_labels, filtered_counts, color="teal", alpha=0.8) ax.set_xlabel("Bitstrings") ax.set_ylabel("Counts") ax.set_title("Histogram of Bitstring Counts (Counts > 20)") ax.set_xticks(x_labels) ax.set_xticklabels(filtered_bitstrings, rotation="vertical") ax.spines["top"].set_visible(False) ax.spines["right"].set_visible(False) plt.tight_layout() plt.show()The most frequent bitstring is ['10101010'] which was sampled 282 times
Fidelity analysis
Section titled “Fidelity analysis”Here we compute the fidelity of the system against the two different AFM state realizations defined above.
fidelity_pure = results.get_result(fidelity_mps_pure, 1.0)
print( "The probability of the system being in the sate |rgrgrgr> is equal to {} ".format( fidelity_pure, ))The probability of the system being in the sate |rgrgrgr> is equal to 0.24778655760582485
Evolution of the state in time
Section titled “Evolution of the state in time”Here, we plot the time evolution of the magnetization of the system sites, and we observe how the system slowly reaches the AFM state.
magnetization_values = np.array(list(results.occupation))magnetization_times = results.get_result_times(density)# rescaling the timereal_times = []for time in magnetization_times: real_times.append(time * seq.get_duration())fig, ax = plt.subplots(figsize=(8, 4), layout="constrained")
num_time_points, positions = magnetization_values.shapex, y = np.meshgrid(np.arange(num_time_points), np.arange(1, positions + 1))im = plt.pcolormesh(real_times, y, magnetization_values.T, shading="auto")ax.set_xlabel("Time [ns]")ax.set_ylabel("Qubit")ax.set_title("State Density")ax.set_yticks(np.arange(1, positions + 1))cb = fig.colorbar(im, ax=ax)