| from dataclasses import dataclass |
| from functools import partial |
| from os import PathLike |
|
|
| import h5py |
|
|
| import jax.numpy as jnp |
| from jax import jit |
|
|
| from varipeps import varipeps_config |
| import varipeps.config |
| from varipeps.peps import PEPS_Tensor, PEPS_Unit_Cell |
| from varipeps.contractions import apply_contraction, Definitions |
| from varipeps.expectation.model import Expectation_Model |
| from varipeps.expectation.one_site import calc_one_site_multi_gates |
| from varipeps.expectation.two_sites import ( |
| _two_site_workhorse, |
| _two_site_diagonal_workhorse, |
| ) |
| from varipeps.expectation.helpers import ( |
| partially_traced_four_site_density_matrices, |
| partially_traced_horizontal_two_site_density_matrices, |
| partially_traced_vertical_two_site_density_matrices, |
| ) |
| from varipeps.expectation.triangular_helpers import ( |
| partially_traced_vertical_two_site_density_matrices_triangular, |
| partially_traced_horizontal_two_site_density_matrices_triangular, |
| partially_traced_diagonal_two_site_density_matrices_triangular, |
| ) |
| from varipeps.expectation.triangular_one_site import calc_triangular_one_site |
| from varipeps.expectation.triangular_two_sites import ( |
| calc_triangular_two_sites_workhorse, |
| ) |
| from varipeps.expectation.spiral_helpers import apply_unitary |
| from varipeps.typing import Tensor |
| from varipeps.mapping import Map_To_PEPS_Model |
| from varipeps.utils.random import PEPS_Random_Number_Generator |
|
|
|
|
| from typing import ( |
| Sequence, |
| Union, |
| List, |
| Callable, |
| TypeVar, |
| Optional, |
| Tuple, |
| Type, |
| Dict, |
| Any, |
| ) |
|
|
| T_Maple_Leaf_Map_PESS_To_PEPS = TypeVar( |
| "T_Maple_Leaf_Map_PESS_To_PEPS", bound="Maple_Leaf_Map_PESS_To_PEPS" |
| ) |
|
|
|
|
| def get_onsite_gates(g_e, b_e, r_e, d): |
| Id_other_sites = jnp.eye(d**4) |
|
|
| green_12 = jnp.kron(g_e, Id_other_sites) |
|
|
| green_34 = green_12.reshape(d, d, d, d, d, d, d, d, d, d, d, d) |
| green_34 = green_34.transpose((2, 3, 0, 1, 4, 5, 8, 9, 6, 7, 10, 11)) |
| green_34 = green_34.reshape(d**6, d**6) |
|
|
| green_56 = jnp.kron(Id_other_sites, g_e) |
|
|
| blue_base = jnp.kron(b_e, Id_other_sites) |
| blue_base = blue_base.reshape(d, d, d, d, d, d, d, d, d, d, d, d) |
|
|
| blue_15 = blue_base.transpose((0, 2, 3, 4, 1, 5, 6, 8, 9, 10, 7, 11)) |
| blue_15 = blue_15.reshape(d**6, d**6) |
|
|
| blue_23 = blue_base.transpose((2, 0, 1, 3, 4, 5, 8, 6, 7, 9, 10, 11)) |
| blue_23 = blue_23.reshape(d**6, d**6) |
|
|
| blue_46 = blue_base.transpose((2, 3, 4, 0, 5, 1, 8, 9, 10, 6, 11, 7)) |
| blue_46 = blue_46.reshape(d**6, d**6) |
|
|
| red_base = jnp.kron(r_e, Id_other_sites) |
| red_base = red_base.reshape(d, d, d, d, d, d, d, d, d, d, d, d) |
|
|
| red_24 = red_base.transpose((2, 0, 3, 1, 4, 5, 8, 6, 9, 7, 10, 11)) |
| red_24 = red_24.reshape(d**6, d**6) |
|
|
| red_25 = red_base.transpose((2, 0, 3, 4, 1, 5, 8, 6, 9, 10, 7, 11)) |
| red_25 = red_25.reshape(d**6, d**6) |
|
|
| red_45 = red_base.transpose((2, 3, 4, 0, 1, 5, 8, 9, 10, 6, 7, 11)) |
| red_45 = red_45.reshape(d**6, d**6) |
|
|
| return ( |
| green_12, |
| green_34, |
| green_56, |
| blue_15, |
| blue_23, |
| blue_46, |
| red_24, |
| red_25, |
| red_45, |
| ) |
|
|
|
|
| def get_onsite_gates_hexagon(b_e, d): |
| Id_other_sites = jnp.eye(d**4) |
|
|
| blue_base = jnp.kron(b_e, Id_other_sites) |
| blue_base = blue_base.reshape(d, d, d, d, d, d, d, d, d, d, d, d) |
|
|
| blue_12 = blue_base.transpose((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11)) |
| blue_12 = blue_12.reshape(d**6, d**6) |
|
|
| blue_23 = blue_base.transpose((2, 0, 1, 3, 4, 5, 8, 6, 7, 9, 10, 11)) |
| blue_23 = blue_23.reshape(d**6, d**6) |
|
|
| blue_34 = blue_base.transpose((2, 3, 0, 1, 4, 5, 8, 9, 6, 7, 10, 11)) |
| blue_34 = blue_34.reshape(d**6, d**6) |
|
|
| blue_45 = blue_base.transpose((2, 3, 4, 0, 1, 5, 8, 9, 10, 6, 7, 11)) |
| blue_45 = blue_45.reshape(d**6, d**6) |
|
|
| blue_56 = blue_base.transpose((2, 3, 4, 5, 0, 1, 8, 9, 10, 11, 6, 7)) |
| blue_56 = blue_56.reshape(d**6, d**6) |
|
|
| blue_61 = blue_base.transpose((1, 2, 3, 4, 5, 0, 7, 8, 9, 10, 11, 6)) |
| blue_61 = blue_61.reshape(d**6, d**6) |
|
|
| return ( |
| blue_12, |
| blue_23, |
| blue_34, |
| blue_45, |
| blue_56, |
| blue_61, |
| ) |
|
|
|
|
| @partial(jit, static_argnums=(3, 4)) |
| def _calc_onsite_gate( |
| green_gates: Sequence[jnp.ndarray], |
| blue_gates: Sequence[jnp.ndarray], |
| red_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
|
|
| single_gates = [None] * result_length |
|
|
| for i, (g_e, b_e, r_e) in enumerate( |
| zip(green_gates, blue_gates, red_gates, strict=True) |
| ): |
| ( |
| green_12, |
| green_34, |
| green_56, |
| blue_15, |
| blue_23, |
| blue_46, |
| red_24, |
| red_25, |
| red_45, |
| ) = get_onsite_gates(g_e, b_e, r_e, d) |
|
|
| result[i] = ( |
| green_12 |
| + green_34 |
| + green_56 |
| + blue_15 |
| + blue_23 |
| + blue_46 |
| + red_24 |
| + red_25 |
| + red_45 |
| ) |
|
|
| single_gates[i] = ( |
| green_12, |
| green_34, |
| green_56, |
| blue_15, |
| blue_23, |
| blue_46, |
| red_24, |
| red_25, |
| red_45, |
| ) |
|
|
| return result, single_gates |
|
|
|
|
| @partial(jit, static_argnums=(1, 2)) |
| def _calc_onsite_gate_hexagon( |
| blue_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
|
|
| single_gates = [None] * result_length |
|
|
| for i, (b_e,) in enumerate(zip(blue_gates, strict=True)): |
| ( |
| blue_12, |
| blue_23, |
| blue_34, |
| blue_45, |
| blue_56, |
| blue_61, |
| ) = get_onsite_gates_hexagon(b_e, d) |
|
|
| result[i] = blue_12 + blue_23 + blue_34 + blue_45 + blue_56 + blue_61 |
|
|
| single_gates[i] = ( |
| blue_12, |
| blue_23, |
| blue_34, |
| blue_45, |
| blue_56, |
| blue_61, |
| ) |
|
|
| return result, single_gates |
|
|
|
|
| def get_right_gates(b_e, r_e, d): |
| Id_other_site = jnp.eye(d) |
|
|
| red_61 = jnp.kron(r_e, Id_other_site) |
|
|
| blue_62 = jnp.kron(b_e, Id_other_site) |
| blue_62 = blue_62.reshape(d, d, d, d, d, d) |
| blue_62 = blue_62.transpose((0, 2, 1, 3, 5, 4)) |
| blue_62 = blue_62.reshape(d**3, d**3) |
|
|
| return red_61, blue_62 |
|
|
|
|
| def get_right_gates_hexagon(r_e, g_e, d): |
| Id_other_site = jnp.eye(d**2) |
|
|
| red_26 = jnp.kron(r_e, Id_other_site) |
| red_26 = red_26.reshape(d, d, d, d, d, d, d, d) |
| red_26 = red_26.transpose((0, 2, 3, 1, 4, 6, 7, 5)) |
| red_26 = red_26.reshape(d**4, d**4) |
|
|
| red_35 = jnp.kron(r_e, Id_other_site) |
| red_35 = red_35.reshape(d, d, d, d, d, d, d, d) |
| red_35 = red_35.transpose((2, 0, 1, 3, 6, 4, 5, 7)) |
| red_35 = red_35.reshape(d**4, d**4) |
|
|
| green_36 = jnp.kron(g_e, Id_other_site) |
| green_36 = green_36.reshape(d, d, d, d, d, d, d, d) |
| green_36 = green_36.transpose((2, 0, 3, 1, 6, 4, 7, 5)) |
| green_36 = green_36.reshape(d**4, d**4) |
|
|
| return red_26, red_35, green_36 |
|
|
|
|
| @partial(jit, static_argnums=(2, 3)) |
| def _calc_right_gate( |
| blue_gates: Sequence[jnp.ndarray], |
| red_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
|
|
| single_gates = [None] * result_length |
|
|
| for i, (b_e, r_e) in enumerate(zip(blue_gates, red_gates, strict=True)): |
| red_61, blue_62 = get_right_gates(b_e, r_e, d) |
|
|
| result[i] = red_61 + blue_62 |
|
|
| single_gates[i] = (red_61, blue_62) |
|
|
| return result, single_gates |
|
|
|
|
| @partial(jit, static_argnums=(2, 3)) |
| def _calc_right_gate_hexagon( |
| red_gates: Sequence[jnp.ndarray], |
| green_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
| single_gates = [None] * result_length |
| for i, (r_e, g_e) in enumerate(zip(red_gates, green_gates, strict=True)): |
| red_26, red_35, green_36 = get_right_gates_hexagon(r_e, g_e, d) |
| result[i] = red_26 + red_35 + green_36 |
| single_gates[i] = (red_26, red_35, green_36) |
|
|
| return result, single_gates |
|
|
|
|
| def get_down_gates(b_e, r_e, d): |
| Id_other_site = jnp.eye(d) |
|
|
| blue_35 = jnp.kron(b_e, Id_other_site) |
|
|
| red_36 = jnp.kron(r_e, Id_other_site) |
| red_36 = red_36.reshape(d, d, d, d, d, d) |
| red_36 = red_36.transpose((0, 2, 1, 3, 5, 4)) |
| red_36 = red_36.reshape(d**3, d**3) |
|
|
| return blue_35, red_36 |
|
|
|
|
| def get_down_gates_hexagon(r_e, g_e, d): |
| Id_other_site = jnp.eye(d**2) |
|
|
| red_42 = jnp.kron(r_e, Id_other_site) |
| red_42 = red_42.reshape(d, d, d, d, d, d, d, d) |
| red_42 = red_42.transpose((0, 2, 3, 1, 4, 6, 7, 5)) |
| red_42 = red_42.reshape(d**4, d**4) |
|
|
| red_51 = jnp.kron(r_e, Id_other_site) |
| red_51 = red_51.reshape(d, d, d, d, d, d, d, d) |
| red_51 = red_51.transpose((2, 0, 1, 3, 6, 4, 5, 7)) |
| red_51 = red_51.reshape(d**4, d**4) |
|
|
| green_52 = jnp.kron(g_e, Id_other_site) |
| green_52 = green_52.reshape(d, d, d, d, d, d, d, d) |
| green_52 = green_52.transpose((2, 0, 3, 1, 6, 4, 7, 5)) |
| green_52 = green_52.reshape(d**4, d**4) |
|
|
| return red_42, red_51, green_52 |
|
|
|
|
| @partial(jit, static_argnums=(2, 3)) |
| def _calc_down_gate( |
| blue_gates: Sequence[jnp.ndarray], |
| red_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
|
|
| single_gates = [None] * result_length |
|
|
| for i, (b_e, r_e) in enumerate(zip(blue_gates, red_gates, strict=True)): |
| blue_35, red_36 = get_down_gates(b_e, r_e, d) |
|
|
| result[i] = blue_35 + red_36 |
|
|
| single_gates[i] = (blue_35, red_36) |
|
|
| return result, single_gates |
|
|
|
|
| @partial(jit, static_argnums=(2, 3)) |
| def _calc_down_gate_hexagon( |
| red_gates: Sequence[jnp.ndarray], |
| green_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
| single_gates = [None] * result_length |
| for i, (r_e, g_e) in enumerate(zip(red_gates, green_gates, strict=True)): |
| red_42, red_51, green_52 = get_down_gates_hexagon(r_e, g_e, d) |
| result[i] = red_42 + red_51 + green_52 |
| single_gates[i] = (red_42, red_51, green_52) |
|
|
| return result, single_gates |
|
|
|
|
| def get_diagonal_gates(b_e, r_e, d): |
| Id_other_site = jnp.eye(d) |
|
|
| blue_41 = jnp.kron(Id_other_site, b_e) |
|
|
| red_31 = jnp.kron(r_e, Id_other_site) |
| red_31 = red_31.reshape(d, d, d, d, d, d) |
| red_31 = red_31.transpose((0, 2, 1, 3, 5, 4)) |
| red_31 = red_31.reshape(d**3, d**3) |
|
|
| return blue_41, red_31 |
|
|
|
|
| def get_diagonal_gates_hexagon(r_e, g_e, d): |
| Id_other_site = jnp.eye(d**2) |
|
|
| red_31 = jnp.kron(r_e, Id_other_site) |
| red_31 = red_31.reshape(d, d, d, d, d, d, d, d) |
| red_31 = red_31.transpose((0, 2, 1, 3, 4, 6, 5, 7)) |
| red_31 = red_31.reshape(d**4, d**4) |
|
|
| red_46 = jnp.kron(r_e, Id_other_site) |
| red_46 = red_46.reshape(d, d, d, d, d, d, d, d) |
| red_46 = red_46.transpose((2, 0, 3, 1, 6, 4, 7, 5)) |
| red_46 = red_46.reshape(d**4, d**4) |
|
|
| green_41 = jnp.kron(g_e, Id_other_site) |
| green_41 = green_41.reshape(d, d, d, d, d, d, d, d) |
| green_41 = green_41.transpose((2, 0, 1, 3, 6, 4, 5, 7)) |
| green_41 = green_41.reshape(d**4, d**4) |
|
|
| return red_31, red_46, green_41 |
|
|
|
|
| @partial(jit, static_argnums=(2, 3)) |
| def _calc_diagonal_gate( |
| blue_gates: Sequence[jnp.ndarray], |
| red_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
|
|
| single_gates = [None] * result_length |
|
|
| for i, (b_e, r_e) in enumerate(zip(blue_gates, red_gates, strict=True)): |
| blue_41, red_31 = get_diagonal_gates(b_e, r_e, d) |
|
|
| result[i] = blue_41 + red_31 |
|
|
| single_gates[i] = (blue_41, red_31) |
|
|
| return result, single_gates |
|
|
|
|
| @partial(jit, static_argnums=(2, 3)) |
| def _calc_diagonal_gate_hexagon( |
| red_gates: Sequence[jnp.ndarray], |
| green_gates: Sequence[jnp.ndarray], |
| d: int, |
| result_length: int, |
| ): |
| result = [None] * result_length |
| single_gates = [None] * result_length |
| for i, (r_e, g_e) in enumerate(zip(red_gates, green_gates, strict=True)): |
| red_31, red_46, green_41 = get_diagonal_gates_hexagon(r_e, g_e, d) |
| result[i] = red_31 + red_46 + green_41 |
| single_gates[i] = (red_31, red_46, green_41) |
|
|
| return result, single_gates |
|
|
|
|
| @dataclass |
| class Maple_Leaf_Expectation_Value(Expectation_Model): |
| """ |
| Class to calculate expectation values for a mapped Maple-Leaf |
| structure. |
| |
| .. figure:: /images/maple_leaf_structure.* |
| :align: center |
| :width: 90% |
| :alt: Structure of the Maple-Leaf lattice with the smallest possible |
| unit cell marked by dashed lines, the different interaction types |
| marked by color and the numbering of the single sites inside one |
| unit cell block shown. |
| |
| Structure of the Maple-Leaf lattice with the smallest possible unit cell |
| marked by dashed lines, the different interaction types marked by color |
| and the numbering of the single sites inside one unit cell block shown. |
| |
| \\ |
| |
| Args: |
| green_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| blue_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| red_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| real_d (:obj:`int`): |
| Physical dimension of a single site before mapping. |
| normalization_factor (:obj:`int`): |
| Factor which should be used to normalize the calculated values. |
| Likely will be 6 for the a single layer structure. |
| is_spiral_peps (:obj:`bool`): |
| Flag if the expectation value is for a spiral iPEPS ansatz. |
| spiral_unitary_operator (:obj:`jax.numpy.ndarray`): |
| Operator used to generate unitary for spiral iPEPS ansatz. Required |
| if spiral iPEPS ansatz is used. |
| """ |
|
|
| green_gates: Sequence[jnp.ndarray] |
| blue_gates: Sequence[jnp.ndarray] |
| red_gates: Sequence[jnp.ndarray] |
| real_d: int |
| normalization_factor: int = 6 |
|
|
| is_spiral_peps: bool = False |
| spiral_unitary_operator: Optional[jnp.ndarray] = None |
|
|
| def __post_init__(self) -> None: |
| if isinstance(self.green_gates, jnp.ndarray): |
| self.green_gates = (self.green_gates,) |
|
|
| if isinstance(self.blue_gates, jnp.ndarray): |
| self.blue_gates = (self.blue_gates,) |
|
|
| if isinstance(self.red_gates, jnp.ndarray): |
| self.red_gates = (self.red_gates,) |
|
|
| if (len(self.green_gates) != len(self.blue_gates)) or ( |
| len(self.green_gates) != len(self.red_gates) |
| ): |
| raise ValueError("Lengths of gate lists mismatch.") |
|
|
| tmp_result = _calc_onsite_gate( |
| self.green_gates, |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.green_gates), |
| ) |
| self._full_onsite_tuple, self._onsite_single_gates = tuple( |
| tmp_result[0] |
| ), tuple(tmp_result[1]) |
|
|
| tmp_result = _calc_right_gate( |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.blue_gates), |
| ) |
| self._right_tuple, self._right_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| tmp_result = _calc_down_gate( |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.blue_gates), |
| ) |
| self._down_tuple, self._down_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| tmp_result = _calc_diagonal_gate( |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.blue_gates), |
| ) |
| self._diagonal_tuple, self._diagonal_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| self._result_type = ( |
| jnp.float64 |
| if all(jnp.allclose(g, g.T.conj()) for g in self.green_gates) |
| and all(jnp.allclose(g, g.T.conj()) for g in self.blue_gates) |
| and all(jnp.allclose(g, g.T.conj()) for g in self.red_gates) |
| else jnp.complex128 |
| ) |
|
|
| if self.is_spiral_peps: |
| self._spiral_D, self._spiral_sigma = jnp.linalg.eigh( |
| self.spiral_unitary_operator |
| ) |
|
|
| def __call__( |
| self, |
| peps_tensors: Sequence[jnp.ndarray], |
| unitcell: PEPS_Unit_Cell, |
| spiral_vectors: Optional[Union[jnp.ndarray, Sequence[jnp.ndarray]]] = None, |
| *, |
| normalize_by_size: bool = True, |
| only_unique: bool = True, |
| return_single_gate_results: bool = False, |
| ) -> Union[jnp.ndarray, List[jnp.ndarray]]: |
| result = [ |
| jnp.array(0, dtype=self._result_type) for _ in range(len(self.green_gates)) |
| ] |
|
|
| if return_single_gate_results: |
| single_gates_result = [dict()] * len(self.green_gates) |
|
|
| working_onsite_gates = tuple(o for e in self._onsite_single_gates for o in e) |
|
|
| if self.is_spiral_peps: |
| if isinstance(spiral_vectors, jnp.ndarray): |
| spiral_vectors = ( |
| spiral_vectors, |
| spiral_vectors, |
| spiral_vectors, |
| spiral_vectors, |
| ) |
| if len(spiral_vectors) == 1: |
| spiral_vectors = ( |
| spiral_vectors[0], |
| spiral_vectors[0], |
| None, |
| None, |
| spiral_vectors[0], |
| spiral_vectors[0], |
| ) |
| if len(spiral_vectors) == 4: |
| spiral_vectors = ( |
| spiral_vectors[0], |
| spiral_vectors[1], |
| None, |
| None, |
| spiral_vectors[2], |
| spiral_vectors[3], |
| ) |
| if len(spiral_vectors) != 6: |
| raise ValueError("Length mismatch for spiral vectors!") |
|
|
| working_h_gates = tuple( |
| apply_unitary( |
| h, |
| jnp.array((0, 1)), |
| spiral_vectors[:2], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for h in self._right_tuple |
| ) |
| working_v_gates = tuple( |
| apply_unitary( |
| v, |
| jnp.array((1, 0)), |
| spiral_vectors[4:], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for v in self._down_tuple |
| ) |
| working_d_gates = tuple( |
| apply_unitary( |
| d, |
| jnp.array((1, 1)), |
| spiral_vectors[:1], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (2,), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for d in self._diagonal_tuple |
| ) |
|
|
| if return_single_gate_results: |
| working_h_single_gates = tuple( |
| apply_unitary( |
| h, |
| jnp.array((0, 1)), |
| spiral_vectors[:2], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._right_single_gates |
| for h in e |
| ) |
| working_v_single_gates = tuple( |
| apply_unitary( |
| v, |
| jnp.array((1, 0)), |
| spiral_vectors[4:], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._down_single_gates |
| for v in e |
| ) |
| working_d_single_gates = tuple( |
| apply_unitary( |
| d, |
| jnp.array((1, 1)), |
| spiral_vectors[:1], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (2,), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._diagonal_single_gates |
| for d in e |
| ) |
| else: |
| working_h_gates = self._right_tuple |
| working_v_gates = self._down_tuple |
| working_d_gates = self._diagonal_tuple |
|
|
| if return_single_gate_results: |
| working_h_single_gates = tuple( |
| h for e in self._right_single_gates for h in e |
| ) |
| working_v_single_gates = tuple( |
| v for e in self._down_single_gates for v in e |
| ) |
| working_d_single_gates = tuple( |
| d for e in self._diagonal_single_gates for d in e |
| ) |
|
|
| for x, iter_rows in unitcell.iter_all_rows(only_unique=only_unique): |
| for y, view in iter_rows: |
| |
| if len(self.green_gates) > 0: |
| onsite_tensor = peps_tensors[view.get_indices((0, 0))[0][0]] |
| onsite_tensor_obj = view[0, 0][0][0] |
|
|
| if return_single_gate_results: |
| step_result_onsite = calc_one_site_multi_gates( |
| onsite_tensor, |
| onsite_tensor_obj, |
| self._full_onsite_tuple + working_onsite_gates, |
| ) |
| else: |
| step_result_onsite = calc_one_site_multi_gates( |
| onsite_tensor, |
| onsite_tensor_obj, |
| self._full_onsite_tuple, |
| ) |
|
|
| horizontal_tensors_i = view.get_indices((0, slice(0, 2, None))) |
| horizontal_tensors = [ |
| peps_tensors[i] for j in horizontal_tensors_i for i in j |
| ] |
| horizontal_tensor_objs = [t for tl in view[0, :2] for t in tl] |
| ( |
| density_matrix_left, |
| density_matrix_right, |
| ) = partially_traced_horizontal_two_site_density_matrices( |
| horizontal_tensors, |
| horizontal_tensor_objs, |
| self.real_d, |
| 6, |
| ((6,), (1, 2)), |
| ) |
|
|
| if return_single_gate_results: |
| step_result_horizontal = _two_site_workhorse( |
| density_matrix_left, |
| density_matrix_right, |
| working_h_gates + working_h_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_horizontal = _two_site_workhorse( |
| density_matrix_left, |
| density_matrix_right, |
| working_h_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| vertical_tensors_i = view.get_indices((slice(0, 2, None), 0)) |
| vertical_tensors = [ |
| peps_tensors[i] for j in vertical_tensors_i for i in j |
| ] |
| vertical_tensor_objs = [t for tl in view[:2, 0] for t in tl] |
| ( |
| density_matrix_top, |
| density_matrix_bottom, |
| ) = partially_traced_vertical_two_site_density_matrices( |
| vertical_tensors, |
| vertical_tensor_objs, |
| self.real_d, |
| 6, |
| ((3,), (5, 6)), |
| ) |
|
|
| if return_single_gate_results: |
| step_result_vertical = _two_site_workhorse( |
| density_matrix_top, |
| density_matrix_bottom, |
| working_v_gates + working_v_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_vertical = _two_site_workhorse( |
| density_matrix_top, |
| density_matrix_bottom, |
| working_v_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| diagonal_tensors_i = view.get_indices( |
| (slice(0, 2, None), slice(0, 2, None)) |
| ) |
| diagonal_tensors = [ |
| peps_tensors[i] for j in diagonal_tensors_i for i in j |
| ] |
| diagonal_tensor_objs = [t for tl in view[:2, :2] for t in tl] |
| ( |
| density_matrix_top_left, |
| traced_density_matrix_top_right, |
| traced_density_matrix_bottom_left, |
| density_matrix_bottom_right, |
| ) = partially_traced_four_site_density_matrices( |
| diagonal_tensors, |
| diagonal_tensor_objs, |
| self.real_d, |
| 6, |
| ((3, 4), (), (), (1,)), |
| ) |
|
|
| if return_single_gate_results: |
| step_result_diagonal = _two_site_diagonal_workhorse( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| traced_density_matrix_top_right, |
| traced_density_matrix_bottom_left, |
| working_d_gates + working_d_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_diagonal = _two_site_diagonal_workhorse( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| traced_density_matrix_top_right, |
| traced_density_matrix_bottom_left, |
| working_d_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| for sr_i, (sr_o, sr_h, sr_v, sr_d) in enumerate( |
| zip( |
| step_result_onsite[: len(self.green_gates)], |
| step_result_horizontal[: len(self.green_gates)], |
| step_result_vertical[: len(self.green_gates)], |
| step_result_diagonal[: len(self.green_gates)], |
| strict=True, |
| ) |
| ): |
| result[sr_i] += sr_o + sr_h + sr_v + sr_d |
|
|
| if return_single_gate_results: |
| for sr_i in range(len(self.green_gates)): |
| index_onsite = ( |
| len(self.green_gates) |
| + len(self._onsite_single_gates[0]) * sr_i |
| ) |
| index_horizontal = ( |
| len(self.green_gates) |
| + len(self._right_single_gates[0]) * sr_i |
| ) |
| index_vertical = ( |
| len(self.green_gates) |
| + len(self._down_single_gates[0]) * sr_i |
| ) |
| index_diagonal = ( |
| len(self.green_gates) |
| + len(self._diagonal_single_gates[0]) * sr_i |
| ) |
|
|
| single_gates_result[sr_i][(x, y)] = dict( |
| zip( |
| ( |
| "green_12", |
| "green_34", |
| "green_56", |
| "blue_15", |
| "blue_23", |
| "blue_46", |
| "red_24", |
| "red_25", |
| "red_45", |
| "red_61", |
| "blue_62", |
| "blue_35", |
| "red_36", |
| "blue_41", |
| "red_31", |
| ), |
| ( |
| step_result_onsite[ |
| index_onsite : ( |
| index_onsite |
| + len(self._onsite_single_gates[0]) |
| ) |
| ] |
| + step_result_horizontal[ |
| index_horizontal : ( |
| index_horizontal |
| + len(self._right_single_gates[0]) |
| ) |
| ] |
| + step_result_vertical[ |
| index_vertical : ( |
| index_vertical |
| + len(self._down_single_gates[0]) |
| ) |
| ] |
| + step_result_diagonal[ |
| index_diagonal : ( |
| index_diagonal |
| + len(self._diagonal_single_gates[0]) |
| ) |
| ] |
| ), |
| ) |
| ) |
|
|
| if normalize_by_size: |
| if only_unique: |
| size = unitcell.get_len_unique_tensors() |
| else: |
| size = unitcell.get_size()[0] * unitcell.get_size()[1] |
| size = size * self.normalization_factor |
| result = [r / size for r in result] |
|
|
| if len(result) == 1: |
| result = result[0] |
|
|
| if return_single_gate_results: |
| return result, single_gates_result |
| else: |
| return result |
|
|
| def save_to_group(self, grp: h5py.Group): |
| cls = type(self) |
| grp.attrs["class"] = f"{cls.__module__}.{cls.__qualname__}" |
|
|
| grp_gates = grp.create_group("gates", track_order=True) |
| grp_gates.attrs["len"] = len(self.green_gates) |
| for i, (g_g, b_g, r_g) in enumerate( |
| zip(self.green_gates, self.blue_gates, self.red_gates, strict=True) |
| ): |
| grp_gates.create_dataset( |
| f"green_gate_{i:d}", |
| data=g_g, |
| compression="gzip", |
| compression_opts=6, |
| ) |
| grp_gates.create_dataset( |
| f"blue_gate_{i:d}", data=b_g, compression="gzip", compression_opts=6 |
| ) |
| grp_gates.create_dataset( |
| f"red_gate_{i:d}", data=r_g, compression="gzip", compression_opts=6 |
| ) |
|
|
| grp.attrs["real_d"] = self.real_d |
| grp.attrs["normalization_factor"] = self.normalization_factor |
| grp.attrs["is_spiral_peps"] = self.is_spiral_peps |
|
|
| if self.is_spiral_peps: |
| grp.create_dataset( |
| "spiral_unitary_operator", |
| data=self.spiral_unitary_operator, |
| compression="gzip", |
| compression_opts=6, |
| ) |
|
|
| @classmethod |
| def load_from_group(cls, grp: h5py.Group): |
| if not grp.attrs["class"] == f"{cls.__module__}.{cls.__qualname__}": |
| raise ValueError( |
| "The HDF5 group suggests that this is not the right class to load data from it." |
| ) |
|
|
| green_gates = tuple( |
| jnp.asarray(grp["gates"][f"green_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
| blue_gates = tuple( |
| jnp.asarray(grp["gates"][f"blue_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
| red_gates = tuple( |
| jnp.asarray(grp["gates"][f"red_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
|
|
| is_spiral_peps = grp.attrs["is_spiral_peps"] |
|
|
| if is_spiral_peps: |
| spiral_unitary_operator = jnp.asarray(grp["spiral_unitary_operator"]) |
| else: |
| spiral_unitary_operator = None |
|
|
| return cls( |
| green_gates=green_gates, |
| blue_gates=blue_gates, |
| red_gates=red_gates, |
| real_d=grp.attrs["real_d"], |
| normalization_factor=grp.attrs["normalization_factor"], |
| is_spiral_peps=is_spiral_peps, |
| spiral_unitary_operator=spiral_unitary_operator, |
| ) |
|
|
|
|
| @dataclass |
| class Maple_Leaf_Map_PESS_To_PEPS(Map_To_PEPS_Model): |
| """ |
| Map a iPESS structure of the Maple Leaf to a PEPS unitcell. |
| The convention for the input tensors is: |
| |
| Convention for physical site tensors: |
| * t1: [physical, down simplex, up simplex] |
| * t2: [physical, down simplex, up simplex] |
| * t3: [physical, up simplex, down simplex] |
| |
| Convention for simplex tensors: |
| * up: [t1, t2, t3] |
| * down: [t3, t2, t1] |
| |
| Args: |
| unitcell_structure (:term:`sequence` of :term:`sequence` of :obj:`int` or 2d array): |
| Two dimensional array modeling the structure of the unit cell. For |
| details see the description of :obj:`~varipeps.peps.PEPS_Unit_Cell`. |
| chi (:obj:`int`): |
| Bond dimension of environment tensors which should be used for the |
| unit cell generated. |
| max_chi (:obj:`int`): |
| Maximal allowed bond dimension of environment tensors which should be |
| used for the unit cell generated. |
| """ |
|
|
| unitcell_structure: Sequence[Sequence[int]] |
| chi: int |
| max_chi: Optional[int] = None |
|
|
| @staticmethod |
| def _map_single_structure( |
| t1: jnp.ndarray, |
| t2: jnp.ndarray, |
| t3: jnp.ndarray, |
| up: jnp.ndarray, |
| down: jnp.ndarray, |
| ): |
| tensor = apply_contraction( |
| "maple_leaf_pess_mapping", |
| [], |
| [], |
| [t1, t2, t3, up, down], |
| ) |
|
|
| return tensor.reshape( |
| t1.shape[1], |
| t2.shape[1], |
| t1.shape[0] * t2.shape[0] * t3.shape[0], |
| down.shape[2], |
| down.shape[1], |
| ) |
|
|
| def __call__( |
| self, |
| input_tensors: Sequence[jnp.ndarray], |
| *, |
| generate_unitcell: bool = True, |
| ) -> Union[List[jnp.ndarray], Tuple[List[jnp.ndarray], PEPS_Unit_Cell]]: |
| num_peps_sites = len(input_tensors) // 5 |
| if num_peps_sites * 5 != len(input_tensors): |
| raise ValueError( |
| "Input tensors seems not be a list for a maple leaf simplex system." |
| ) |
|
|
| peps_tensors = [ |
| self._map_single_structure(*(input_tensors[(i * 5) : (i * 5 + 5)])) |
| for i in range(num_peps_sites) |
| ] |
|
|
| if generate_unitcell: |
| peps_tensor_objs = [ |
| PEPS_Tensor.from_tensor( |
| i, |
| i.shape[2], |
| (i.shape[0], i.shape[1], i.shape[3], i.shape[4]), |
| self.chi, |
| self.max_chi, |
| ) |
| for i in peps_tensors |
| ] |
| unitcell = PEPS_Unit_Cell.from_tensor_list( |
| peps_tensor_objs, self.unitcell_structure |
| ) |
|
|
| return peps_tensors, unitcell |
|
|
| return peps_tensors |
|
|
| @classmethod |
| def random( |
| cls: Type[T_Maple_Leaf_Map_PESS_To_PEPS], |
| structure: Sequence[Sequence[int]], |
| d: int, |
| D: int, |
| chi: Union[int, Sequence[int]], |
| dtype: Type[jnp.number], |
| max_chi: int, |
| *, |
| seed: Optional[int] = None, |
| destroy_random_state: bool = True, |
| ) -> Tuple[List[jnp.ndarray], T_Maple_Leaf_Map_PESS_To_PEPS]: |
| structure_arr = jnp.asarray(structure) |
|
|
| structure_arr, tensors_i = PEPS_Unit_Cell._check_structure(structure_arr) |
|
|
| |
| if not isinstance(d, int): |
| raise ValueError("d has to be a single integer.") |
|
|
| if not isinstance(D, int): |
| raise ValueError("D has to be a single integer.") |
|
|
| if not isinstance(chi, int): |
| raise ValueError("chi has to be a single integer.") |
|
|
| |
| if destroy_random_state: |
| PEPS_Random_Number_Generator.destroy_state() |
|
|
| rng = PEPS_Random_Number_Generator.get_generator(seed, backend="jax") |
|
|
| result_tensors = [] |
|
|
| for i in tensors_i: |
| result_tensors.append(rng.block((d, D, D), dtype=dtype)) |
| result_tensors.append(rng.block((d, D, D), dtype=dtype)) |
| result_tensors.append(rng.block((d, D, D), dtype=dtype)) |
| result_tensors.append(rng.block((D, D, D), dtype=dtype)) |
| result_tensors.append(rng.block((D, D, D), dtype=dtype)) |
|
|
| return result_tensors, cls( |
| unitcell_structure=structure, chi=chi, max_chi=max_chi |
| ) |
|
|
| @classmethod |
| def save_to_file( |
| cls: Type[T_Maple_Leaf_Map_PESS_To_PEPS], |
| path: PathLike, |
| tensors: List[jnp.ndarray], |
| unitcell: PEPS_Unit_Cell, |
| *, |
| store_config: bool = True, |
| auxiliary_data: Optional[Dict[str, Any]] = None, |
| ) -> None: |
| """ |
| Save Maple-Leaf PESS tensors and unit cell to a HDF5 file. |
| |
| This function creates a single group "maple_leaf_pess" in the file |
| and pass this group to the method |
| :obj:`~Maple_Leaf_Map_PESS_To_PEPS.save_to_group` then. |
| |
| Args: |
| path (:obj:`os.PathLike`): |
| Path of the new file. Caution: The file will overwritten if existing. |
| tensors (:obj:`list` of :obj:`jax.numpy.ndarray`): |
| List with the PEPS tensors which should be stored in the file. |
| unitcell (:obj:`~varipeps.peps.PEPS_Unit_Cell`): |
| Full unit cell object which should be stored in the file. |
| Keyword args: |
| store_config (:obj:`bool`): |
| Store the current values of the global config object into the HDF5 |
| file as attrs of an extra group. |
| auxiliary_data (:obj:`dict` with :obj:`str` to storable objects, optional): |
| Dictionary with string indexed auxiliary HDF5-storable entries which |
| should be stored along the other data in the file. |
| """ |
| with h5py.File(path, "w", libver=("earliest", "v110")) as f: |
| grp = f.create_group("maple_leaf_pess") |
|
|
| cls.save_to_group(grp, tensors, unitcell, store_config=store_config) |
|
|
| if auxiliary_data is not None: |
| grp_aux = f.create_group("auxiliary_data") |
|
|
| grp_aux.attrs["keys"] = list(auxiliary_data.keys()) |
|
|
| for key, val in auxiliary_data.items(): |
| if key == "keys": |
| raise ValueError( |
| "Name 'keys' forbidden as name for auxiliary data" |
| ) |
|
|
| if isinstance( |
| val, (jnp.ndarray, np.ndarray, collections.abc.Sequence) |
| ): |
| try: |
| if val.ndim == 0: |
| val = val.reshape(1) |
| except AttributeError: |
| pass |
|
|
| grp_aux.create_dataset( |
| key, |
| data=jnp.asarray(val), |
| compression="gzip", |
| compression_opts=6, |
| ) |
| else: |
| grp_aux.attrs[key] = val |
|
|
| @staticmethod |
| def save_to_group( |
| grp: h5py.Group, |
| tensors: List[jnp.ndarray], |
| unitcell: PEPS_Unit_Cell, |
| *, |
| store_config: bool = True, |
| ) -> None: |
| """ |
| Save unit cell to a HDF5 group which is be passed to the method. |
| |
| Args: |
| grp (:obj:`h5py.Group`): |
| HDF5 group object to store the data into. |
| tensors (:obj:`list` of :obj:`jax.numpy.ndarray`): |
| List with the PEPS tensors which should be stored in the file. |
| unitcell (:obj:`~varipeps.peps.PEPS_Unit_Cell`): |
| Full unit cell object which should be stored in the file. |
| Keyword args: |
| store_config (:obj:`bool`): |
| Store the current values of the global config object into the HDF5 |
| file as attrs of an extra group. |
| """ |
| num_peps_sites = len(tensors) // 5 |
| if num_peps_sites * 5 != len(tensors): |
| raise ValueError( |
| "Input tensors seems not be a list for a maple leaf simplex system." |
| ) |
|
|
| grp_pess = grp.create_group("pess_tensors", track_order=True) |
| grp_pess.attrs["num_peps_sites"] = num_peps_sites |
|
|
| for i in range(num_peps_sites): |
| t1, t2, t3, up, down = tensors[(i * 5) : (i * 5 + 5)] |
|
|
| grp_pess.create_dataset( |
| f"site{i}_t1", data=t1, compression="gzip", compression_opts=6 |
| ) |
| grp_pess.create_dataset( |
| f"site{i}_t2", data=t2, compression="gzip", compression_opts=6 |
| ) |
| grp_pess.create_dataset( |
| f"site{i}_t3", data=t3, compression="gzip", compression_opts=6 |
| ) |
| grp_pess.create_dataset( |
| f"site{i}_up", |
| data=up, |
| compression="gzip", |
| compression_opts=6, |
| ) |
| grp_pess.create_dataset( |
| f"site{i}_down", |
| data=down, |
| compression="gzip", |
| compression_opts=6, |
| ) |
|
|
| grp_unitcell = grp.create_group("unitcell") |
| unitcell.save_to_group(grp_unitcell, store_config=store_config) |
|
|
| @classmethod |
| def load_from_file( |
| cls: Type[T_Maple_Leaf_Map_PESS_To_PEPS], |
| path: PathLike, |
| *, |
| return_config: bool = False, |
| return_auxiliary_data: bool = False, |
| ) -> Union[ |
| Tuple[List[jnp.ndarray], PEPS_Unit_Cell], |
| Tuple[List[jnp.ndarray], PEPS_Unit_Cell, varipeps.config.VariPEPS_Config], |
| ]: |
| """ |
| Load Maple-Leaf PESS tensors and unit cell from a HDF5 file. |
| |
| This function read the group "maple_leaf_pess" from the file and pass |
| this group to the method |
| :obj:`~Maple_Leaf_Map_PESS_To_PEPS.load_from_group` then. |
| |
| Args: |
| path (:obj:`os.PathLike`): |
| Path of the HDF5 file. |
| Keyword args: |
| return_config (:obj:`bool`): |
| Return a config object initialized with the values from the HDF5 |
| files. If no config is stored in the file, just the data is returned. |
| Missing config flags in the file uses the default values from the |
| config object. |
| return_auxiliary_data (:obj:`bool`): |
| Return dictionary with string indexed auxiliary data which has been |
| should be stored along the other data in the file. |
| Returns: |
| :obj:`tuple`\ (:obj:`list`\ (:obj:`jax.numpy.ndarray`), :obj:`~varipeps.peps.PEPS_Unit_Cell`) or :obj:`tuple`\ (:obj:`list`\ (:obj:`jax.numpy.ndarray`), :obj:`~varipeps.peps.PEPS_Unit_Cell`, :obj:`~varipeps.config.VariPEPS_Config`): |
| The tuple with the list of the PESS tensors and the PEPS unitcell |
| is returned. If ``return_config = True``. the config is returned |
| as well. If ``return_auxiliary_data = True``. the auxiliary data is |
| returned as well. |
| """ |
| with h5py.File(path, "r") as f: |
| try: |
| out = cls.load_from_group( |
| f["maple_leaf_pess"], return_config=return_config |
| ) |
| except KeyError: |
| out = cls.load_from_group( |
| f["maple_lead_pess"], return_config=return_config |
| ) |
|
|
| auxiliary_data = {} |
| auxiliary_data_grp = f.get("auxiliary_data") |
| if auxiliary_data_grp is not None: |
| for k in auxiliary_data_grp.attrs["keys"]: |
| aux_d = auxiliary_data_grp.get(k) |
| if aux_d is None: |
| aux_d = auxiliary_data_grp.attrs[k] |
| else: |
| aux_d = jnp.asarray(aux_d) |
| auxiliary_data[k] = aux_d |
| else: |
| max_trunc_error_list = f.get("max_trunc_error_list") |
| if max_trunc_error_list is not None: |
| auxiliary_data["max_trunc_error_list"] = jnp.asarray( |
| max_trunc_error_list |
| ) |
|
|
| if return_config and return_auxiliary_data: |
| return out[0], out[1], out[2], auxiliary_data |
| elif return_config: |
| return out[0], out[1], out[2] |
| elif return_auxiliary_data: |
| return out[0], out[1], auxiliary_data |
|
|
| return out[0], out[1] |
|
|
| @staticmethod |
| def load_from_group( |
| grp: h5py.Group, |
| *, |
| return_config: bool = False, |
| ) -> Union[ |
| Tuple[List[jnp.ndarray], PEPS_Unit_Cell], |
| Tuple[List[jnp.ndarray], PEPS_Unit_Cell, varipeps.config.VariPEPS_Config], |
| ]: |
| """ |
| Load the unit cell from a HDF5 group which is be passed to the method. |
| |
| Args: |
| grp (:obj:`h5py.Group`): |
| HDF5 group object to load the data from. |
| Keyword args: |
| return_config (:obj:`bool`): |
| Return a config object initialized with the values from the HDF5 |
| files. If no config is stored in the file, just the data is returned. |
| Missing config flags in the file uses the default values from the |
| config object. |
| Returns: |
| :obj:`tuple`\ (:obj:`list`\ (:obj:`jax.numpy.ndarray`), :obj:`~varipeps.peps.PEPS_Unit_Cell`) or :obj:`tuple`\ (:obj:`list`\ (:obj:`jax.numpy.ndarray`), :obj:`~varipeps.peps.PEPS_Unit_Cell`, :obj:`~varipeps.config.VariPEPS_Config`): |
| The tuple with the list of the PESS tensors and the PEPS unitcell |
| is returned. If ``return_config = True``. the config is returned |
| as well. |
| """ |
| grp_pess = grp["pess_tensors"] |
| num_peps_sites = grp_pess.attrs["num_peps_sites"] |
|
|
| tensors = [] |
|
|
| for i in range(num_peps_sites): |
| tensors.append(jnp.asarray(grp_pess[f"site{i}_t1"])) |
| tensors.append(jnp.asarray(grp_pess[f"site{i}_t2"])) |
| tensors.append(jnp.asarray(grp_pess[f"site{i}_t3"])) |
| tensors.append(jnp.asarray(grp_pess[f"site{i}_up"])) |
| tensors.append(jnp.asarray(grp_pess[f"site{i}_down"])) |
|
|
| out = PEPS_Unit_Cell.load_from_group( |
| grp["unitcell"], return_config=return_config |
| ) |
|
|
| if return_config: |
| return tensors, out[0], out[1] |
|
|
| return tensors, out |
|
|
| @classmethod |
| def autosave_wrapper( |
| cls: Type[T_Maple_Leaf_Map_PESS_To_PEPS], |
| filename: PathLike, |
| tensors: jnp.ndarray, |
| unitcell: PEPS_Unit_Cell, |
| counter: Optional[int] = None, |
| auxiliary_data: Optional[Dict[str, Any]] = None, |
| ) -> None: |
| if counter is not None: |
| cls.save_to_file( |
| f"{str(filename)}.{counter}", |
| tensors, |
| unitcell, |
| auxiliary_data=auxiliary_data, |
| ) |
| else: |
| cls.save_to_file(filename, tensors, unitcell, auxiliary_data=auxiliary_data) |
|
|
|
|
| @dataclass |
| class Maple_Leaf_Triangular_CTMRG_Expectation_Value(Expectation_Model): |
| """ |
| Class to calculate expectation values for a mapped Maple-Leaf |
| structure. This version uses the triangular CTMRG as basis. |
| |
| Args: |
| green_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| blue_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| red_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| real_d (:obj:`int`): |
| Physical dimension of a single site before mapping. |
| normalization_factor (:obj:`int`): |
| Factor which should be used to normalize the calculated values. |
| Likely will be 6 for the a single layer structure. |
| is_spiral_peps (:obj:`bool`): |
| Flag if the expectation value is for a spiral iPEPS ansatz. |
| spiral_unitary_operator (:obj:`jax.numpy.ndarray`): |
| Operator used to generate unitary for spiral iPEPS ansatz. Required |
| if spiral iPEPS ansatz is used. |
| """ |
|
|
| green_gates: Sequence[jnp.ndarray] |
| blue_gates: Sequence[jnp.ndarray] |
| red_gates: Sequence[jnp.ndarray] |
| real_d: int |
| normalization_factor: int = 6 |
|
|
| is_spiral_peps: bool = False |
| spiral_unitary_operator: Optional[jnp.ndarray] = None |
|
|
| def __post_init__(self) -> None: |
| if isinstance(self.green_gates, jnp.ndarray): |
| self.green_gates = (self.green_gates,) |
|
|
| if isinstance(self.blue_gates, jnp.ndarray): |
| self.blue_gates = (self.blue_gates,) |
|
|
| if isinstance(self.red_gates, jnp.ndarray): |
| self.red_gates = (self.red_gates,) |
|
|
| if (len(self.green_gates) != len(self.blue_gates)) or ( |
| len(self.green_gates) != len(self.red_gates) |
| ): |
| raise ValueError("Lengths of gate lists mismatch.") |
|
|
| tmp_result = _calc_onsite_gate( |
| self.green_gates, |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.green_gates), |
| ) |
| self._full_onsite_tuple, self._onsite_single_gates = tuple( |
| tmp_result[0] |
| ), tuple(tmp_result[1]) |
|
|
| tmp_result = _calc_right_gate( |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.blue_gates), |
| ) |
| self._right_tuple, self._right_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| tmp_result = _calc_down_gate( |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.blue_gates), |
| ) |
| self._down_tuple, self._down_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| tmp_result = _calc_diagonal_gate( |
| self.blue_gates, |
| self.red_gates, |
| self.real_d, |
| len(self.blue_gates), |
| ) |
| self._diagonal_tuple, self._diagonal_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| self._result_type = ( |
| jnp.float64 |
| if all(jnp.allclose(g, g.T.conj()) for g in self.green_gates) |
| and all(jnp.allclose(g, g.T.conj()) for g in self.blue_gates) |
| and all(jnp.allclose(g, g.T.conj()) for g in self.red_gates) |
| else jnp.complex128 |
| ) |
|
|
| if self.is_spiral_peps: |
| self._spiral_D, self._spiral_sigma = jnp.linalg.eigh( |
| self.spiral_unitary_operator |
| ) |
|
|
| def __call__( |
| self, |
| peps_tensors: Sequence[jnp.ndarray], |
| unitcell: PEPS_Unit_Cell, |
| spiral_vectors: Optional[Union[jnp.ndarray, Sequence[jnp.ndarray]]] = None, |
| *, |
| normalize_by_size: bool = True, |
| only_unique: bool = True, |
| return_single_gate_results: bool = False, |
| ) -> Union[jnp.ndarray, List[jnp.ndarray]]: |
| result = [ |
| jnp.array(0, dtype=self._result_type) for _ in range(len(self.green_gates)) |
| ] |
|
|
| if return_single_gate_results: |
| single_gates_result = [dict()] * len(self.green_gates) |
|
|
| working_onsite_gates = tuple(o for e in self._onsite_single_gates for o in e) |
|
|
| if self.is_spiral_peps: |
| if isinstance(spiral_vectors, jnp.ndarray): |
| spiral_vectors = (spiral_vectors,) |
|
|
| working_h_gates = tuple( |
| apply_unitary( |
| h, |
| jnp.array((0, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for h in self._right_tuple |
| ) |
| working_v_gates = tuple( |
| apply_unitary( |
| v, |
| jnp.array((1, 0)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for v in self._down_tuple |
| ) |
| working_d_gates = tuple( |
| apply_unitary( |
| d, |
| jnp.array((1, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (2,), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for d in self._diagonal_tuple |
| ) |
|
|
| if return_single_gate_results: |
| working_h_single_gates = tuple( |
| apply_unitary( |
| h, |
| jnp.array((0, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._right_single_gates |
| for h in e |
| ) |
| working_v_single_gates = tuple( |
| apply_unitary( |
| v, |
| jnp.array((1, 0)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (1, 2), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._down_single_gates |
| for v in e |
| ) |
| working_d_single_gates = tuple( |
| apply_unitary( |
| d, |
| jnp.array((1, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 3, |
| (2,), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._diagonal_single_gates |
| for d in e |
| ) |
| else: |
| working_h_gates = self._right_tuple |
| working_v_gates = self._down_tuple |
| working_d_gates = self._diagonal_tuple |
|
|
| if return_single_gate_results: |
| working_h_single_gates = tuple( |
| h for e in self._right_single_gates for h in e |
| ) |
| working_v_single_gates = tuple( |
| v for e in self._down_single_gates for v in e |
| ) |
| working_d_single_gates = tuple( |
| d for e in self._diagonal_single_gates for d in e |
| ) |
|
|
| for x, iter_rows in unitcell.iter_all_rows(only_unique=only_unique): |
| for y, view in iter_rows: |
| |
| if len(self.green_gates) > 0: |
| onsite_tensor = peps_tensors[view.get_indices((0, 0))[0][0]] |
| onsite_tensor_obj = view[0, 0][0][0] |
|
|
| if return_single_gate_results: |
| step_result_onsite = calc_triangular_one_site( |
| onsite_tensor, |
| onsite_tensor_obj, |
| self._full_onsite_tuple + working_onsite_gates, |
| ) |
| else: |
| step_result_onsite = calc_triangular_one_site( |
| onsite_tensor, |
| onsite_tensor_obj, |
| self._full_onsite_tuple, |
| ) |
|
|
| horizontal_tensors_i = view.get_indices((0, slice(0, 2, None))) |
| horizontal_tensors = [ |
| peps_tensors[i] for j in horizontal_tensors_i for i in j |
| ] |
| horizontal_tensor_objs = [t for tl in view[0, :2] for t in tl] |
| ( |
| density_matrix_left, |
| density_matrix_right, |
| ) = partially_traced_horizontal_two_site_density_matrices_triangular( |
| horizontal_tensors, horizontal_tensor_objs, 2, 6, ((6,), (1, 2)) |
| ) |
|
|
| if return_single_gate_results: |
| step_result_horizontal = calc_triangular_two_sites_workhorse( |
| density_matrix_left, |
| density_matrix_right, |
| working_h_gates + working_h_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_horizontal = calc_triangular_two_sites_workhorse( |
| density_matrix_left, |
| density_matrix_right, |
| working_h_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| vertical_tensors_i = view.get_indices((slice(0, 2, None), 0)) |
| vertical_tensors = [ |
| peps_tensors[i] for j in vertical_tensors_i for i in j |
| ] |
| vertical_tensor_objs = [t for tl in view[:2, 0] for t in tl] |
| ( |
| density_matrix_top, |
| density_matrix_bottom, |
| ) = partially_traced_vertical_two_site_density_matrices_triangular( |
| vertical_tensors, vertical_tensor_objs, 2, 6, ((3,), (5, 6)) |
| ) |
|
|
| if return_single_gate_results: |
| step_result_vertical = calc_triangular_two_sites_workhorse( |
| density_matrix_top, |
| density_matrix_bottom, |
| working_v_gates + working_v_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_vertical = calc_triangular_two_sites_workhorse( |
| density_matrix_top, |
| density_matrix_bottom, |
| working_v_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| diagonal_tensors_i = view.get_indices( |
| (slice(0, 2, None), slice(0, 2, None)) |
| ) |
| diagonal_tensors = [ |
| peps_tensors[diagonal_tensors_i[0][0]], |
| peps_tensors[diagonal_tensors_i[1][1]], |
| ] |
| diagonal_tensor_objs = [view[0, 0][0][0], view[1, 1][0][0]] |
| ( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| ) = partially_traced_diagonal_two_site_density_matrices_triangular( |
| diagonal_tensors, |
| diagonal_tensor_objs, |
| 2, |
| 6, |
| ((3, 4), (1,)), |
| ) |
|
|
| if return_single_gate_results: |
| step_result_diagonal = calc_triangular_two_sites_workhorse( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| working_d_gates + working_d_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_diagonal = calc_triangular_two_sites_workhorse( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| working_d_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| for sr_i, (sr_o, sr_h, sr_v, sr_d) in enumerate( |
| zip( |
| step_result_onsite[: len(self.green_gates)], |
| step_result_horizontal[: len(self.green_gates)], |
| step_result_vertical[: len(self.green_gates)], |
| step_result_diagonal[: len(self.green_gates)], |
| strict=True, |
| ) |
| ): |
| result[sr_i] += sr_o + sr_h + sr_v + sr_d |
|
|
| if return_single_gate_results: |
| for sr_i in range(len(self.green_gates)): |
| index_onsite = ( |
| len(self.green_gates) |
| + len(self._onsite_single_gates[0]) * sr_i |
| ) |
| index_horizontal = ( |
| len(self.green_gates) |
| + len(self._right_single_gates[0]) * sr_i |
| ) |
| index_vertical = ( |
| len(self.green_gates) |
| + len(self._down_single_gates[0]) * sr_i |
| ) |
| index_diagonal = ( |
| len(self.green_gates) |
| + len(self._diagonal_single_gates[0]) * sr_i |
| ) |
|
|
| single_gates_result[sr_i][(x, y)] = dict( |
| zip( |
| ( |
| "green_12", |
| "green_34", |
| "green_56", |
| "blue_15", |
| "blue_23", |
| "blue_46", |
| "red_24", |
| "red_25", |
| "red_45", |
| "red_61", |
| "blue_62", |
| "blue_35", |
| "red_36", |
| "blue_41", |
| "red_31", |
| ), |
| ( |
| step_result_onsite[ |
| index_onsite : ( |
| index_onsite |
| + len(self._onsite_single_gates[0]) |
| ) |
| ] |
| + step_result_horizontal[ |
| index_horizontal : ( |
| index_horizontal |
| + len(self._right_single_gates[0]) |
| ) |
| ] |
| + step_result_vertical[ |
| index_vertical : ( |
| index_vertical |
| + len(self._down_single_gates[0]) |
| ) |
| ] |
| + step_result_diagonal[ |
| index_diagonal : ( |
| index_diagonal |
| + len(self._diagonal_single_gates[0]) |
| ) |
| ] |
| ), |
| ) |
| ) |
|
|
| if normalize_by_size: |
| if only_unique: |
| size = unitcell.get_len_unique_tensors() |
| else: |
| size = unitcell.get_size()[0] * unitcell.get_size()[1] |
| size = size * self.normalization_factor |
| result = [r / size for r in result] |
|
|
| if len(result) == 1: |
| result = result[0] |
|
|
| if return_single_gate_results: |
| return result, single_gates_result |
| else: |
| return result |
|
|
| def save_to_group(self, grp: h5py.Group): |
| cls = type(self) |
| grp.attrs["class"] = f"{cls.__module__}.{cls.__qualname__}" |
|
|
| grp_gates = grp.create_group("gates", track_order=True) |
| grp_gates.attrs["len"] = len(self.green_gates) |
| for i, (g_g, b_g, r_g) in enumerate( |
| zip(self.green_gates, self.blue_gates, self.red_gates, strict=True) |
| ): |
| grp_gates.create_dataset( |
| f"green_gate_{i:d}", |
| data=g_g, |
| compression="gzip", |
| compression_opts=6, |
| ) |
| grp_gates.create_dataset( |
| f"blue_gate_{i:d}", data=b_g, compression="gzip", compression_opts=6 |
| ) |
| grp_gates.create_dataset( |
| f"red_gate_{i:d}", data=r_g, compression="gzip", compression_opts=6 |
| ) |
|
|
| grp.attrs["real_d"] = self.real_d |
| grp.attrs["normalization_factor"] = self.normalization_factor |
| grp.attrs["is_spiral_peps"] = self.is_spiral_peps |
|
|
| if self.is_spiral_peps: |
| grp.create_dataset( |
| "spiral_unitary_operator", |
| data=self.spiral_unitary_operator, |
| compression="gzip", |
| compression_opts=6, |
| ) |
|
|
| @classmethod |
| def load_from_group(cls, grp: h5py.Group): |
| if not grp.attrs["class"] == f"{cls.__module__}.{cls.__qualname__}": |
| raise ValueError( |
| "The HDF5 group suggests that this is not the right class to load data from it." |
| ) |
|
|
| green_gates = tuple( |
| jnp.asarray(grp["gates"][f"green_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
| blue_gates = tuple( |
| jnp.asarray(grp["gates"][f"blue_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
| red_gates = tuple( |
| jnp.asarray(grp["gates"][f"red_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
|
|
| is_spiral_peps = grp.attrs["is_spiral_peps"] |
|
|
| if is_spiral_peps: |
| spiral_unitary_operator = jnp.asarray(grp["spiral_unitary_operator"]) |
| else: |
| spiral_unitary_operator = None |
|
|
| return cls( |
| green_gates=green_gates, |
| blue_gates=blue_gates, |
| red_gates=red_gates, |
| real_d=grp.attrs["real_d"], |
| normalization_factor=grp.attrs["normalization_factor"], |
| is_spiral_peps=is_spiral_peps, |
| spiral_unitary_operator=spiral_unitary_operator, |
| ) |
|
|
|
|
| @dataclass |
| class Maple_Leaf_Hexagon_Triangular_CTMRG_Expectation_Value(Expectation_Model): |
| """ |
| Class to calculate expectation values for a mapped Maple-Leaf |
| structure. This version uses the triangular CTMRG as basis. |
| |
| Args: |
| green_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| blue_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| red_gates (:term:`sequence` of :obj:`jax.numpy.ndarray`): |
| Sequence with the gates that should be applied to the green bonds as |
| shown in the image above. |
| real_d (:obj:`int`): |
| Physical dimension of a single site before mapping. |
| normalization_factor (:obj:`int`): |
| Factor which should be used to normalize the calculated values. |
| Likely will be 6 for the a single layer structure. |
| is_spiral_peps (:obj:`bool`): |
| Flag if the expectation value is for a spiral iPEPS ansatz. |
| spiral_unitary_operator (:obj:`jax.numpy.ndarray`): |
| Operator used to generate unitary for spiral iPEPS ansatz. Required |
| if spiral iPEPS ansatz is used. |
| """ |
|
|
| green_gates: Sequence[jnp.ndarray] |
| blue_gates: Sequence[jnp.ndarray] |
| red_gates: Sequence[jnp.ndarray] |
| real_d: int |
| normalization_factor: int = 6 |
|
|
| is_spiral_peps: bool = False |
| spiral_unitary_operator: Optional[jnp.ndarray] = None |
|
|
| def __post_init__(self) -> None: |
| if isinstance(self.green_gates, jnp.ndarray): |
| self.green_gates = (self.green_gates,) |
|
|
| if isinstance(self.blue_gates, jnp.ndarray): |
| self.blue_gates = (self.blue_gates,) |
|
|
| if isinstance(self.red_gates, jnp.ndarray): |
| self.red_gates = (self.red_gates,) |
|
|
| if (len(self.green_gates) != len(self.blue_gates)) or ( |
| len(self.green_gates) != len(self.red_gates) |
| ): |
| raise ValueError("Lengths of gate lists mismatch.") |
|
|
| tmp_result = _calc_onsite_gate_hexagon( |
| self.blue_gates, |
| self.real_d, |
| len(self.green_gates), |
| ) |
| self._full_onsite_tuple, self._onsite_single_gates = tuple( |
| tmp_result[0] |
| ), tuple(tmp_result[1]) |
|
|
| tmp_result = _calc_right_gate_hexagon( |
| self.red_gates, |
| self.green_gates, |
| self.real_d, |
| len(self.red_gates), |
| ) |
| self._right_tuple, self._right_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| tmp_result = _calc_down_gate_hexagon( |
| self.red_gates, |
| self.green_gates, |
| self.real_d, |
| len(self.red_gates), |
| ) |
| self._down_tuple, self._down_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| tmp_result = _calc_diagonal_gate_hexagon( |
| self.red_gates, |
| self.green_gates, |
| self.real_d, |
| len(self.red_gates), |
| ) |
| self._diagonal_tuple, self._diagonal_single_gates = tuple(tmp_result[0]), tuple( |
| tmp_result[1] |
| ) |
|
|
| self._result_type = ( |
| jnp.float64 |
| if all(jnp.allclose(g, g.T.conj()) for g in self.red_gates) |
| and all(jnp.allclose(g, g.T.conj()) for g in self.green_gates) |
| and all(jnp.allclose(g, g.T.conj()) for g in self.blue_gates) |
| else jnp.complex128 |
| ) |
|
|
| if self.is_spiral_peps: |
| self._spiral_D, self._spiral_sigma = jnp.linalg.eigh( |
| self.spiral_unitary_operator |
| ) |
|
|
| def __call__( |
| self, |
| peps_tensors: Sequence[jnp.ndarray], |
| unitcell: PEPS_Unit_Cell, |
| spiral_vectors: Optional[Union[jnp.ndarray, Sequence[jnp.ndarray]]] = None, |
| *, |
| normalize_by_size: bool = True, |
| only_unique: bool = True, |
| return_single_gate_results: bool = False, |
| ) -> Union[jnp.ndarray, List[jnp.ndarray]]: |
| result = [ |
| jnp.array(0, dtype=self._result_type) for _ in range(len(self.green_gates)) |
| ] |
|
|
| if return_single_gate_results: |
| single_gates_result = [dict()] * len(self.green_gates) |
|
|
| working_onsite_gates = tuple(o for e in self._onsite_single_gates for o in e) |
|
|
| if self.is_spiral_peps: |
| if isinstance(spiral_vectors, jnp.ndarray): |
| spiral_vectors = (spiral_vectors,) |
|
|
| working_h_gates = tuple( |
| apply_unitary( |
| h, |
| jnp.array((0, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 4, |
| (2, 3), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for h in self._right_tuple |
| ) |
| working_v_gates = tuple( |
| apply_unitary( |
| v, |
| jnp.array((1, 0)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 4, |
| (2, 3), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for v in self._down_tuple |
| ) |
| working_d_gates = tuple( |
| apply_unitary( |
| d, |
| jnp.array((1, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 4, |
| (2, 3), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for d in self._diagonal_tuple |
| ) |
|
|
| if return_single_gate_results: |
| working_h_single_gates = tuple( |
| apply_unitary( |
| h, |
| jnp.array((0, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 4, |
| (2, 3), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._right_single_gates |
| for h in e |
| ) |
| working_v_single_gates = tuple( |
| apply_unitary( |
| v, |
| jnp.array((1, 0)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 4, |
| (2, 3), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._down_single_gates |
| for v in e |
| ) |
| working_d_single_gates = tuple( |
| apply_unitary( |
| d, |
| jnp.array((1, 1)), |
| spiral_vectors[0], |
| self._spiral_D, |
| self._spiral_sigma, |
| self.real_d, |
| 4, |
| (2, 3), |
| varipeps_config.spiral_wavevector_type, |
| ) |
| for e in self._diagonal_single_gates |
| for d in e |
| ) |
| else: |
| working_h_gates = self._right_tuple |
| working_v_gates = self._down_tuple |
| working_d_gates = self._diagonal_tuple |
|
|
| if return_single_gate_results: |
| working_h_single_gates = tuple( |
| h for e in self._right_single_gates for h in e |
| ) |
| working_v_single_gates = tuple( |
| v for e in self._down_single_gates for v in e |
| ) |
| working_d_single_gates = tuple( |
| d for e in self._diagonal_single_gates for d in e |
| ) |
|
|
| for x, iter_rows in unitcell.iter_all_rows(only_unique=only_unique): |
| for y, view in iter_rows: |
| |
| if len(self.green_gates) > 0: |
| onsite_tensor = peps_tensors[view.get_indices((0, 0))[0][0]] |
| onsite_tensor_obj = view[0, 0][0][0] |
|
|
| if return_single_gate_results: |
| step_result_onsite = calc_triangular_one_site( |
| onsite_tensor, |
| onsite_tensor_obj, |
| self._full_onsite_tuple + working_onsite_gates, |
| ) |
| else: |
| step_result_onsite = calc_triangular_one_site( |
| onsite_tensor, |
| onsite_tensor_obj, |
| self._full_onsite_tuple, |
| ) |
|
|
| vertical_tensors_i = view.get_indices((slice(0, 2, None), 0)) |
| vertical_tensors = [ |
| peps_tensors[i] for j in vertical_tensors_i for i in j |
| ] |
| vertical_tensor_objs = [t for tl in view[:2, 0] for t in tl] |
| ( |
| density_matrix_top, |
| density_matrix_bottom, |
| ) = partially_traced_vertical_two_site_density_matrices_triangular( |
| vertical_tensors, vertical_tensor_objs, 2, 6, ((4, 5), (1, 2)) |
| ) |
|
|
| if return_single_gate_results: |
| step_result_vertical = calc_triangular_two_sites_workhorse( |
| density_matrix_top, |
| density_matrix_bottom, |
| working_v_gates + working_v_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_vertical = calc_triangular_two_sites_workhorse( |
| density_matrix_top, |
| density_matrix_bottom, |
| working_v_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| horizontal_tensors_i = view.get_indices((0, slice(0, 2, None))) |
| horizontal_tensors = [ |
| peps_tensors[i] for j in horizontal_tensors_i for i in j |
| ] |
| horizontal_tensor_objs = [t for tl in view[0, :2] for t in tl] |
| ( |
| density_matrix_left, |
| density_matrix_right, |
| ) = partially_traced_horizontal_two_site_density_matrices_triangular( |
| horizontal_tensors, |
| horizontal_tensor_objs, |
| 2, |
| 6, |
| ((2, 3), (5, 6)), |
| ) |
|
|
| if return_single_gate_results: |
| step_result_horizontal = calc_triangular_two_sites_workhorse( |
| density_matrix_left, |
| density_matrix_right, |
| working_h_gates + working_h_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_horizontal = calc_triangular_two_sites_workhorse( |
| density_matrix_left, |
| density_matrix_right, |
| working_h_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| diagonal_tensors_i = view.get_indices( |
| (slice(0, 2, None), slice(0, 2, None)) |
| ) |
| diagonal_tensors = [ |
| peps_tensors[diagonal_tensors_i[0][0]], |
| peps_tensors[diagonal_tensors_i[1][1]], |
| ] |
| diagonal_tensor_objs = [view[0, 0][0][0], view[1, 1][0][0]] |
| ( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| ) = partially_traced_diagonal_two_site_density_matrices_triangular( |
| diagonal_tensors, diagonal_tensor_objs, 2, 6, ((3, 4), (1, 6)) |
| ) |
|
|
| if return_single_gate_results: |
| step_result_diagonal = calc_triangular_two_sites_workhorse( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| working_d_gates + working_d_single_gates, |
| self._result_type is jnp.float64, |
| ) |
| else: |
| step_result_diagonal = calc_triangular_two_sites_workhorse( |
| density_matrix_top_left, |
| density_matrix_bottom_right, |
| working_d_gates, |
| self._result_type is jnp.float64, |
| ) |
|
|
| for sr_i, (sr_o, sr_h, sr_v, sr_d) in enumerate( |
| zip( |
| step_result_onsite[: len(self.green_gates)], |
| step_result_horizontal[: len(self.green_gates)], |
| step_result_vertical[: len(self.green_gates)], |
| step_result_diagonal[: len(self.green_gates)], |
| strict=True, |
| ) |
| ): |
| result[sr_i] += sr_o + sr_h + sr_v + sr_d |
|
|
| if return_single_gate_results: |
| for sr_i in range(len(self.green_gates)): |
| index_onsite = ( |
| len(self.green_gates) |
| + len(self._onsite_single_gates[0]) * sr_i |
| ) |
| index_horizontal = ( |
| len(self.green_gates) |
| + len(self._right_single_gates[0]) * sr_i |
| ) |
| index_vertical = ( |
| len(self.green_gates) |
| + len(self._down_single_gates[0]) * sr_i |
| ) |
| index_diagonal = ( |
| len(self.green_gates) |
| + len(self._diagonal_single_gates[0]) * sr_i |
| ) |
|
|
| single_gates_result[sr_i][(x, y)] = dict( |
| zip( |
| ( |
| "blue_12", |
| "blue_23", |
| "blue_34", |
| "blue_45", |
| "blue_56", |
| "blue_61", |
| "red_26", |
| "red_35", |
| "green_36", |
| "red_42", |
| "red_51", |
| "green_52", |
| "red_31", |
| "red_46", |
| "green_41", |
| ), |
| ( |
| step_result_onsite[ |
| index_onsite : ( |
| index_onsite |
| + len(self._onsite_single_gates[0]) |
| ) |
| ] |
| + step_result_horizontal[ |
| index_horizontal : ( |
| index_horizontal |
| + len(self._right_single_gates[0]) |
| ) |
| ] |
| + step_result_vertical[ |
| index_vertical : ( |
| index_vertical |
| + len(self._down_single_gates[0]) |
| ) |
| ] |
| + step_result_diagonal[ |
| index_diagonal : ( |
| index_diagonal |
| + len(self._diagonal_single_gates[0]) |
| ) |
| ] |
| ), |
| ) |
| ) |
|
|
| if normalize_by_size: |
| if only_unique: |
| size = unitcell.get_len_unique_tensors() |
| else: |
| size = unitcell.get_size()[0] * unitcell.get_size()[1] |
| size = size * self.normalization_factor |
| result = [r / size for r in result] |
|
|
| if len(result) == 1: |
| result = result[0] |
|
|
| if return_single_gate_results: |
| return result, single_gates_result |
| else: |
| return result |
|
|
| def save_to_group(self, grp: h5py.Group): |
| cls = type(self) |
| grp.attrs["class"] = f"{cls.__module__}.{cls.__qualname__}" |
|
|
| grp_gates = grp.create_group("gates", track_order=True) |
| grp_gates.attrs["len"] = len(self.green_gates) |
| for i, (g_g, b_g, r_g) in enumerate( |
| zip(self.green_gates, self.blue_gates, self.red_gates, strict=True) |
| ): |
| grp_gates.create_dataset( |
| f"green_gate_{i:d}", |
| data=g_g, |
| compression="gzip", |
| compression_opts=6, |
| ) |
| grp_gates.create_dataset( |
| f"blue_gate_{i:d}", data=b_g, compression="gzip", compression_opts=6 |
| ) |
| grp_gates.create_dataset( |
| f"red_gate_{i:d}", data=r_g, compression="gzip", compression_opts=6 |
| ) |
|
|
| grp.attrs["real_d"] = self.real_d |
| grp.attrs["normalization_factor"] = self.normalization_factor |
| grp.attrs["is_spiral_peps"] = self.is_spiral_peps |
|
|
| if self.is_spiral_peps: |
| grp.create_dataset( |
| "spiral_unitary_operator", |
| data=self.spiral_unitary_operator, |
| compression="gzip", |
| compression_opts=6, |
| ) |
|
|
| @classmethod |
| def load_from_group(cls, grp: h5py.Group): |
| if not grp.attrs["class"] == f"{cls.__module__}.{cls.__qualname__}": |
| raise ValueError( |
| "The HDF5 group suggests that this is not the right class to load data from it." |
| ) |
|
|
| green_gates = tuple( |
| jnp.asarray(grp["gates"][f"green_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
| blue_gates = tuple( |
| jnp.asarray(grp["gates"][f"blue_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
| red_gates = tuple( |
| jnp.asarray(grp["gates"][f"red_gate_{i:d}"]) |
| for i in range(grp["gates"].attrs["len"]) |
| ) |
|
|
| is_spiral_peps = grp.attrs["is_spiral_peps"] |
|
|
| if is_spiral_peps: |
| spiral_unitary_operator = jnp.asarray(grp["spiral_unitary_operator"]) |
| else: |
| spiral_unitary_operator = None |
|
|
| return cls( |
| green_gates=green_gates, |
| blue_gates=blue_gates, |
| red_gates=red_gates, |
| real_d=grp.attrs["real_d"], |
| normalization_factor=grp.attrs["normalization_factor"], |
| is_spiral_peps=is_spiral_peps, |
| spiral_unitary_operator=spiral_unitary_operator, |
| ) |
|
|