quimb.tensor.tensor_core¶
Core tensor network tools.
Attributes¶
Classes¶
A labelled, tagged n-dimensional array. The index labels are used |
|
A collection of (as yet uncontracted) Tensors. |
|
Get a linear operator - something that replicates the matrix-vector |
|
A tensor whose data array is lazily generated from a set of parameters |
|
A |
Functions¶
|
Non-variadic ordered set union taking any sequence of iterables. |
|
Parse a |
|
|
|
Generate the output, i.e. unique, indices from the set |
|
|
|
If |
|
Contract a collection of tensors into a scalar or tensor, automatically |
|
Return a guaranteed unique, shortish identifier, optional appended |
|
|
|
|
|
Decompose this tensor into two tensors. |
|
Inplace 'canonization' of two tensors. This gauges the bond between |
|
Choose default gauge settings for arbitrary geometry local compression. |
|
Inplace compress between the two single tensors. It follows the |
|
Gauge the bond between two tensors such that the norm of the 'columns' |
|
For tensors |
|
If two tensors share multibonds, fuse them together and return the left |
|
If |
|
Inplace addition of a new bond between tensors |
|
Helper function for padding tensor with random entries. |
|
Direct product of two arrays. |
|
Direct product of two Tensors. Any axes included in |
|
Sum of two tensor networks, whose indices should match exactly, using |
|
Getting any indices connecting the Tensor(s) or TensorNetwork(s) |
|
Get the size of the bonds linking tensors or tensor networks |
|
Group bonds into left only, shared, and right only. If |
|
Connect two tensors by setting a shared index for the specified |
|
Return all the tags in found in |
|
Maybe unwrap a |
|
|
|
Get the tensor representing the COPY operation with dimension size |
|
Get the set of MPS tensors representing the COPY tensor with dimension |
|
Get the set of tree tensors representing the COPY tensor with dimension |
|
|
|
|
|
|
|
|
|
Apply the 'gate' |
|
Register an __array_function__ implementation for TNLinearOperator |
|
Module Contents¶
- quimb.tensor.tensor_core.oset_union(xs)[source]¶
Non-variadic ordered set union taking any sequence of iterables.
- quimb.tensor.tensor_core._gen_output_inds(all_inds)[source]¶
Generate the output, i.e. unique, indices from the set
inds
. Raise if any index found more than twice.
- quimb.tensor.tensor_core._VALID_CONTRACT_GET¶
- quimb.tensor.tensor_core._tensor_contract_get_other(arrays, inds, inds_out, shapes, get, **contract_opts)[source]¶
- quimb.tensor.tensor_core.maybe_realify_scalar(data)[source]¶
If
data
is a numpy array, check if its complex with small imaginary part, and if so return only the real part, otherwise do nothing.
- quimb.tensor.tensor_core.tensor_contract(*tensors, output_inds=None, optimize=None, get=None, backend=None, preserve_tensor=False, drop_tags=False, **contract_opts)[source]¶
Contract a collection of tensors into a scalar or tensor, automatically aligning their indices and computing an optimized contraction path. The output tensor will have the union of tags from the input tensors.
- Parameters:
tensors (sequence of Tensor) – The tensors to contract.
output_inds (sequence of str) – The output indices. These can be inferred if the contraction has no ‘hyper’ indices, in which case the output indices are those that appear only once in the input indices, and ordered as they appear in the inputs. For hyper indices or a specific ordering, these must be supplied.
optimize (str, PathOptimizer, ContractionTree or path_like, optional) –
The contraction path optimization strategy to use.
None
: use the default strategy,str
: use the preset strategy with the given name,cotengra.HyperOptimizer
: find the contraction using this optimizer, supports slicing,opt_einsum.PathOptimizer
: find the path using this optimizer.cotengra.ContractionTree
: use this exact tree, supports slicing,path_like
: use this exact path.
Contraction with
cotengra
might be a bit more efficient but the main reason would be to handle sliced contraction automatically, as well as the fact that it usesautoray
internally.get (str, optional) –
What to return. If:
None
(the default) - return the resulting scalar or Tensor.'expression'
- return a callbable expression that performs the contraction and operates on the raw arrays.'tree'
- return thecotengra.ContractionTree
describing the contraction.'path'
- return the raw ‘path’ as a list of tuples.'symbol-map'
- return the dict mapping indices to ‘symbols’ (single unicode letters) used internally bycotengra
'path-info'
- return theopt_einsum.PathInfo
path object with detailed information such as flop cost. The symbol-map is also added to thequimb_symbol_map
attribute.
backend ({'auto', 'numpy', 'jax', 'cupy', 'tensorflow', ...}, optional) – Which backend to use to perform the contraction. Supplied to cotengra.
preserve_tensor (bool, optional) – Whether to return a tensor regardless of whether the output object is a scalar (has no indices) or not.
drop_tags (bool, optional) – Whether to drop all tags from the output tensor. By default the output tensor will keep the union of all tags from the input tensors.
contract_opts – Passed to
cotengra.array_contract
.
- Return type:
scalar or Tensor
- quimb.tensor.tensor_core._RAND_PREFIX¶
- quimb.tensor.tensor_core._RAND_ALPHABET¶
- quimb.tensor.tensor_core.RAND_UUIDS¶
- quimb.tensor.tensor_core.rand_uuid(base='')[source]¶
Return a guaranteed unique, shortish identifier, optional appended to
base
.Examples
>>> rand_uuid() '_2e1dae1b'
>>> rand_uuid('virt-bond') 'virt-bond_bf342e68'
- quimb.tensor.tensor_core._VALID_SPLIT_GET¶
- quimb.tensor.tensor_core._SPLIT_FNS¶
- quimb.tensor.tensor_core._SPLIT_VALUES_FNS¶
- quimb.tensor.tensor_core._FULL_SPLIT_METHODS¶
- quimb.tensor.tensor_core._RANK_HIDDEN_METHODS¶
- quimb.tensor.tensor_core._DENSE_ONLY_METHODS¶
- quimb.tensor.tensor_core._LEFT_ISOM_METHODS¶
- quimb.tensor.tensor_core._RIGHT_ISOM_METHODS¶
- quimb.tensor.tensor_core._ISOM_METHODS¶
- quimb.tensor.tensor_core._CUTOFF_LOOKUP¶
- quimb.tensor.tensor_core._ABSORB_LOOKUP¶
- quimb.tensor.tensor_core._MAX_BOND_LOOKUP¶
- quimb.tensor.tensor_core._CUTOFF_MODES¶
- quimb.tensor.tensor_core._RENORM_LOOKUP¶
- quimb.tensor.tensor_core._parse_split_opts(method, cutoff, absorb, max_bond, cutoff_mode, renorm)[source]¶
- quimb.tensor.tensor_core.tensor_split(T, left_inds, method='svd', get=None, absorb='both', max_bond=None, cutoff=1e-10, cutoff_mode='rel', renorm=None, ltags=None, rtags=None, stags=None, bond_ind=None, right_inds=None)[source]¶
Decompose this tensor into two tensors.
- Parameters:
T (Tensor or TNLinearOperator) – The tensor (network) to split.
left_inds (str or sequence of str) – The index or sequence of inds, which
T
should already have, to split to the ‘left’. You can supplyNone
here if you supplyright_inds
instead.method (str, optional) –
How to split the tensor, only some methods allow bond truncation:
'svd'
: full SVD, allows truncation.'eig'
: full SVD via eigendecomp, allows truncation.'lu'
: full LU decomposition, allows truncation. This method favors tensor sparsity but is not rank optimal.'svds'
: iterative svd, allows truncation.'isvd'
: iterative svd using interpolative methods, allows truncation.'rsvd'
: randomized iterative svd with truncation.'eigh'
: full eigen-decomposition, tensor must he hermitian.'eigsh'
: iterative eigen-decomposition, tensor must be hermitian.'qr'
: full QR decomposition.'lq'
: full LR decomposition.'polar_right'
: full polar decomposition asA = UP
.'polar_left'
: full polar decomposition asA = PU
.'cholesky'
: full cholesky decomposition, tensor must be positive.
get ({None, 'arrays', 'tensors', 'values'}) –
If given, what to return instead of a TN describing the split:
None
: a tensor network of the two (or three) tensors.'arrays'
: the raw data arrays as a tuple(l, r)
or(l, s, r)
depending onabsorb
.'tensors '
: the new tensors as a tuple(Tl, Tr)
or(Tl, Ts, Tr)
depending onabsorb
.'values'
: only compute and return the singular valuess
.
absorb ({'both', 'left', 'right', None}, optional) – Whether to absorb the singular values into both, the left, or the right unitary matrix respectively, or neither. If neither (
absorb=None
) then the singular values will be returned separately in their own 1D tensor or array. In that case ifget=None
the tensor network returned will have a hyperedge corresponding to the new bond index connecting three tensors. Ifget='tensors'
orget='arrays'
then a tuple like(left, s, right)
is returned.max_bond (None or int) – If integer, the maximum number of singular values to keep, regardless of
cutoff
.cutoff (float, optional) – The threshold below which to discard singular values, only applies to rank revealing methods (not QR, LQ, or cholesky).
cutoff_mode ({'sum2', 'rel', 'abs', 'rsum2'}) –
Method with which to apply the cutoff threshold:
'rel'
: values less thancutoff * s[0]
discarded.'abs'
: values less thancutoff
discarded.'sum2'
: sum squared of values discarded must be< cutoff
.'rsum2'
: sum squared of values discarded must be less thancutoff
times the total sum of squared values.'sum1'
: sum values discarded must be< cutoff
.'rsum1'
: sum of values discarded must be less thancutoff
times the total sum of values.
renorm ({None, bool, or int}, optional) – Whether to renormalize the kept singular values, assuming the bond has a canonical environment, corresponding to maintaining the frobenius or nuclear norm. If
None
(the default) then this is automatically turned on only forcutoff_method in {'sum2', 'rsum2', 'sum1', 'rsum1'}
withmethod in {'svd', 'eig', 'eigh'}
.ltags (sequence of str, optional) – Add these new tags to the left tensor.
rtags (sequence of str, optional) – Add these new tags to the right tensor.
stags (sequence of str, optional) – Add these new tags to the singular value tensor.
bond_ind (str, optional) – Explicitly name the new bond, else a random one will be generated.
right_inds (sequence of str, optional) – Explicitly give the right indices, otherwise they will be worked out. This is a minor performance feature.
- Returns:
Depending on if
get
isNone
,'tensors'
,'arrays'
, or'values'
. In the first three cases, ifabsorb
is set, then the returned objects correspond to(left, right)
whereas ifabsorb=None
the returned objects correspond to(left, singular_values, right)
.- Return type:
TensorNetwork or tuple[Tensor] or tuple[array] or 1D-array
- quimb.tensor.tensor_core.tensor_canonize_bond(T1, T2, absorb='right', gauges=None, gauge_smudge=1e-06, **split_opts)[source]¶
Inplace ‘canonization’ of two tensors. This gauges the bond between the two such that
T1
is isometric:| | | | | | --1---2-- => -->~R-2-- => -->~~~O-- | | | | | | . ... <QR> contract
- Parameters:
T1 (Tensor) – The tensor to be isometrized.
T2 (Tensor) – The tensor to absorb the R-factor into.
absorb ({'right', 'left', 'both', None}, optional) – Which tensor to effectively absorb the singular values into.
split_opts – Supplied to
tensor_split()
, with modified defaults ofmethod=='qr'
andabsorb='right'
.
- quimb.tensor.tensor_core.choose_local_compress_gauge_settings(canonize=True, tree_gauge_distance=None, canonize_distance=None, canonize_after_distance=None, mode='auto')[source]¶
Choose default gauge settings for arbitrary geometry local compression.
- quimb.tensor.tensor_core.tensor_compress_bond(T1, T2, reduced=True, absorb='both', gauges=None, gauge_smudge=1e-06, info=None, **compress_opts)[source]¶
Inplace compress between the two single tensors. It follows the following steps (by default) to minimize the size of SVD performed:
a)│ │ b)│ │ c)│ │ ━━●━━━●━━ -> ━━>━━○━━○━━<━━ -> ━━>━━━M━━━<━━ │ │ │ .... │ │ │ <*> <*> contract <*> QR LQ -><- SVD d)│ │ e)│ │ -> ━━>━━━ML──MR━━━<━━ -> ━━●───●━━ │.... ....│ │ │ contract contract ^compressed bond -><- -><-
- Parameters:
T1 (Tensor) – The left tensor.
T2 (Tensor) – The right tensor.
max_bond (int or None, optional) – The maxmimum bond dimension.
cutoff (float, optional) – The singular value cutoff to use.
reduced ({True, False, "left", "right"}, optional) – Whether to perform the QR reduction as above or not. If False, contract both tensors together and perform a single SVD. If ‘left’ or ‘right’ then just perform the svd on the left or right tensor respectively. This can still be optimal if the other tensor is already isometric, i.e. the pair are right or left canonical respectively.
absorb ({'both', 'left', 'right', None}, optional) – Where to absorb the singular values after decomposition.
info (None or dict, optional) – A dict for returning extra information such as the singular values.
compress_opts – Supplied to
tensor_split()
.
- quimb.tensor.tensor_core.tensor_balance_bond(t1, t2, smudge=1e-06)[source]¶
Gauge the bond between two tensors such that the norm of the ‘columns’ of the tensors on each side is the same for each index of the bond.
- quimb.tensor.tensor_core.tensor_multifuse(ts, inds, gauges=None)[source]¶
For tensors
ts
which should all have indicesinds
, fuse the those bonds together, optionally updatinggauges
if present. Inplace operation.
- quimb.tensor.tensor_core.tensor_make_single_bond(t1, t2, gauges=None)[source]¶
If two tensors share multibonds, fuse them together and return the left indices, bond if it exists, and right indices. Handles simple
gauges
. Inplace operation.
- quimb.tensor.tensor_core.tensor_fuse_squeeze(t1, t2, squeeze=True, gauges=None)[source]¶
If
t1
andt2
share more than one bond fuse it, and if the size of the shared dimenion(s) is 1, squeeze it. Inplace operation.
- quimb.tensor.tensor_core.new_bond(T1, T2, size=1, name=None, axis1=0, axis2=0)[source]¶
Inplace addition of a new bond between tensors
T1
andT2
. The size of the new bond can be specified, in which case the new array parts will be filled with zeros.- Parameters:
T1 (Tensor) – First tensor to modify.
T2 (Tensor) – Second tensor to modify.
size (int, optional) – Size of the new dimension.
name (str, optional) – Name for the new index.
axis1 (int, optional) – Position on the first tensor for the new dimension.
axis2 (int, optional) – Position on the second tensor for the new dimension.
- quimb.tensor.tensor_core.rand_padder(vector, pad_width, iaxis, kwargs)[source]¶
Helper function for padding tensor with random entries.
- quimb.tensor.tensor_core.array_direct_product(X, Y, sum_axes=())[source]¶
Direct product of two arrays.
- Parameters:
X (numpy.ndarray) – First tensor.
Y (numpy.ndarray) – Second tensor, same shape as
X
.sum_axes (sequence of int) – Axes to sum over rather than direct product, e.g. physical indices when adding tensor networks.
- Returns:
Z – Same shape as
X
andY
, but with every dimension the sum of the two respective dimensions, unless it is included insum_axes
.- Return type:
- quimb.tensor.tensor_core.tensor_direct_product(T1, T2, sum_inds=(), inplace=False)[source]¶
Direct product of two Tensors. Any axes included in
sum_inds
must be the same size and will be summed over rather than concatenated. Summing over contractions of TensorNetworks equates to contracting a TensorNetwork made of direct products of each set of tensors. I.e. (a1 @ b1) + (a2 @ b2) == (a1 (+) a2) @ (b1 (+) b2).- Parameters:
- Returns:
Like
T1
, but with each dimension doubled in size if not insum_inds
.- Return type:
- quimb.tensor.tensor_core.tensor_network_sum(tnA, tnB, inplace=False)[source]¶
Sum of two tensor networks, whose indices should match exactly, using direct products.
- Parameters:
tnA (TensorNetwork) – The first tensor network.
tnB (TensorNetwork) – The second tensor network.
- Returns:
The sum of
tnA
andtnB
, with increased bond dimensions.- Return type:
- quimb.tensor.tensor_core.bonds(t1, t2)[source]¶
Getting any indices connecting the Tensor(s) or TensorNetwork(s)
t1
andt2
.
- quimb.tensor.tensor_core.bonds_size(t1, t2)[source]¶
Get the size of the bonds linking tensors or tensor networks
t1
andt2
.
- quimb.tensor.tensor_core.group_inds(t1, t2)[source]¶
Group bonds into left only, shared, and right only. If
t1
ort2
areTensorNetwork
objects, then only outer indices are considered.- Parameters:
t1 (Tensor or TensorNetwork) – The first tensor or tensor network.
t2 (Tensor or TensorNetwork) – The second tensor or tensor network.
- Returns:
left_inds (list[str]) – Indices only in
t1
.shared_inds (list[str]) – Indices in both
t1
andt2
.right_inds (list[str]) – Indices only in
t2
.
- quimb.tensor.tensor_core.connect(t1, t2, ax1, ax2)[source]¶
Connect two tensors by setting a shared index for the specified dimensions. This is an inplace operation that will also affect any tensor networks viewing these tensors.
- Parameters:
Examples
>>> X = rand_tensor([2, 3], inds=['a', 'b']) >>> Y = rand_tensor([3, 4], inds=['c', 'd'])
>>> tn = (X | Y) # is *view* of tensors (``&`` would copy them) >>> print(tn) TensorNetwork([ Tensor(shape=(2, 3), inds=('a', 'b'), tags=()), Tensor(shape=(3, 4), inds=('c', 'd'), tags=()), ])
>>> connect(X, Y, 1, 0) # modifies tensors *and* viewing TN >>> print(tn) TensorNetwork([ Tensor(shape=(2, 3), inds=('a', '_e9021e0000002'), tags=()), Tensor(shape=(3, 4), inds=('_e9021e0000002', 'd'), tags=()), ])
>>> tn ^ all Tensor(shape=(2, 4), inds=('a', 'd'), tags=())
- quimb.tensor.tensor_core.get_tags(ts)[source]¶
Return all the tags in found in
ts
.- Parameters:
ts (Tensor, TensorNetwork or sequence of either) – The objects to combine tags from.
- quimb.tensor.tensor_core.maybe_unwrap(t, preserve_tensor_network=False, preserve_tensor=False, equalize_norms=False, output_inds=None)[source]¶
Maybe unwrap a
TensorNetwork
orTensor
into aTensor
or scalar, depending on how many tensors and indices it has, optionally handling accrued exponent normalization and output index ordering (if a tensor).- Parameters:
t (Tensor or TensorNetwork) – The tensor or tensor network to unwrap.
preserve_tensor_network (bool, optional) – If
True
, then don’t unwrap aTensorNetwork
to aTensor
even if it has only one tensor.preserve_tensor (bool, optional) – If
True
, then don’t unwrap aTensor
to a scalar even if it has no indices.equalize_norms (bool, optional) – If
True
, then equalize the norms of all tensors in the tensor network before unwrapping.output_inds (sequence of str, optional) – If unwrapping a tensor, then transpose it to the specified indices.
- Return type:
TensorNetwork, Tensor or Number
- class quimb.tensor.tensor_core.Tensor(data=1.0, inds=(), tags=None, left_inds=None)[source]¶
A labelled, tagged n-dimensional array. The index labels are used instead of axis numbers to identify dimensions, and are preserved through operations. The tags are used to identify the tensor within networks, and are combined when tensors are contracted together.
- Parameters:
data (numpy.ndarray) – The n-dimensional data.
inds (sequence of str) – The index labels for each dimension. Must match the number of dimensions of
data
.tags (sequence of str, optional) – Tags with which to identify and group this tensor. These will be converted into a
oset
.left_inds (sequence of str, optional) – Which, if any, indices to group as ‘left’ indices of an effective matrix. This can be useful, for example, when automatically applying unitary constraints to impose a certain flow on a tensor network but at the atomistic (Tensor) level.
Examples
Basic construction:
>>> from quimb import randn >>> from quimb.tensor import Tensor >>> X = Tensor(randn((2, 3, 4)), inds=['a', 'b', 'c'], tags={'X'}) >>> Y = Tensor(randn((3, 4, 5)), inds=['b', 'c', 'd'], tags={'Y'})
Indices are automatically aligned, and tags combined, when contracting:
>>> X @ Y Tensor(shape=(2, 5), inds=('a', 'd'), tags={'Y', 'X'})
- __slots__ = ('_data', '_inds', '_tags', '_left_inds', '_owners')¶
- _owners¶
- get_params()[source]¶
A simple function that returns the ‘parameters’ of the underlying data array. This is mainly for providing an interface for ‘structured’ arrays e.g. with block sparsity to interact with optimization.
- set_params(params)[source]¶
A simple function that sets the ‘parameters’ of the underlying data array. This is mainly for providing an interface for ‘structured’ arrays e.g. with block sparsity to interact with optimization.
- copy(deep=False, virtual=False)[source]¶
Copy this tensor.
Note
By default (
deep=False
), the underlying array will not be copied.
- property data¶
- property inds¶
- property tags¶
- property left_inds¶
- property owners¶
- add_owner(tn, tid)[source]¶
Add
tn
as owner of this Tensor - it’s tag and ind maps will be updated whenever this tensor is retagged or reindexed.
- check_owners()[source]¶
Check if this tensor is ‘owned’ by any alive TensorNetworks. Also trim any weakrefs to dead TensorNetworks.
- modify(**kwargs)[source]¶
Overwrite the data of this tensor in place.
- Parameters:
data (array, optional) – New data.
apply (callable, optional) – A function to apply to the current data. If data is also given this is applied subsequently.
inds (sequence of str, optional) – New tuple of indices.
tags (sequence of str, optional) – New tags.
left_inds (sequence of str, optional) – New grouping of indices to be ‘on the left’.
- apply_to_arrays(fn)[source]¶
Apply the function
fn
to the underlying data array(s). This is meant for changing how the raw arrays are backed (e.g. converting between dtypes or libraries) but not their ‘numerical meaning’.
- isel(selectors, inplace=False)[source]¶
Select specific values for some dimensions/indices of this tensor, thereby removing them. Analogous to
X[:, :, 3, :, :]
with arrays. The indices to select from can be specified either by integer, in which case the correspoding index is removed, or by a slice.- Parameters:
- Return type:
Examples
>>> T = rand_tensor((2, 3, 4), inds=('a', 'b', 'c')) >>> T.isel({'b': -1}) Tensor(shape=(2, 4), inds=('a', 'c'), tags=())
See also
- add_tag(tag)[source]¶
Add a tag or multiple tags to this tensor. Unlike
self.tags.add
this also updates anyTensorNetwork
objects viewing thisTensor
.
- expand_ind(ind, size, mode=None, rand_strength=None, rand_dist='normal')[source]¶
Inplace increase the size of the dimension of
ind
, the new array entries will be filled with zeros by default.- Parameters:
name (str) – Name of the index to expand.
size (int, optional) – Size of the expanded index.
mode ({None, 'zeros', 'repeat', 'random'}, optional) – How to fill any new array entries. If
'zeros'
then fill with zeros, if'repeat'
then repeatedly tile the existing entries. If'random'
then fill with random entries drawn fromrand_dist
, multiplied byrand_strength
. IfNone
then select from zeros or random depening on non-zerorand_strength
.rand_strength (float, optional) – If
mode='random'
, a multiplicative scale for the random entries, defaulting to 1.0. Ifmode is None
then supplying a non-zero value here triggersmode='random'
.rand_dist ({'normal', 'uniform', 'exp'}, optional) – If
mode='random'
, the distribution to draw the random entries from.
- new_ind(name, size=1, axis=0, mode=None, rand_strength=None, rand_dist='normal')[source]¶
Inplace add a new index - a named dimension. If
size
is specified to be greater than one then the new array entries will be filled with zeros.- Parameters:
name (str) – Name of the new index.
size (int, optional) – Size of the new index.
axis (int, optional) – Position of the new index.
mode ({None, 'zeros', 'repeat', 'random'}, optional) – How to fill any new array entries. If
'zeros'
then fill with zeros, if'repeat'
then repeatedly tile the existing entries. If'random'
then fill with random entries drawn fromrand_dist
, multiplied byrand_strength
. IfNone
then select from zeros or random depening on non-zerorand_strength
.rand_strength (float, optional) – If
mode='random'
, a multiplicative scale for the random entries, defaulting to 1.0. Ifmode is None
then supplying a non-zero value here triggersmode='random'
.rand_dist ({'normal', 'uniform', 'exp'}, optional) – If
mode='random'
, the distribution to draw the random entries from.
See also
- new_ind_with_identity(name, left_inds, right_inds, axis=0)[source]¶
Inplace add a new index, where the newly stacked array entries form the identity from
left_inds
toright_inds
. Selecting 0 or 1 for the new indexname
thus is like ‘turning off’ this tensor if viewed as an operator.- Parameters:
name (str) – Name of the new index.
left_inds (tuple[str]) – Names of the indices forming the left hand side of the operator.
right_inds (tuple[str]) – Names of the indices forming the right hand side of the operator. The dimensions of these must match those of
left_inds
.axis (int, optional) – Position of the new index.
- new_ind_pair_with_identity(new_left_ind, new_right_ind, d, inplace=False)[source]¶
Expand this tensor with two new indices of size
d
, by taking an (outer) tensor product with the identity operator. The two new indices are added as axes at the start of the tensor.
- property H¶
- Conjugate this tensors data (does nothing to indices).
- property shape¶
- The size of each dimension.
- property ndim¶
- The number of dimensions.
- property size¶
- The total number of array elements.
- property dtype¶
- The data type of the array elements.
- property backend¶
- The backend inferred from the data.
Get the total size of the shared index(es) with
other
.
- transpose(*output_inds, inplace=False)[source]¶
Transpose this tensor - permuting the order of both the data and the indices. This operation is mainly for ensuring a certain data layout since for most operations the specific order of indices doesn’t matter.
Note to compute the tranditional ‘transpose’ of an operator within a contraction for example, you would just use reindexing not this.
- Parameters:
- Returns:
tt – The transposed tensor.
- Return type:
See also
- transpose_like(other, inplace=False)[source]¶
Transpose this tensor to match the indices of
other
, allowing for one index to be different. E.g. ifself.inds = ('a', 'b', 'c', 'x')
andother.inds = ('b', 'a', 'd', 'c')
then ‘x’ will be aligned with ‘d’ and the output inds will be('b', 'a', 'x', 'c')
- Parameters:
- Returns:
tt – The transposed tensor.
- Return type:
See also
- moveindex(ind, axis, inplace=False)[source]¶
Move the index
ind
to positionaxis
. Liketranspose
, this permutes the order of both the data and the indices and is mainly for ensuring a certain data layout since for most operations the specific order of indices doesn’t matter.
- trace(left_inds, right_inds, preserve_tensor=False, inplace=False)[source]¶
Trace index or indices
left_inds
withright_inds
, removing them.- Parameters:
left_inds (str or sequence of str) – The left indices to trace, order matching
right_inds
.right_inds (str or sequence of str) – The right indices to trace, order matching
left_inds
.preserve_tensor (bool, optional) – If
True
, a tensor will be returned even if no indices remain.inplace (bool, optional) – Perform the trace inplace.
- Returns:
z
- Return type:
Tensor or scalar
- vector_reduce(ind, v, inplace=False)[source]¶
Contract the vector
v
with the indexind
of this tensor, removing it.
- collapse_repeated(inplace=False)[source]¶
Take the diagonals of any repeated indices, such that each index only appears once.
- gate(G, ind, preserve_inds=True, inplace=False)[source]¶
Gate this tensor - contract a matrix into one of its indices without changing its indices. Unlike
contract
,G
is a raw array and the tensor remains with the same set of indices.- Parameters:
G (2D array_like) – The matrix to gate the tensor index with.
ind (str) – Which index to apply the gate to.
- Return type:
Examples
Create a random tensor of 4 qubits:
>>> t = qtn.rand_tensor( ... shape=[2, 2, 2, 2], ... inds=['k0', 'k1', 'k2', 'k3'], ... )
Create another tensor with an X gate applied to qubit 2:
>>> Gt = t.gate(qu.pauli('X'), 'k2')
The contraction of these two tensors is now the expectation of that operator:
>>> t.H @ Gt -4.108910576149794
- singular_values(left_inds, method='svd')[source]¶
Return the singular values associated with splitting this tensor according to
left_inds
.- Parameters:
left_inds (sequence of str) – A subset of this tensors indices that defines ‘left’.
method ({'svd', 'eig'}) – Whether to use the SVD or eigenvalue decomposition to get the singular values.
- Returns:
The singular values.
- Return type:
1d-array
- entropy(left_inds, method='svd')[source]¶
Return the entropy associated with splitting this tensor according to
left_inds
.
- retag(retag_map, inplace=False)[source]¶
Rename the tags of this tensor, optionally, in-place.
- Parameters:
retag_map (dict-like) – Mapping of pairs
{old_tag: new_tag, ...}
.inplace (bool, optional) – If
False
(the default), a copy of this tensor with the changed tags will be returned.
- reindex(index_map, inplace=False)[source]¶
Rename the indices of this tensor, optionally in-place.
- Parameters:
index_map (dict-like) – Mapping of pairs
{old_ind: new_ind, ...}
.inplace (bool, optional) – If
False
(the default), a copy of this tensor with the changed inds will be returned.
- fuse(fuse_map, inplace=False)[source]¶
Combine groups of indices into single indices.
- Parameters:
fuse_map (dict_like or sequence of tuples.) – Mapping like:
{new_ind: sequence of existing inds, ...}
or an ordered mapping like[(new_ind_1, old_inds_1), ...]
in which case the output tensor’s fused inds will be ordered. In both cases the new indices are created at the minimum axis of any of the indices that will be fused.- Returns:
The transposed, reshaped and re-labeled tensor.
- Return type:
- unfuse(unfuse_map, shape_map, inplace=False)[source]¶
Reshape single indices into groups of multiple indices
- Parameters:
unfuse_map (dict_like or sequence of tuples.) – Mapping like:
{existing_ind: sequence of new inds, ...}
or an ordered mapping like[(old_ind_1, new_inds_1), ...]
in which case the output tensor’s new inds will be ordered. In both cases the new indices are created at the old index’s position of the tensor’s shapeshape_map (dict_like or sequence of tuples) – Mapping like:
{old_ind: new_ind_sizes, ...}
or an ordered mapping like[(old_ind_1, new_ind_sizes_1), ...]
.
- Returns:
The transposed, reshaped and re-labeled tensor
- Return type:
- to_dense(*inds_seq, to_qarray=False)[source]¶
Convert this Tensor into an dense array, with a single dimension for each of inds in
inds_seqs
. E.g. to convert several sites into a density matrix:T.to_dense(('k0', 'k1'), ('b0', 'b1'))
.
- squeeze(include=None, exclude=None, inplace=False)[source]¶
Drop any singlet dimensions from this tensor.
- Parameters:
inplace (bool, optional) – Whether modify the original or return a new tensor.
include (sequence of str, optional) – Only squeeze dimensions with indices in this list.
exclude (sequence of str, optional) – Squeeze all dimensions except those with indices in this list.
inplace – Whether to perform the squeeze inplace or not.
- Return type:
- largest_element()[source]¶
Return the largest element, in terms of absolute magnitude, of this tensor.
- idxmin(f=None)[source]¶
Get the index configuration of the minimum element of this tensor, optionally applying
f
first.
- idxmax(f=None)[source]¶
Get the index configuration of the maximum element of this tensor, optionally applying
f
first.
- norm()[source]¶
Frobenius norm of this tensor:
\[\|t\|_F = \sqrt{\mathrm{Tr} \left(t^{\dagger} t\right)}\]where the trace is taken over all indices. Equivalent to the square root of the sum of squared singular values across any partition.
- symmetrize(ind1, ind2, inplace=False)[source]¶
Hermitian symmetrize this tensor for indices
ind1
andind2
. I.e.T = (T + T.conj().T) / 2
, where the transpose is taken only over the specified indices.
- isometrize(left_inds=None, method='qr', inplace=False)[source]¶
Make this tensor unitary (or isometric) with respect to
left_inds
. The underlying method is set bymethod
.- Parameters:
left_inds (sequence of str) – The indices to group together and treat as the left hand side of a matrix.
method (str, optional) –
The method used to generate the isometry. The options are:
”qr”: use the Q factor of the QR decomposition of
x
with the constraint that the diagonal ofR
is positive.”svd”: uses
U @ VH
of the SVD decomposition ofx
. This is useful for finding the ‘closest’ isometric matrix tox
, such as when it has been expanded with noise etc. But is less stable for differentiation / optimization.”exp”: use the matrix exponential of
x - dag(x)
, first completingx
with zeros if it is rectangular. This is a good parametrization for optimization, but more expensive for non-squarex
.”cayley”: use the Cayley transform of
x - dag(x)
, first completingx
with zeros if it is rectangular. This is a good parametrization for optimization (one the few compatible with HIPS/autograd e.g.), but more expensive for non-squarex
.”householder”: use the Householder reflection method directly. This requires that the backend implements “linalg.householder_product”.
”torch_householder”: use the Householder reflection method directly, using the
torch_householder
package. This requires that the package is installed and that the backend is"torch"
. This is generally the best parametrizing method for “torch” if available.”mgs”: use a python implementation of the modified Gram Schmidt method directly. This is slow if not compiled but a useful reference.
Not all backends support all methods or differentiating through all methods.
inplace (bool, optional) – Whether to perform the unitization inplace.
- Return type:
- unitize_¶
- randomize(dtype=None, inplace=False, **randn_opts)[source]¶
Randomize the entries of this tensor.
- Parameters:
- Return type:
- flip(ind, inplace=False)[source]¶
Reverse the axis on this tensor corresponding to
ind
. Like performing e.g.X[:, :, ::-1, :]
.
- multiply_index_diagonal(ind, x, inplace=False)[source]¶
Multiply this tensor by 1D array
x
as if it were a diagonal tensor being contracted into indexind
.
- filter_bonds(other)[source]¶
Sort this tensor’s indices into a list of those that it shares and doesn’t share with another tensor.
- __or__(other)[source]¶
Combine virtually (no copies made) with another
Tensor
orTensorNetwork
into a newTensorNetwork
.
- __matmul__(other)[source]¶
Explicitly contract with another tensor. Avoids some slight overhead of calling the full
tensor_contract()
.
- _repr_info()[source]¶
General info to show in various reprs. Sublasses can add more relevant info to this dict.
- quimb.tensor.tensor_core.COPY_tensor(d, inds, tags=None, dtype=float)[source]¶
Get the tensor representing the COPY operation with dimension size
d
and number of dimensionslen(inds)
, with exterior indicesinds
.- Parameters:
- Returns:
The tensor describing the MPS, of size
d**len(inds)
.- Return type:
- quimb.tensor.tensor_core.COPY_mps_tensors(d, inds, tags=None, dtype=float)[source]¶
Get the set of MPS tensors representing the COPY tensor with dimension size
d
and number of dimensionslen(inds)
, with exterior indicesinds
.- Parameters:
- Returns:
The
len(inds)
tensors describing the MPS, with physical legs ordered as supplied ininds
.- Return type:
List[Tensor]
- quimb.tensor.tensor_core.COPY_tree_tensors(d, inds, tags=None, dtype=float, ssa_path=None)[source]¶
Get the set of tree tensors representing the COPY tensor with dimension size
d
and number of dimensionslen(inds)
, with exterior indicesinds
. The tree is generated by cycling through pairs.- Parameters:
- Returns:
The
len(inds) - 2
tensors describing the TTN, with physical legs ordered as supplied ininds
.- Return type:
List[Tensor]
- quimb.tensor.tensor_core._tensor_network_gate_inds_basic(tn, G, inds, ng, tags, contract, isparam, info, **compress_opts)[source]¶
- quimb.tensor.tensor_core._tensor_network_gate_inds_lazy_split(tn, G, inds, ng, tags, contract, dims, **compress_opts)[source]¶
- quimb.tensor.tensor_core._BASIC_GATE_CONTRACT¶
- quimb.tensor.tensor_core._SPLIT_GATE_CONTRACT¶
- quimb.tensor.tensor_core._VALID_GATE_CONTRACT¶
- quimb.tensor.tensor_core.tensor_network_gate_inds(self, G, inds, contract=False, tags=None, info=None, inplace=False, **compress_opts)[source]¶
Apply the ‘gate’
G
to indicesinds
, propagating them to the outside, as if applyingG @ x
.- Parameters:
G (array_ike) – The gate array to apply, should match or be factorable into the shape
(*phys_dims, *phys_dims)
.inds (str or sequence or str,) – The index or indices to apply the gate to.
contract ({False, True, 'split', 'reduce-split', 'split-gate',) –
‘swap-split-gate’, ‘auto-split-gate’}, optional How to apply the gate:
False: gate is added to network lazily and nothing is contracted, tensor network structure is thus not maintained.
True: gate is contracted eagerly with all tensors involved, tensor network structure is thus only maintained if gate acts on a single site only.
’split’: contract all involved tensors then split the result back into two.
’reduce-split’: factor the two physical indices into ‘R-factors’ using QR decompositions on the original site tensors, then contract the gate, split it and reabsorb each side. Much cheaper than
'split'
.’split-gate’: lazily add the gate as with
False
, but split the gate tensor spatially.’swap-split-gate’: lazily add the gate as with
False
, but split the gate as if an extra SWAP has been applied.’auto-split-gate’: lazily add the gate as with
False
, but maybe apply one of the above options depending on whether they result in a rank reduction.
The named methods are relevant for two site gates only, for single site gates they use the
contract=True
option which also maintains the structure of the TN. See below for a pictorial description of each method.tags (str or sequence of str, optional) – Tags to add to the new gate tensor.
info (None or dict, optional) – Used to store extra optional information such as the singular values if not absorbed.
inplace (bool, optional) – Whether to perform the gate operation inplace on the tensor network or not.
compress_opts – Supplied to
tensor_split()
for anycontract
methods that involve splitting. Ignored otherwise.
- Returns:
G_tn
- Return type:
Notes
The
contract
options look like the following (for two site gates).contract=False
:. . <- inds │ │ GGGGG │╱ │╱ ──●───●── ╱ ╱
contract=True
:│╱ │╱ ──GGGGG── ╱ ╱
contract='split'
:│╱ │╱ │╱ │╱ ──GGGGG── ==> ──G┄┄┄G── ╱ ╱ ╱ ╱ <SVD>
contract='reduce-split'
:│ │ │ │ GGGGG GGG │ │ │╱ │╱ ==> ╱│ │ ╱ ==> ╱│ │ ╱ │╱ │╱ ──●───●── ──>─●─●─<── ──>─GGG─<── ==> ──G┄┄┄G── ╱ ╱ ╱ ╱ ╱ ╱ ╱ ╱ <QR> <LQ> <SVD>
For one site gates when one of these ‘split’ methods is supplied
contract=True
is assumed.contract='split-gate'
:│ │ <SVD> G~~~G │╱ │╱ ──●───●── ╱ ╱
contract='swap-split-gate'
:╲ ╱ ╳ ╱ ╲ <SVD> G~~~G │╱ │╱ ──●───●── ╱ ╱
contract='auto-split-gate'
chooses between the above two andFalse
, depending on whether either results in a lower rank.
- class quimb.tensor.tensor_core.TensorNetwork(ts=(), *, virtual=False, check_collisions=True)[source]¶
Bases:
object
A collection of (as yet uncontracted) Tensors.
- Parameters:
ts (sequence of Tensor or TensorNetwork) – The objects to combine. The new network will copy these (but not the underlying data) by default. For a view set
virtual=True
.virtual (bool, optional) – Whether the TensorNetwork should be a view onto the tensors it is given, or a copy of them. E.g. if a virtual TN is constructed, any changes to a Tensor’s indices or tags will propagate to all TNs viewing that Tensor.
check_collisions (bool, optional) – If True, the default, then
TensorNetwork
instances with double indices which match anotherTensorNetwork
instances double indices will have those indices’ names mangled. Can be explicitly turned off when it is known that no collisions will take place – i.e. when not adding any new tensors.
- tensor_map¶
Mapping of unique ids to tensors, like``{tensor_id: tensor, …}``. I.e. this is where the tensors are ‘stored’ by the network.
- Type:
- tag_map¶
Mapping of tags to a set of tensor ids which have those tags. I.e.
{tag: {tensor_id_1, tensor_id_2, ...}}
. Thus to select those tensors could do:map(tensor_map.__getitem__, tag_map[tag])
.- Type:
- ind_map¶
Like
tag_map
but for indices. Soind_map[ind]]
returns the tensor ids of those tensors withind
.- Type:
- exponent¶
A scalar prefactor for the tensor network, stored in base 10 like
10**exponent
. This is mostly for conditioning purposes and will be0.0
unless you use useequalize_norms(value)
ortn.strip_exponent(tid_or_tensor)
.- Type:
- _EXTRA_PROPS = ()¶
- _CONTRACT_STRUCTURED = False¶
- _tid_counter = 0¶
- tensor_map¶
- tag_map¶
- ind_map¶
- _inner_inds¶
- _outer_inds¶
- exponent = 0.0¶
- combine(other, *, virtual=False, check_collisions=True)[source]¶
Combine this tensor network with another, returning a new tensor network. This can be overriden by subclasses to check for a compatible structured type.
- Parameters:
other (TensorNetwork) – The other tensor network to combine with.
virtual (bool, optional) – Whether the new tensor network should copy all the incoming tensors (
False
, the default), or view them as virtual (True
).check_collisions (bool, optional) – Whether to check for index collisions between the two tensor networks before combining them. If
True
(the default), any inner indices that clash will be mangled.
- Return type:
- __and__(other)[source]¶
Combine this tensor network with more tensors, without contracting. Copies the tensors.
- __or__(other)[source]¶
Combine this tensor network with more tensors, without contracting. Views the constituent tensors.
- classmethod new(like=None, **kwargs)[source]¶
Create a new tensor network, without any tensors, of type
cls
, with all the requisite properties specified bykwargs
or inherited fromlike
.
- classmethod from_TN(tn, like=None, inplace=False, **kwargs)[source]¶
Construct a specific tensor network subclass (i.e. one with some promise about structure/geometry and tags/inds such as an MPS) from a generic tensor network which should have that structure already.
- Parameters:
cls (class) – The TensorNetwork subclass to convert
tn
to.tn (TensorNetwork) – The TensorNetwork to convert.
like (TensorNetwork, optional) – If specified, try and retrieve the neccesary attribute values from this tensor network.
inplace (bool, optional) – Whether to perform the conversion inplace or not.
kwargs – Extra properties of the TN subclass that should be specified.
- view_like(like, inplace=False, **kwargs)[source]¶
View this tensor network as the same subclass
cls
aslike
inheriting its extra properties as well.
- copy(virtual=False, deep=False)[source]¶
Copy this
TensorNetwork
. Ifdeep=False
, (the default), then everything but the actual numeric data will be copied.
- set_params(params)[source]¶
Take a pytree of the ‘parameters’, i.e. all underlying data arrays, as returned by
get_params
and set them.
- add_tensor(tensor, tid=None, virtual=False)[source]¶
Add a single tensor to this network - mangle its tid if neccessary.
- add(t, virtual=False, check_collisions=True)[source]¶
Add Tensor, TensorNetwork or sequence thereof to self.
- make_tids_consecutive(tid0=0)[source]¶
Reset the tids - node identifies - to be consecutive integers.
- __iand__(tensor)[source]¶
Inplace, but non-virtual, addition of a Tensor or TensorNetwork to this network. It should not have any conflicting indices.
- __ior__(tensor)[source]¶
Inplace, virtual, addition of a Tensor or TensorNetwork to this network. It should not have any conflicting indices.
- property num_tensors¶
- The total number of tensors in the tensor network.
- property num_indices¶
- The total number of indices in the tensor network.
- add_tag(tag, where=None, which='all')[source]¶
Add tag to every tensor in this network, or if
where
is specified, the tensors matching those tags – i.e. adds the tag to all tensors inself.select_tensors(where, which=which)
.
- drop_tags(tags=None)[source]¶
Remove a tag or tags from this tensor network, defaulting to all. This is an inplace operation.
- retag(tag_map, inplace=False)[source]¶
Rename tags for all tensors in this network, optionally in-place.
- Parameters:
tag_map (dict-like) – Mapping of pairs
{old_tag: new_tag, ...}
.inplace (bool, optional) – Perform operation inplace or return copy (default).
- reindex(index_map, inplace=False)[source]¶
Rename indices for all tensors in this network, optionally in-place.
- Parameters:
index_map (dict-like) – Mapping of pairs
{old_ind: new_ind, ...}
.
- mangle_inner_(append=None, which=None)[source]¶
Generate new index names for internal bonds, meaning that when this tensor network is combined with another, there should be no collisions.
- conj(mangle_inner=False, inplace=False)[source]¶
Conjugate all the tensors in this network (leaves all indices).
- property H¶
- Conjugate all the tensors in this network (leaves all indices).
- largest_element()[source]¶
Return the ‘largest element’, in terms of absolute magnitude, of this tensor network. This is defined as the product of the largest elements of each tensor in the network, which would be the largest single term occuring if the TN was summed explicitly.
- norm(**contract_opts)[source]¶
Frobenius norm of this tensor network. Computed by exactly contracting the TN with its conjugate:
\[\|T\|_F = \sqrt{\mathrm{Tr} \left(T^{\dagger} T\right)}\]where the trace is taken over all indices. Equivalent to the square root of the sum of squared singular values across any partition.
- make_norm(mangle_append='*', layer_tags=('KET', 'BRA'), return_all=False)[source]¶
Make the norm tensor network of this tensor network
tn.H & tn
.
- multiply(x, inplace=False, spread_over=8)[source]¶
Scalar multiplication of this tensor network with
x
.- Parameters:
x (scalar) – The number to multiply this tensor network by.
inplace (bool, optional) – Whether to perform the multiplication inplace.
spread_over (int, optional) – How many tensors to try and spread the multiplication over, in order that the effect of multiplying by a very large or small scalar is not concentrated.
- multiply_each(x, inplace=False)[source]¶
Scalar multiplication of each tensor in this tensor network with
x
. If trying to spread a multiplicative factorfac
uniformly over all tensors in the network and the number of tensors is large, then callingmultiply(fac)
can be inaccurate due to precision loss. If one has a routine that can precisely compute thex
to be applied to each tensor, then this function avoids the potential inaccuracies inmultiply()
.- Parameters:
x (scalar) – The number that multiplies each tensor in the network
inplace (bool, optional) – Whether to perform the multiplication inplace.
- property tensors¶
- Get the tuple of tensors in this tensor network.
- property arrays¶
- Get the tuple of raw arrays containing all the tensor network data.
- get_symbol_map()[source]¶
Get the mapping of the current indices to
einsum
style single unicode characters. The symbols are generated in the order they appear on the tensors.See also
- get_equation(output_inds=None)[source]¶
Get the ‘equation’ describing this tensor network, in
einsum
style with a single unicode letter per index. The symbols are generated in the order they appear on the tensors.- Parameters:
output_inds (None or sequence of str, optional) – Manually specify which are the output indices.
- Returns:
eq
- Return type:
Examples
>>> tn = qtn.TN_rand_reg(10, 3, 2) >>> tn.get_equation() 'abc,dec,fgb,hia,jke,lfk,mnj,ing,omd,ohl->'
See also
- get_inputs_output_size_dict(output_inds=None)[source]¶
Get a tuple of
inputs
,output
andsize_dict
suitable for e.g. passing to path optimizers. The symbols are generated in the order they appear on the tensors.- Parameters:
output_inds (None or sequence of str, optional) – Manually specify which are the output indices.
- Returns:
inputs (tuple[str])
output (str)
size_dict (dict[str, ix])
See also
- geometry_hash(output_inds=None, strict_index_order=False)[source]¶
A hash of this tensor network’s shapes & geometry. A useful check for determinism. Moreover, if this matches for two tensor networks then they can be contracted using the same tree for the same cost. Order of tensors matters for this - two isomorphic tensor networks with shuffled tensor order will not have the same hash value. Permuting the indices of individual of tensors or the output does not matter unless you set
strict_index_order=True
.- Parameters:
output_inds (None or sequence of str, optional) – Manually specify which indices are output indices and their order, otherwise assumed to be all indices that appear once.
strict_index_order (bool, optional) – If
False
, then the permutation of the indices of each tensor and the output does not matter.
- Return type:
Examples
If we transpose some indices, then only the strict hash changes:
>>> tn = qtn.TN_rand_reg(100, 3, 2, seed=0) >>> tn.geometry_hash() '18c702b2d026dccb1a69d640b79d22f3e706b6ad'
>>> tn.geometry_hash(strict_index_order=True) 'c109fdb43c5c788c0aef7b8df7bb83853cf67ca1'
>>> t = tn['I0'] >>> t.transpose_(t.inds[2], t.inds[1], t.inds[0]) >>> tn.geometry_hash() '18c702b2d026dccb1a69d640b79d22f3e706b6ad'
>>> tn.geometry_hash(strict_index_order=True) '52c32c1d4f349373f02d512f536b1651dfe25893'
- tensors_sorted()[source]¶
Return a tuple of tensors sorted by their respective tags, such that the tensors of two networks with the same tag structure can be iterated over pairwise.
- apply_to_arrays(fn)[source]¶
Modify every tensor’s array inplace by applying
fn
to it. This is meant for changing how the raw arrays are backed (e.g. converting between dtypes or libraries) but not their ‘numerical meaning’.
- _get_tids_from_tags(tags, which='all')[source]¶
Return the set of tensor ids that match
tags
.- Parameters:
tags (seq or str, str, None, ..., int, slice) – Tag specifier(s).
which ({'all', 'any', '!all', '!any'}) –
How to select based on the tags, if:
’all’: get ids of tensors matching all tags
’any’: get ids of tensors matching any tags
’!all’: get ids of tensors not matching all tags
’!any’: get ids of tensors not matching any tags
- Return type:
- select_tensors(tags, which='all')[source]¶
Return the sequence of tensors that match
tags
. Ifwhich='all'
, each tensor must contain every tag. Ifwhich='any'
, each tensor can contain any of the tags.- Parameters:
- Returns:
tagged_tensors – The tagged tensors.
- Return type:
See also
- _select_tids(tids, virtual=True)[source]¶
Get a copy or a virtual copy (doesn’t copy the tensors) of this
TensorNetwork
, only with the tensors corresponding totids
.
- _select_without_tids(tids, virtual=True)[source]¶
Get a copy or a virtual copy (doesn’t copy the tensors) of this
TensorNetwork
, without the tensors corresponding totids
.
- select(tags, which='all', virtual=True)[source]¶
Get a TensorNetwork comprising tensors that match all or any of
tags
, inherit the network properties/structure fromself
. This returns a view of the tensors not a copy.- Parameters:
- Returns:
tagged_tn – A tensor network containing the tagged tensors.
- Return type:
See also
select_tensors
,select_neighbors
,partition
,partition_tensors
- select_neighbors(tags, which='any')[source]¶
Select any neighbouring tensors to those specified by
tags
.self- Parameters:
- Returns:
The neighbouring tensors.
- Return type:
See also
- _select_local_tids(tids, max_distance=1, fillin=False, reduce_outer=None, inwards=False, virtual=True, include=None, exclude=None)[source]¶
- select_local(tags, which='all', max_distance=1, fillin=False, reduce_outer=None, virtual=True, include=None, exclude=None)[source]¶
Select a local region of tensors, based on graph distance
max_distance
to any tagged tensors.- Parameters:
tags (str or sequence of str) – The tag or tag sequence defining the initial region.
which ({'all', 'any', '!all', '!any'}, optional) – Whether to require matching all or any of the tags.
max_distance (int, optional) – The maximum distance to the initial tagged region.
fillin (bool or int, optional) –
Once the local region has been selected based on graph distance, whether and how many times to ‘fill-in’ corners by adding tensors connected multiple times. For example, if
R
is an initially tagged tensor andx
are locally selected tensors:fillin=0 fillin=1 fillin=2 | | | | | | | | | | | | | | | -o-o-x-o-o- -o-x-x-x-o- -x-x-x-x-x- | | | | | | | | | | | | | | | -o-x-x-x-o- -x-x-x-x-x- -x-x-x-x-x- | | | | | | | | | | | | | | | -x-x-R-x-x- -x-x-R-x-x- -x-x-R-x-x-
reduce_outer ({'sum', 'svd', 'svd-sum', 'reflect'}, optional) – Whether and how to reduce any outer indices of the selected region.
virtual (bool, optional) – Whether the returned tensor network should be a view of the tensors or a copy (
virtual=False
).include (sequence of int, optional) – Only include tensor with these
tids
.exclude (sequence of int, optional) – Only include tensor without these
tids
.
- Return type:
- select_path(loop, gauges=None)[source]¶
Select a sub tensor network corresponding to a single (possibly closed AKA loop like) path. Indices that are not part of the loop but do connect tids within it are cut, making this different to other select methods.
- Parameters:
loop (NetworkPath or sequence of str or int) – A collection of tids and inds to select.
gauges (dict[str, array_like], optional) – A dictionary of gauge tensors to insert at dangling (including cut) indices.
- Return type:
- partition_tensors(tags, inplace=False, which='any')[source]¶
Split this TN into a list of tensors containing any or all of
tags
and aTensorNetwork
of the the rest.- Parameters:
- Returns:
(u_tn, t_ts) – The untagged tensor network, and the sequence of tagged Tensors.
- Return type:
(TensorNetwork, tuple of Tensors)
See also
- partition(tags, which='any', inplace=False)[source]¶
Split this TN into two, based on which tensors have any or all of
tags
. Unlikepartition_tensors
, both results are TNs which inherit the structure of the initial TN.- Parameters:
- Returns:
untagged_tn, tagged_tn – The untagged and tagged tensor networs.
- Return type:
See also
- split_tensor(tags, left_inds, **split_opts)[source]¶
Split the single tensor uniquely identified by
tags
, adding the resulting tensors from the decomposition back into the network. Inplace operation.
- replace_with_identity(where, which='any', inplace=False)[source]¶
Replace all tensors marked by
where
with an identity. E.g. ifX
denotewhere
tensors:---1 X--X--2--- ---1---2--- | | | | ==> | X--X--X | |
- Parameters:
where (tag or seq of tags) – Tags specifying the tensors to replace.
which ({'any', 'all'}) – Whether to replace tensors matching any or all the tags
where
.inplace (bool) – Perform operation in place.
- Returns:
The TN, with section replaced with identity.
- Return type:
See also
- replace_with_svd(where, left_inds, eps, *, which='any', right_inds=None, method='isvd', max_bond=None, absorb='both', cutoff_mode='rel', renorm=None, ltags=None, rtags=None, keep_tags=True, start=None, stop=None, inplace=False)[source]¶
Replace all tensors marked by
where
with an iteratively constructed SVD. E.g. ifX
denotewhere
tensors::__ ___: ---X X--X X--- : \ / : | | | | ==> : U~s~VH---: ---X--X--X--X--- :__/ \ : | +--- : \__: X left_inds : right_inds
- Parameters:
where (tag or seq of tags) – Tags specifying the tensors to replace.
left_inds (ind or sequence of inds) – The indices defining the left hand side of the SVD.
eps (float) – The tolerance to perform the SVD with, affects the number of singular values kept. See
quimb.linalg.rand_linalg.estimate_rank()
.which ({'any', 'all', '!any', '!all'}, optional) – Whether to replace tensors matching any or all the tags
where
, prefix with ‘!’ to invert the selection.right_inds (ind or sequence of inds, optional) – The indices defining the right hand side of the SVD, these can be automatically worked out, but for hermitian decompositions the order is important and thus can be given here explicitly.
method (str, optional) – How to perform the decomposition, if not an iterative method the subnetwork dense tensor will be formed first, see
tensor_split()
for options.max_bond (int, optional) – The maximum bond to keep, defaults to no maximum (-1).
ltags (sequence of str, optional) – Tags to add to the left tensor.
rtags (sequence of str, optional) – Tags to add to the right tensor.
keep_tags (bool, optional) – Whether to propagate tags found in the subnetwork to both new tensors or drop them, defaults to
True
.start (int, optional) – If given, assume can use
TNLinearOperator1D
.stop (int, optional) – If given, assume can use
TNLinearOperator1D
.inplace (bool, optional) – Perform operation in place.
- Return type:
See also
- replace_section_with_svd(start, stop, eps, **replace_with_svd_opts)[source]¶
Take a 1D tensor network, and replace a section with a SVD. See
replace_with_svd()
.- Parameters:
start (int) – Section start index.
stop (int) – Section stop index, not included itself.
eps (float) – Precision of SVD.
replace_with_svd_opts – Supplied to
replace_with_svd()
.
- Return type:
- _contract_between_tids(tid1, tid2, equalize_norms=False, gauges=None, output_inds=None, **contract_opts)[source]¶
- contract_between(tags1, tags2, **contract_opts)[source]¶
Contract the two tensors specified by
tags1
andtags2
respectively. This is an inplace operation. No-op if the tensor specified bytags1
andtags2
is the same tensor.- Parameters:
tags1 – Tags uniquely identifying the first tensor.
tags2 (str or sequence of str) – Tags uniquely identifying the second tensor.
contract_opts – Supplied to
tensor_contract()
.
- gate_inds_with_tn(inds, gate, gate_inds_inner, gate_inds_outer, inplace=False)[source]¶
Gate some indices of this tensor network with another tensor network. That is, rewire and then combine them such that the new tensor network has the same outer indices as before, but now includes gate:
gate_inds_outer : : gate_inds_inner : : : : inds inds : ┌────┐ : : ┌────┬─── : ┌───────┬─── ───┤ ├── a──┤ │ a──┤ │ │ │ │ ├─── │ ├─── ───┤gate├── b──┤self│ --> b──┤ new │ │ │ │ ├─── │ ├─── ───┤ ├── c──┤ │ c──┤ │ └────┘ └────┴─── └───────┴───
Where there can be arbitrary structure of tensors within both
self
andgate
.The case where some of target
inds
are not present is handled as so (here ‘c’ is missing so ‘x’ and ‘y’ are kept):gate_inds_outer : : gate_inds_inner : : : : inds inds : ┌────┐ : : ┌────┬─── : ┌───────┬─── ───┤ ├── a──┤ │ a──┤ │ │ │ │ ├─── │ ├─── ───┤gate├── b──┤self│ --> b──┤ new │ │ │ │ ├─── │ ├─── x───┤ ├──y └────┘ x──┤ ┌──┘ └────┘ └────┴───y
Which enables convinient construction of various tensor networks, for example propagators, from scratch.
- Parameters:
inds (str or sequence of str) – The current indices to gate. If an index is not present on the target tensor network, it is ignored and instead the resulting tensor network will have both the corresponding inner and outer index of the gate tensor network.
gate (Tensor or TensorNetwork) – The tensor network to gate with.
gate_inds_inner (sequence of str) – The indices of
gate
to join to the oldinds
, must be the same length asinds
.gate_inds_outer (sequence of str) – The indices of
gate
to make the new outerinds
, must be the same length asinds
.
- Returns:
tn_gated
- Return type:
See also
- _compute_tree_gauges(tree, outputs)[source]¶
Given a
tree
of connected tensors, absorb the gauges from outside inwards, finally outputing the gauges associated with theoutputs
.- Parameters:
tree (sequence of (tid_outer, tid_inner, distance)) – The tree of connected tensors, see
get_tree_span()
.outputs (sequence of (tid, ind)) – Each output is specified by a tensor id and an index, such that having absorbed all gauges in the tree, the effective reduced factor of the tensor with respect to the index is returned.
- Returns:
Gouts – The effective reduced factors of the tensor index pairs specified in
outputs
, each a matrix.- Return type:
sequence of array
- _compress_between_virtual_tree_tids(tidl, tidr, max_bond, cutoff, r, absorb='both', include=None, exclude=None, span_opts=None, **compress_opts)[source]¶
- _compute_bond_env(tid1, tid2, select_local_distance=None, select_local_opts=None, max_bond=None, cutoff=None, method='contract_around', contract_around_opts=None, contract_compressed_opts=None, optimize='auto-hq', include=None, exclude=None)[source]¶
Compute the local tensor environment of the bond(s), if cut, between two tensors.
- _compress_between_full_bond_tids(tid1, tid2, max_bond, cutoff=0.0, absorb='both', renorm=False, method='eigh', select_local_distance=None, select_local_opts=None, env_max_bond='max_bond', env_cutoff='cutoff', env_method='contract_around', contract_around_opts=None, contract_compressed_opts=None, env_optimize='auto-hq', include=None, exclude=None)[source]¶
- _compress_between_local_fit(tid1, tid2, max_bond, cutoff=0.0, absorb='both', method='als', select_local_distance=1, select_local_opts=None, include=None, exclude=None, **fit_opts)[source]¶
- _compress_between_tids(tid1, tid2, max_bond=None, cutoff=1e-10, absorb='both', canonize_distance=None, canonize_opts=None, canonize_after_distance=None, canonize_after_opts=None, mode='basic', equalize_norms=False, gauges=None, gauge_smudge=1e-06, callback=None, **compress_opts)[source]¶
- compress_between(tags1, tags2, max_bond=None, cutoff=1e-10, absorb='both', canonize_distance=0, canonize_opts=None, equalize_norms=False, **compress_opts)[source]¶
Compress the bond between the two single tensors in this network specified by
tags1
andtags2
usingtensor_compress_bond()
:| | | | | | | | ==●====●====●====●== ==●====●====●====●== /| /| /| /| /| /| /| /| | | | | | | | | ==●====1====2====●== ==> ==●====L----R====●== /| /| /| /| /| /| /| /| | | | | | | | | ==●====●====●====●== ==●====●====●====●== /| /| /| /| /| /| /| /|
This is an inplace operation. The compression is unlikely to be optimal with respect to the frobenius norm, unless the TN is already canonicalized at the two tensors. The
absorb
kwarg can be specified to yield an isometry on either the left or right resulting tensors.- Parameters:
tags1 – Tags uniquely identifying the first (‘left’) tensor.
tags2 (str or sequence of str) – Tags uniquely identifying the second (‘right’) tensor.
max_bond (int or None, optional) – The maxmimum bond dimension.
cutoff (float, optional) – The singular value cutoff to use.
canonize_distance (int, optional) – How far to locally canonize around the target tensors first.
canonize_opts (None or dict, optional) – Other options for the local canonization.
equalize_norms (bool or float, optional) – If set, rescale the norms of all tensors modified to this value, stripping the rescaling factor into the
exponent
attribute.compress_opts – Supplied to
tensor_compress_bond()
.
See also
- compress_all(max_bond=None, cutoff=1e-10, canonize=True, tree_gauge_distance=None, canonize_distance=None, canonize_after_distance=None, mode='auto', inplace=False, **compress_opts)[source]¶
Compress all bonds one by one in this network.
- Parameters:
max_bond (int or None, optional) – The maxmimum bond dimension to compress to.
cutoff (float, optional) – The singular value cutoff to use.
tree_gauge_distance (int, optional) – How far to include local tree gauge information when compressing. If the local geometry is a tree, then each compression will be locally optimal up to this distance.
canonize_distance (int, optional) – How far to locally canonize around the target tensors first, this is set automatically by
tree_gauge_distance
if not specified.canonize_after_distance (int, optional) – How far to locally canonize around the target tensors after, this is set automatically by
tree_gauge_distance
, depending onmode
if not specified.mode ({'auto', 'basic', 'virtual-tree'}, optional) – The mode to use for compressing the bonds. If ‘auto’, will use ‘basic’ if
tree_gauge_distance == 0
else ‘virtual-tree’.inplace (bool, optional) – Whether to perform the compression inplace.
compress_opts – Supplied to
compress_between()
.
- Return type:
See also
compress_between
,canonize_all
- compress_all_tree(inplace=False, **compress_opts)[source]¶
Canonically compress this tensor network, assuming it to be a tree. This generates a tree spanning out from the most central tensor, then compresses all bonds inwards in a depth-first manner, using an infinite
canonize_distance
to shift the orthogonality center.
- compress_all_1d(max_bond=None, cutoff=1e-10, canonize=True, inplace=False, **compress_opts)[source]¶
Compress a tensor network that you know has a 1D topology, this proceeds by generating a spanning ‘tree’ from around the least central tensor, then optionally canonicalizing all bonds outwards and compressing inwards.
- Parameters:
max_bond (int, optional) – The maximum bond dimension to compress to.
cutoff (float, optional) – The singular value cutoff to use.
canonize (bool, optional) – Whether to canonize all bonds outwards first.
inplace (bool, optional) – Whether to perform the compression inplace.
compress_opts – Supplied to
tensor_compress_bond()
.
- Return type:
- compress_all_simple(max_bond=None, cutoff=1e-10, gauges=None, max_iterations=5, tol=0.0, smudge=1e-12, power=1.0, inplace=False, **gauge_simple_opts)[source]¶
- _canonize_between_tids(tid1, tid2, absorb='right', gauges=None, gauge_smudge=1e-06, equalize_norms=False, **canonize_opts)[source]¶
- canonize_between(tags1, tags2, absorb='right', **canonize_opts)[source]¶
‘Canonize’ the bond between the two single tensors in this network specified by
tags1
andtags2
usingtensor_canonize_bond
:| | | | | | | | --●----●----●----●-- --●----●----●----●-- /| /| /| /| /| /| /| /| | | | | | | | | --●----1----2----●-- ==> --●---->~~~~R----●-- /| /| /| /| /| /| /| /| | | | | | | | | --●----●----●----●-- --●----●----●----●-- /| /| /| /| /| /| /| /|
This is an inplace operation. This can only be used to put a TN into truly canonical form if the geometry is a tree, such as an MPS.
- Parameters:
tags1 – Tags uniquely identifying the first (‘left’) tensor, which will become an isometry.
tags2 (str or sequence of str) – Tags uniquely identifying the second (‘right’) tensor.
absorb ({'left', 'both', 'right'}, optional) – Which side of the bond to absorb the non-isometric operator.
canonize_opts – Supplied to
tensor_canonize_bond()
.
See also
- reduce_inds_onto_bond(inda, indb, tags=None, drop_tags=False, combine=True, ndim_cutoff=3)[source]¶
Use QR factorization to ‘pull’ the indices
inda
andindb
off of their respective tensors and onto the bond between them. This is an inplace operation.
- _get_neighbor_tids(tids, exclude_inds=())[source]¶
Get the tids of tensors connected to the tensor(s) at
tids
.
- _get_subgraph_tids(tids)[source]¶
Get the tids of tensors connected, by any distance, to the tensor or region of tensors
tids
.
- _ind_to_subgraph_tids(ind)[source]¶
Get the tids of tensors connected, by any distance, to the index
ind
.
- _draw_tree_span_tids(tids, span=None, min_distance=0, max_distance=None, include=None, exclude=None, ndim_sort='max', distance_sort='min', sorter=None, weight_bonds=True, color='order', colormap='Spectral', **draw_opts)[source]¶
- draw_tree_span(tags, which='all', min_distance=0, max_distance=None, include=None, exclude=None, ndim_sort='max', distance_sort='min', weight_bonds=True, color='order', colormap='Spectral', **draw_opts)[source]¶
Visualize a generated tree span out of the tensors tagged by
tags
.- Parameters:
tags (str or sequence of str) – Tags specifiying a region of tensors to span out of.
which ({'all', 'any': '!all', '!any'}, optional) – How to select tensors based on the tags.
min_distance (int, optional) – See
get_tree_span()
.max_distance (None or int, optional) – See
get_tree_span()
.include (sequence of str, optional) – See
get_tree_span()
.exclude (sequence of str, optional) – See
get_tree_span()
.distance_sort ({'min', 'max'}, optional) – See
get_tree_span()
.color ({'order', 'distance'}, optional) – Whether to color nodes based on the order of the contraction or the graph distance from the specified region.
colormap (str) – The name of a
matplotlib
colormap to use.
See also
- _canonize_around_tids(tids, min_distance=0, max_distance=None, include=None, exclude=None, span_opts=None, absorb='right', gauge_links=False, link_absorb='both', inwards=True, gauges=None, gauge_smudge=1e-06, **canonize_opts)[source]¶
- canonize_around(tags, which='all', min_distance=0, max_distance=None, include=None, exclude=None, span_opts=None, absorb='right', gauge_links=False, link_absorb='both', equalize_norms=False, inplace=False, **canonize_opts)[source]¶
Expand a locally canonical region around
tags
:--●---●-- | | | | --●---v---v---●-- | | | | | | --●--->---v---v---<---●-- | | | | | | | | ●--->--->---O---O---<---<---● | | | | | | | | --●--->---^---^---^---●-- | | | | | | --●---^---^---●-- | | | | --●---●-- <=====> max_distance = 2 e.g.
Shown on a grid here but applicable to arbitrary geometry. This is a way of gauging a tensor network that results in a canonical form if the geometry is described by a tree (e.g. an MPS or TTN). The canonizations proceed inwards via QR decompositions.
The sequence generated by round-robin expanding the boundary of the originally specified tensors - it will only be unique for trees.
- Parameters:
tags (str, or sequence or str) – Tags defining which set of tensors to locally canonize around.
which ({'all', 'any', '!all', '!any'}, optional) – How select the tensors based on tags.
min_distance (int, optional) – How close, in terms of graph distance, to canonize tensors away. See
get_tree_span()
.max_distance (None or int, optional) – How far, in terms of graph distance, to canonize tensors away. See
get_tree_span()
.include (sequence of str, optional) – How to build the spanning tree to canonize along. See
get_tree_span()
.exclude (sequence of str, optional) – How to build the spanning tree to canonize along. See
get_tree_span()
.{'min' (distance_sort) – How to build the spanning tree to canonize along. See
get_tree_span()
.'max'} – How to build the spanning tree to canonize along. See
get_tree_span()
.optional – How to build the spanning tree to canonize along. See
get_tree_span()
.absorb ({'right', 'left', 'both'}, optional) – As we canonize inwards from tensor A to tensor B which to absorb the singular values into.
gauge_links (bool, optional) – Whether to gauge the links between branches of the spanning tree generated (in a Simple Update like fashion).
link_absorb ({'both', 'right', 'left'}, optional) – If performing the link gauging, how to absorb the singular values.
equalize_norms (bool or float, optional) – Scale the norms of tensors acted on to this value, accumulating the log10 scaled factors in
self.exponent
.inplace (bool, optional) – Whether to perform the canonization inplace.
- Return type:
See also
- gauge_all_canonize(max_iterations=5, absorb='both', gauges=None, gauge_smudge=1e-06, equalize_norms=False, inplace=False, **canonize_opts)[source]¶
Iterative gauge all the bonds in this tensor network with a basic ‘canonization’ strategy.
- gauge_all_simple(max_iterations=5, tol=0.0, smudge=1e-12, power=1.0, gauges=None, equalize_norms=False, progbar=False, inplace=False)[source]¶
Iterative gauge all the bonds in this tensor network with a ‘simple update’ like strategy.
- gauge_all_random(max_iterations=1, unitary=True, seed=None, inplace=False)[source]¶
Gauge all the bonds in this network randomly. This is largely for testing purposes.
- gauge_all(method='canonize', **gauge_opts)[source]¶
Gauge all bonds in this network using one of several strategies.
- Parameters:
See also
- _gauge_local_tids(tids, max_distance=1, max_iterations='max_distance', method='canonize', inwards=False, include=None, exclude=None, **gauge_local_opts)[source]¶
Iteratively gauge all bonds in the local tensor network defined by
tids
according to one of several strategies.
- gauge_local(tags, which='all', max_distance=1, max_iterations='max_distance', method='canonize', inplace=False, **gauge_local_opts)[source]¶
Iteratively gauge all bonds in the tagged sub tensor network according to one of several strategies.
- gauge_simple_insert(gauges, remove=False, smudge=0.0, power=1.0)[source]¶
Insert the simple update style bond gauges found in
gauges
if they are present in this tensor network. The gauges inserted are also returned so that they can be removed later.- Parameters:
gauges (dict[str, array_like]) – The store of bond gauges, the keys being indices and the values being the vectors. Only bonds present in this dictionary will be gauged.
remove (bool, optional) – Whether to remove the gauges from the store after inserting them.
smudge (float, optional) – A small value to add to the gauge vectors to avoid singularities.
- Returns:
outer (list[(Tensor, str, array_like)]) – The sequence of gauges applied to outer indices, each a tuple of the tensor, the index and the gauge vector.
inner (list[((Tensor, Tensor), str, array_like)]) – The sequence of gauges applied to inner indices, each a tuple of the two inner tensors, the inner bond and the gauge vector applied.
- static gauge_simple_remove(outer=None, inner=None)[source]¶
Remove the simple update style bond gauges inserted by
gauge_simple_insert
.
- gauge_simple_temp(gauges, smudge=1e-12, power=1.0, ungauge_outer=True, ungauge_inner=True)[source]¶
Context manager that temporarily inserts simple update style bond gauges into this tensor network, before optionally ungauging them.
- Parameters:
self (TensorNetwork) – The TensorNetwork to be gauge-bonded.
gauges (dict[str, array_like]) – The store of gauge bonds, the keys being indices and the values being the vectors. Only bonds present in this dictionary will be gauged.
ungauge_outer (bool, optional) – Whether to ungauge the outer bonds.
ungauge_inner (bool, optional) – Whether to ungauge the inner bonds.
- Yields:
outer (list[(Tensor, int, array_like)]) – The tensors, indices and gauges that were performed on outer indices.
inner (list[((Tensor, Tensor), int, array_like)]) – The tensors, indices and gauges that were performed on inner bonds.
Examples
>>> tn = TN_rand_reg(10, 4, 3) >>> tn ^ all -51371.66630218866
>>> gauges = {} >>> tn.gauge_all_simple_(gauges=gauges) >>> len(gauges) 20
>>> tn ^ all 28702551.673767876
>>> with gauged_bonds(tn, gauges): ... # temporarily insert gauges ... print(tn ^ all) -51371.66630218887
>>> tn ^ all 28702551.67376789
- _contract_compressed_tid_sequence(seq, *, output_inds=None, max_bond=None, cutoff=1e-10, tree_gauge_distance=1, canonize_distance=None, canonize_opts=None, canonize_after_distance=None, canonize_after_opts=None, gauge_boundary_only=True, compress_late=True, compress_mode='auto', compress_min_size=None, compress_span=False, compress_matrices=True, compress_exclude=None, compress_opts=None, equalize_norms=False, gauges=None, gauge_smudge=1e-06, callback_pre_contract=None, callback_post_contract=None, callback_pre_compress=None, callback_post_compress=None, callback=None, preserve_tensor=False, progbar=False, inplace=False)[source]¶
Core routine for performing compressed contraction.
- _contract_around_tids(tids, seq=None, min_distance=0, max_distance=None, span_opts=None, max_bond=None, cutoff=1e-10, canonize_opts=None, **kwargs)[source]¶
Contract around
tids
, by following a greedily generated spanning tree, and compressing whenever two tensors in the outer ‘boundary’ share more than one index.
- contract_around(tags, which='all', min_distance=0, max_distance=None, span_opts=None, max_bond=None, cutoff=1e-10, tree_gauge_distance=1, canonize_distance=None, canonize_opts=None, canonize_after_distance=None, canonize_after_opts=None, gauge_boundary_only=True, compress_late=True, compress_min_size=None, compress_opts=None, compress_span=False, compress_matrices=True, equalize_norms=False, gauges=None, gauge_smudge=1e-06, callback_pre_contract=None, callback_post_contract=None, callback_pre_compress=None, callback_post_compress=None, callback=None, inplace=False, **kwargs)[source]¶
Perform a compressed contraction inwards towards the tensors identified by
tags
.
- contract_compressed(optimize, *, output_inds=None, max_bond='auto', cutoff=1e-10, tree_gauge_distance=1, canonize_distance=None, canonize_opts=None, canonize_after_distance=None, canonize_after_opts=None, gauge_boundary_only=True, compress_late=None, compress_mode='auto', compress_min_size=None, compress_span=True, compress_matrices=True, compress_exclude=None, compress_opts=None, equalize_norms=False, gauges=None, gauge_smudge=1e-06, callback_pre_contract=None, callback_post_contract=None, callback_pre_compress=None, callback_post_compress=None, callback=None, preserve_tensor=False, progbar=False, inplace=False, **kwargs)[source]¶
Contract this tensor network using the hyperoptimized approximate contraction method introduced in https://arxiv.org/abs/2206.07044.
Only supports non-hyper tensor networks.
- Parameters:
optimize (str, sequence, HyperCompressedOptimizer, ContractionTreeCompressed) –
The contraction strategy to use. The options are:
str: use the preset strategy with the given name,
path_like: use this exact path,
cotengra.HyperCompressedOptimizer
: find the contraction using this optimizercotengra.ContractionTreeCompressed
: use this exact tree
Note that the strategy should be one that specifically targets compressed contraction, paths for exact contraction will likely perform badly. See the cotengra documentation for more details. Values for
max_bond
andcompress_late
are inherited from the optimizer if possible (and not specified).output_inds (sequence of str, optional) – Output indices. Note that hyper indices are not supported and this is just for specifying the output order.
max_bond ("auto", int or None, optional) –
The maximum bond dimension to allow during compression.
"auto"
: try and inherit value from the optimizer, or use the current maximum bond dimension squared if not available.int: a specific maximum bond dimension to use.
None
: no maximum bond dimension (compression still possible via cutoff) - not recommended.
cutoff (float, optional) – The singular value cutoff to use during compression.
tree_gauge_distance (int, optional) – The distance to ‘tree gauge’ around a pair of tensors before compressing. Depending on if compress_mode=”basic” this sets canonize_distance and canonize_after_distance.
canonize_distance (int, optional) – The distance to canonize around a pair of tensors before compressing.
canonize_opts (dict, optional) – Additional keyword arguments to pass to the canonize routine.
canonize_after_distance (int, optional) – The distance to canonize around a pair of tensors after compressing.
canonize_after_opts (dict, optional) – Additional keyword arguments to pass to the canonize routine after compressing.
gauge_boundary_only (bool, optional) – Whether to only gauge the ‘boundary’ tensors, that is, intermediate tensors.
compress_late (None or bool, optional) – Whether to compress just before contracting the tensors involved or immediately after. Early compression is cheaper and a better default especially for contractions beyond planar. Late compression leaves more information in the tensors for possibly better quality gauging and compression. Whilst the largest tensor (‘contraction width’) is typically unchanged, the total memory and cost can be quite a lot higher. By default, this is None, which will try and inherit the value from the optimizer, else default to False.
compress_mode ({'auto', 'basic', 'virtual-tree', ...}, optional) – How to compress a pair of tensors. If ‘auto’, then ‘basic’ is used if tree_gauge_distance=0 or gauges are supplied, otherwise ‘virtual-tree’ is used. See _compress_between_tids for other valid options.
compress_min_size (int, optional) – Skip compressing a pair of tensors if their contraction would yield a tensor smaller than this size.
compress_opts (dict, optional) – Additional keyword arguments to pass to the core pariwise compression routine.
compress_span (bool or int, optional) – Whether to compress between tensors that are going to be contracted. If an int, this specifies that if two tensors will be contracted in the next compress_span contractions, then their bonds should be compressed.
compress_matrices (bool, optional) – Whether to compress pairs of tensors that are effectively matrices.
compress_exclude (set[int], optional) – An explicit set of tensor ids to exclude from compression.
equalize_norms (bool or float, optional) – Whether to equalize the norms of the tensors after each operation. The overall scaling is accumulated, log10, into tn.exponent. If True, at the end this exponent is redistributed. If a float, this is the target norm to equalize tensors to, e.g. 1.0, and the exponent is not redistributed, which is useful in the case that the non-log value is beyond standard precision.
gauges (dict[str, array_like], optional) – If supplied, use simple update style gauges during the contraction. The keys should be indices and the values singular value vectors. Only bonds present in this dictionary will be gauged.
gauge_smudge (float, optional) – If using simple update style gauging, add a small value to the singular values to avoid singularities.
callback_pre_contract (callable, optional) – A function to call before contracting a pair of tensors. It should have signature fn(tn, (tid1, tid2)).
callback_post_contract (callable, optional) – A function to call after contracting a pair of tensors. It should have signature fn(tn, tid).
callback_pre_compress (callable, optional) – A function to call before compressing a pair of tensors. It should have signature fn(tn, (tid1, tid2)).
callback_post_compress (callable, optional) – A function to call after compressing a pair of tensors. It should have signature fn(tn, (tid1, tid2)).
callback (callable, optional) – A function to call after each full step of contraction and compressions. It should have signature fn(tn, tid).
preserve_tensor (bool, optional) – If True, return a Tensor object even if it represents a scalar. Ignore if inplace=True, in which case a TensorNetwork is always returned.
progbar (bool, optional) – Whether to show a progress bar.
inplace (bool, optional) – Whether to perform the contraction inplace.
kwargs (dict, optional) – Additional keyword passed to _contract_compressed_tid_sequence.
- new_bond(tags1, tags2, **opts)[source]¶
Inplace addition of a dummmy (size 1) bond between the single tensors specified by by
tags1
andtags2
.- Parameters:
tags1 (sequence of str) – Tags identifying the first tensor.
tags2 (sequence of str) – Tags identifying the second tensor.
opts – Supplied to
new_bond()
.
See also
- cut_between(left_tags, right_tags, left_ind, right_ind)[source]¶
Cut the bond between the tensors specified by
left_tags
andright_tags
, giving them the new indsleft_ind
andright_ind
respectively.
- cut_bond(bond, new_left_ind=None, new_right_ind=None)[source]¶
Cut the bond index specified by
bond
between the tensors it connects. Usecut_between
for control over which tensor gets which new indexnew_left_ind
ornew_right_ind
. The index must connect exactly two tensors.
- drape_bond_between(tagsa, tagsb, tags_target, left_ind=None, right_ind=None, inplace=False)[source]¶
Take the bond(s) connecting the tensors tagged at
tagsa
andtagsb
, and ‘drape’ it through the tensor tagged attags_target
, effectively adding an identity tensor between the two and contracting it with the third:┌─┐ ┌─┐ ┌─┐ ┌─┐ ─┤A├─Id─┤B├─ ─┤A├─┐ ┌─┤B├─ └─┘ └─┘ └─┘ │ │ └─┘ left_ind│ │right_ind ┌─┐ --> ├─┤ ─┤C├─ ─┤D├─ └┬┘ └┬┘ where D = C ⊗ Id │ │
This increases the size of the target tensor by
d**2
, and disconnects the tensors attagsa
andtagsb
.- Parameters:
tagsa (str or sequence of str) – The tag(s) identifying the first tensor.
tagsb (str or sequence of str) – The tag(s) identifying the second tensor.
tags_target (str or sequence of str) – The tag(s) identifying the target tensor.
left_ind (str, optional) – The new index to give to the left tensor.
right_ind (str, optional) – The new index to give to the right tensor.
inplace (bool, optional) – Whether to perform the draping inplace.
- Return type:
- isel(selectors, inplace=False)[source]¶
Select specific values for some dimensions/indices of this tensor network, thereby removing them.
- Parameters:
- Return type:
See also
- sum_reduce(ind, inplace=False)[source]¶
Sum over the index
ind
of this tensor network, removing it. This is like contracting a vector of ones in, or marginalizing a classical probability distribution.
- vector_reduce(ind, v, inplace=False)[source]¶
Contract the vector
v
with the indexind
of this tensor network, removing it.- Parameters:
- Return type:
- cut_iter(*inds)[source]¶
Cut and iterate over one or more indices in this tensor network. Each network yielded will have that index removed, and the sum of all networks will equal the original network. This works by iterating over the product of all combinations of each bond supplied to
isel
. As such, the number of networks produced is exponential in the number of bonds cut.- Parameters:
inds (sequence of str) – The bonds to cut.
- Yields:
TensorNetwork
Examples
Here we’ll cut the two extra bonds of a cyclic MPS and sum the contraction of the resulting 49 OBC MPS norms:
>>> psi = MPS_rand_state(10, bond_dim=7, cyclic=True) >>> norm = psi.H & psi >>> bnds = bonds(norm[0], norm[-1]) >>> sum(tn ^ all for tn in norm.cut_iter(*bnds)) 1.0
See also
- insert_operator(A, where1, where2, tags=None, inplace=False)[source]¶
Insert an operator on the bond between the specified tensors, e.g.:
| | | | --1---2-- -> --1-A-2-- | |
- Parameters:
A (array) – The operator to insert.
where1 (str, sequence of str, or int) – The tags defining the ‘left’ tensor.
where2 (str, sequence of str, or int) – The tags defining the ‘right’ tensor.
tags (str or sequence of str) – Tags to add to the new operator’s tensor.
inplace (bool, optional) – Whether to perform the insertion inplace.
- insert_gauge(U, where1, where2, Uinv=None, tol=1e-10)[source]¶
Insert the gauge transformation
U^-1 @ U
into the bond between the tensors,T1
andT2
, defined bywhere1
andwhere2
. The resulting tensors at those locations will beT1 @ U^-1
andU @ T2
.- Parameters:
U (array) – The gauge to insert.
where1 (str, sequence of str, or int) – Tags defining the location of the ‘left’ tensor.
where2 (str, sequence of str, or int) – Tags defining the location of the ‘right’ tensor.
Uinv (array) – The inverse gauge,
U @ Uinv == Uinv @ U == eye
, to insert. If not given will be calculated usingnumpy.linalg.inv()
.
- contract_tags(tags, which='any', output_inds=None, optimize=None, get=None, backend=None, preserve_tensor=False, inplace=False, **contract_opts)[source]¶
Contract the tensors that match any or all of
tags
.- Parameters:
tags (sequence of str) – The list of tags to filter the tensors by. Use
all
or...
(Ellipsis
) to contract all tensors.which ({'all', 'any'}) – Whether to require matching all or any of the tags.
output_inds (sequence of str, optional) – The indices to specify as outputs of the contraction. If not given, and the tensor network has no hyper-indices, these are computed automatically as every index appearing once.
optimize (str, PathOptimizer, ContractionTree or path_like, optional) –
The contraction path optimization strategy to use.
None
: use the default strategy,str
: use the preset strategy with the given name,cotengra.HyperOptimizer
: find the contraction using this optimizer, supports slicing,opt_einsum.PathOptimizer
: find the path using this optimizer.cotengra.ContractionTree
: use this exact tree, supports slicing,path_like
: use this exact path.
Contraction with
cotengra
might be a bit more efficient but the main reason would be to handle sliced contraction automatically.get (str, optional) –
What to return. If:
None
(the default) - return the resulting scalar or Tensor.'expression'
- return a callbable expression that performs the contraction and operates on the raw arrays.'tree'
- return thecotengra.ContractionTree
describing the contraction in detail.'path'
- return the raw ‘path’ as a list of tuples.'symbol-map'
- return the dict mapping indices to ‘symbols’ (single unicode letters) used internally bycotengra
'path-info'
- return theopt_einsum.PathInfo
path object with detailed information such as flop cost. The symbol-map is also added to thequimb_symbol_map
attribute.
backend ({'auto', 'numpy', 'jax', 'cupy', 'tensorflow', ...}, optional) – Which backend to use to perform the contraction. Supplied to cotengra.
preserve_tensor (bool, optional) – Whether to return a tensor regardless of whether the output object is a scalar (has no indices) or not.
inplace (bool, optional) – Whether to perform the contraction inplace.
contract_opts – Passed to
tensor_contract()
.
- Returns:
The result of the contraction, still a
TensorNetwork
if the contraction was only partial.- Return type:
TensorNetwork, Tensor or scalar
See also
- contract(tags=..., output_inds=None, optimize=None, get=None, backend=None, preserve_tensor=False, max_bond=None, inplace=False, **opts)[source]¶
Contract some, or all, of the tensors in this network. This method dispatches to
contract_tags
,contract_structured
, orcontract_compressed
based on the various arguments.- Parameters:
tags (sequence of str, all, or Ellipsis, optional) – Any tensors with any of these tags with be contracted. Use
all
or...
(Ellipsis
) to contract all tensors....
will try and use a ‘structured’ contract method if possible.output_inds (sequence of str, optional) – The indices to specify as outputs of the contraction. If not given, and the tensor network has no hyper-indices, these are computed automatically as every index appearing once.
optimize (str, PathOptimizer, ContractionTree or path_like, optional) –
The contraction path optimization strategy to use.
None
: use the default strategy,str
: use the preset strategy with the given name,cotengra.HyperOptimizer
: find the contraction using this optimizer, supports slicing,opt_einsum.PathOptimizer
: find the path using this optimizer.cotengra.ContractionTree
: use this exact tree, supports slicing,path_like
: use this exact path.
Contraction with
cotengra
might be a bit more efficient but the main reason would be to handle sliced contraction automatically.get (str, optional) –
What to return. If:
None
(the default) - return the resulting scalar or Tensor.'expression'
- return a callbable expression that performs the contraction and operates on the raw arrays.'tree'
- return thecotengra.ContractionTree
describing the contraction in detail.'path'
- return the raw ‘path’ as a list of tuples.'symbol-map'
- return the dict mapping indices to ‘symbols’ (single unicode letters) used internally bycotengra
'path-info'
- return theopt_einsum.PathInfo
path object with detailed information such as flop cost. The symbol-map is also added to thequimb_symbol_map
attribute.
backend ({'auto', 'numpy', 'jax', 'cupy', 'tensorflow', ...}, optional) – Which backend to use to perform the contraction. Supplied to cotengra.
preserve_tensor (bool, optional) – Whether to return a tensor regardless of whether the output object is a scalar (has no indices) or not.
inplace (bool, optional) – Whether to perform the contraction inplace. This is only valid if not all tensors are contracted (which doesn’t produce a TN).
opts – Passed to
tensor_contract()
,contract_compressed()
.
- Returns:
The result of the contraction, still a
TensorNetwork
if the contraction was only partial.- Return type:
TensorNetwork, Tensor or scalar
See also
- contract_cumulative(tags_seq, output_inds=None, preserve_tensor=False, equalize_norms=False, inplace=False, **opts)[source]¶
Cumulative contraction of tensor network. Contract the first set of tags, then that set with the next set, then both of those with the next and so forth. Could also be described as an manually ordered contraction of all tags in
tags_seq
.- Parameters:
tags_seq (sequence of sequence of str) – The list of tag-groups to cumulatively contract.
output_inds (sequence of str, optional) – The indices to specify as outputs of the contraction. If not given, and the tensor network has no hyper-indices, these are computed automatically as every index appearing once.
preserve_tensor (bool, optional) – Whether to return a tensor regardless of whether the output object is a scalar (has no indices) or not.
inplace (bool, optional) – Whether to perform the contraction inplace.
opts – Passed to
tensor_contract()
.
- Returns:
The result of the contraction, still a
TensorNetwork
if the contraction was only partial.- Return type:
TensorNetwork, Tensor or scalar
See also
- contraction_path(optimize=None, output_inds=None, **kwargs)[source]¶
Compute the contraction path, a sequence of (int, int), for the contraction of this entire tensor network using strategy
optimize
.- Parameters:
optimize (str, PathOptimizer, ContractionTree or path_like, optional) –
The contraction path optimization strategy to use.
None
: use the default strategy,str
: use the preset strategy with the given name,cotengra.HyperOptimizer
: find the contraction using this optimizer, supports slicing,opt_einsum.PathOptimizer
: find the path using this optimizer.cotengra.ContractionTree
: use this exact tree, supports slicing,path_like
: use this exact path.
output_inds (sequence of str, optional) – The indices to specify as outputs of the contraction. If not given, and the tensor network has no hyper-indices, these are computed automatically as every index appearing once.
kwargs (dict, optional) – Passed to
cotengra.array_contract_path()
.
- Return type:
- contraction_info(optimize=None, output_inds=None, **kwargs)[source]¶
Compute the
opt_einsum.PathInfo
object describing the contraction of this entire tensor network using strategyoptimize
. Note any sliced indices will be ignored.- Parameters:
optimize (str, PathOptimizer, ContractionTree or path_like, optional) –
The contraction path optimization strategy to use.
None
: use the default strategy,str
: use the preset strategy with the given name,cotengra.HyperOptimizer
: find the contraction using this optimizer, supports slicing,opt_einsum.PathOptimizer
: find the path using this optimizer.cotengra.ContractionTree
: use this exact tree, supports slicing,path_like
: use this exact path.
output_inds (sequence of str, optional) – The indices to specify as outputs of the contraction. If not given, and the tensor network has no hyper-indices, these are computed automatically as every index appearing once.
kwargs (dict, optional) – Passed to
cotengra.array_contract_tree()
.
- Return type:
opt_einsum.PathInfo
- contraction_tree(optimize=None, output_inds=None, **kwargs)[source]¶
Return the
cotengra.ContractionTree
corresponding to contracting this entire tensor network with strategyoptimize
.- Parameters:
optimize (str, PathOptimizer, ContractionTree or path_like, optional) –
The contraction path optimization strategy to use.
None
: use the default strategy,str
: use the preset strategy with the given name,cotengra.HyperOptimizer
: find the contraction using this optimizer, supports slicing,opt_einsum.PathOptimizer
: find the path using this optimizer.cotengra.ContractionTree
: use this exact tree, supports slicing,path_like
: use this exact path.
output_inds (sequence of str, optional) – The indices to specify as outputs of the contraction. If not given, and the tensor network has no hyper-indices, these are computed automatically as every index appearing once.
kwargs (dict, optional) – Passed to
cotengra.array_contract_tree()
.
- Return type:
cotengra.ContractionTree
- contraction_width(optimize=None, **contract_opts)[source]¶
Compute the ‘contraction width’ of this tensor network. This is defined as log2 of the maximum tensor size produced during the contraction sequence. If every index in the network has dimension 2 this corresponds to the maximum rank tensor produced.
- contraction_cost(optimize=None, **contract_opts)[source]¶
Compute the ‘contraction cost’ of this tensor network. This is defined as log10 of the total number of scalar operations during the contraction sequence.
- as_network(virtual=True)[source]¶
Matching method (for ensuring object is a tensor network) to
as_network()
, which simply returnsself
ifvirtual=True
.
- aslinearoperator(left_inds, right_inds, ldims=None, rdims=None, backend=None, optimize=None)[source]¶
View this
TensorNetwork
as aTNLinearOperator
.
- split(left_inds, right_inds=None, **split_opts)[source]¶
Decompose this tensor network across a bipartition of outer indices.
This method matches
Tensor.split
by converting to aTNLinearOperator
first. Note unless an iterative method is passed tomethod
, the full dense tensor will be contracted.
- to_dense(*inds_seq, to_qarray=False, **contract_opts)[source]¶
Convert this network into an dense array, with a single dimension for each of inds in
inds_seqs
. E.g. to convert several sites into a density matrix:TN.to_dense(('k0', 'k1'), ('b0', 'b1'))
.
- compute_reduced_factor(side, left_inds, right_inds, optimize='auto-hq', **contract_opts)[source]¶
Compute either the left or right ‘reduced factor’ of this tensor network. I.e., view as an operator,
X
, mappingleft_inds
toright_inds
and computeL
orR
such thatX = U_R @ R
orX = L @ U_L
, withU_R
andU_L
unitary operators that are not computed. Onlydag(X) @ X
orX @ dag(X)
is contracted, which is generally cheaper than contractingX
itself.- Parameters:
self (TensorNetwork) – The tensor network to compute the reduced factor of.
side ({'left', 'right'}) – Whether to compute the left or right reduced factor. If ‘right’ then
dag(X) @ X
is contracted, otherwiseX @ dag(X)
.left_inds (sequence of str) – The indices forming the left side of the operator.
right_inds (sequence of str) – The indices forming the right side of the operator.
contract_opts (dict, optional) – Options to pass to
to_dense()
.
- Return type:
array_like
- insert_compressor_between_regions(ltags, rtags, max_bond=None, cutoff=1e-10, select_which='any', insert_into=None, new_tags=None, new_ltags=None, new_rtags=None, bond_ind=None, optimize='auto-hq', inplace=False, **compress_opts)[source]¶
Compute and insert a pair of ‘oblique’ projection tensors (see for example https://arxiv.org/abs/1905.02351) that effectively compresses between two regions of the tensor network. Useful for various approximate contraction methods such as HOTRG and CTMRG.
- Parameters:
ltags (sequence of str) – The tags of the tensors in the left region.
rtags (sequence of str) – The tags of the tensors in the right region.
max_bond (int or None, optional) – The maximum bond dimension to use for the compression (i.e. shared by the two projection tensors). If
None
then the maximum is controlled bycutoff
.cutoff (float, optional) – The cutoff to use for the compression.
select_which ({'any', 'all', 'none'}, optional) – How to select the regions based on the tags, see
select()
.insert_into (TensorNetwork, optional) – If given, insert the new tensors into this tensor network, assumed to have the same relevant indices as
self
.new_tags (str or sequence of str, optional) – The tag(s) to add to both the new tensors.
new_ltags (str or sequence of str, optional) – The tag(s) to add to the new left projection tensor.
new_rtags (str or sequence of str, optional) – The tag(s) to add to the new right projection tensor.
optimize (str or PathOptimizer, optional) – How to optimize the contraction of the projection tensors.
inplace (bool, optional) – Whether perform the insertion in-place. If
insert_into
is supplied then this doesn’t matter, and that tensor network will be modified and returned.
- Return type:
See also
- fit(tn_target, method='als', tol=1e-09, inplace=False, progbar=False, **fitting_opts)[source]¶
Optimize the entries of this tensor network with respect to a least squares fit of
tn_target
which should have the same outer indices. Depending onmethod
this callstensor_network_fit_als()
ortensor_network_fit_autodiff()
. The quantity minimized is:\[D(A, B) = | A - B |_{\mathrm{fro}} = \mathrm{Tr} [(A - B)^{\dagger}(A - B)]^{1/2} = ( \langle A | A \rangle - 2 \mathrm{Re} \langle A | B \rangle| + \langle B | B \rangle ) ^{1/2}\]- Parameters:
tn_target (TensorNetwork) – The target tensor network to try and fit the current one to.
method ({'als', 'autodiff'}, optional) – Whether to use alternating least squares (ALS) or automatic differentiation to perform the optimization. Generally ALS is better for simple geometries, autodiff better for complex ones.
tol (float, optional) – The target norm distance.
inplace (bool, optional) – Update the current tensor network in place.
progbar (bool, optional) – Show a live progress bar of the fitting process.
fitting_opts – Supplied to either
tensor_network_fit_als()
ortensor_network_fit_autodiff()
.
- Returns:
tn_opt – The optimized tensor network.
- Return type:
See also
tensor_network_fit_als
,tensor_network_fit_autodiff
,tensor_network_distance
- property tags¶
- inner_inds()[source]¶
Tuple of interior indices, assumed to be any indices that appear twice or more (this only holds generally for non-hyper tensor networks).
- outer_inds()[source]¶
Tuple of exterior indices, assumed to be any lone indices (this only holds generally for non-hyper tensor networks).
- outer_dims_inds()[source]¶
Get the ‘outer’ pairs of dimension and indices, i.e. as if this tensor network was fully contracted.
- outer_size()[source]¶
Get the total size of the ‘outer’ indices, i.e. as if this tensor network was fully contracted.
- get_multibonds(include=None, exclude=None)[source]¶
Get a dict of ‘multibonds’ in this tensor network, i.e. groups of two or more indices that appear on exactly the same tensors and thus could be fused, for example.
- Parameters:
- Returns:
A dict mapping the tuple of indices that could be fused to the tuple of tensor ids they appear on.
- Return type:
- get_hyperinds(output_inds=None)[source]¶
Get a tuple of all ‘hyperinds’, defined as those indices which don’t appear exactly twice on either the tensors or in the ‘outer’ (i.e. output) indices.
Note the default set of ‘outer’ indices is calculated as only those indices that appear once on the tensors, so these likely need to be manually specified, otherwise, for example, an index that appears on two tensors and the output will incorrectly be identified as non-hyper.
- compute_contracted_inds(*tids, output_inds=None)[source]¶
Get the indices describing the tensor contraction of tensors corresponding to
tids
.
- squeeze(fuse=False, include=None, exclude=None, inplace=False)[source]¶
Drop singlet bonds and dimensions from this tensor network. If
fuse=True
also fuse all multibonds between tensors.- Parameters:
fuse (bool, optional) – Whether to fuse multibonds between tensors as well as squeezing.
include (sequence of str, optional) – Only squeeze these indices, by default all indices.
exclude (sequence of str, optional) – Ignore these indices, by default the outer indices of this TN.
inplace (bool, optional) – Whether to perform the squeeze and optional fuse inplace.
- Return type:
- isometrize(method='qr', allow_no_left_inds=False, inplace=False)[source]¶
Project every tensor in this network into an isometric form, assuming they have
left_inds
marked.- Parameters:
method (str, optional) –
The method used to generate the isometry. The options are:
”qr”: use the Q factor of the QR decomposition of
x
with the constraint that the diagonal ofR
is positive.”svd”: uses
U @ VH
of the SVD decomposition ofx
. This is useful for finding the ‘closest’ isometric matrix tox
, such as when it has been expanded with noise etc. But is less stable for differentiation / optimization.”exp”: use the matrix exponential of
x - dag(x)
, first completingx
with zeros if it is rectangular. This is a good parametrization for optimization, but more expensive for non-squarex
.”cayley”: use the Cayley transform of
x - dag(x)
, first completingx
with zeros if it is rectangular. This is a good parametrization for optimization (one the few compatible with HIPS/autograd e.g.), but more expensive for non-squarex
.”householder”: use the Householder reflection method directly. This requires that the backend implements “linalg.householder_product”.
”torch_householder”: use the Householder reflection method directly, using the
torch_householder
package. This requires that the package is installed and that the backend is"torch"
. This is generally the best parametrizing method for “torch” if available.”mgs”: use a python implementation of the modified Gram Schmidt method directly. This is slow if not compiled but a useful reference.
Not all backends support all methods or differentiating through all methods.
allow_no_left_inds (bool, optional) – If
True
then allow tensors with noleft_inds
to be left alone, rather than raising an error.inplace (bool, optional) – If
True
then perform the operation in-place.
- Return type:
- unitize_¶
- randomize(dtype=None, seed=None, inplace=False, **randn_opts)[source]¶
Randomize every tensor in this TN - see
quimb.tensor.tensor_core.Tensor.randomize()
.- Parameters:
dtype ({None, str}, optional) – The data type of the random entries. If left as the default
None
, then the data type of the current array will be used.seed (None or int, optional) – Seed for the random number generator.
inplace (bool, optional) – Whether to perform the randomization inplace, by default
False
.randn_opts – Supplied to
randn()
.
- Return type:
- strip_exponent(tid_or_tensor, value=None)[source]¶
Scale the elements of tensor corresponding to
tid
so that the norm of the array is some value, which defaults to1
. The log of the scaling factor, base 10, is then accumulated in theexponent
attribute.
- distribute_exponent()[source]¶
Distribute the exponent
p
of this tensor network (i.e. corresponding totn * 10**p
) equally among all tensors.
- equalize_norms(value=None, inplace=False)[source]¶
Make the Frobenius norm of every tensor in this TN equal without changing the overall value if
value=None
, or set the norm of every tensor tovalue
by scalar multiplication only.- Parameters:
- Return type:
- balance_bonds(inplace=False)[source]¶
Apply
tensor_balance_bond()
to all bonds in this tensor network.- Parameters:
inplace (bool, optional) – Whether to perform the bond balancing inplace or not.
- Return type:
- fuse_multibonds(gauges=None, include=None, exclude=None, inplace=False)[source]¶
Fuse any multi-bonds (more than one index shared by the same pair of tensors) into a single bond.
- Parameters:
gauges (None or dict[str, array_like], optional) – If supplied, also fuse the gauges contained in this dict.
include (sequence of str, optional) – Only consider these indices, by default all indices.
exclude (sequence of str, optional) – Ignore these indices, by default the outer indices of this TN.
- expand_bond_dimension(new_bond_dim, mode=None, rand_strength=None, rand_dist='normal', inds_to_expand=None, inplace=False)[source]¶
Increase the dimension of all or some of the bonds in this tensor network to at least
new_bond_dim
, optinally adding some random noise to the new entries.- Parameters:
new_bond_dim (int) – The minimum bond dimension to expand to, if the bond dimension is already larger than this it will be left unchanged.
rand_strength (float, optional) – The strength of random noise to add to the new array entries, if any. The noise is drawn from a normal distribution with standard deviation
rand_strength
.inds_to_expand (sequence of str, optional) – The indices to expand, if not all.
inplace (bool, optional) – Whether to expand this tensor network in place, or return a new one.
- Return type:
- flip(inds, inplace=False)[source]¶
Flip the dimension corresponding to indices
inds
on all tensors that share it.
- rank_simplify(output_inds=None, equalize_norms=False, cache=None, max_combinations=500, inplace=False)[source]¶
Simplify this tensor network by performing contractions that don’t increase the rank of any tensors.
- Parameters:
output_inds (sequence of str, optional) – Explicitly set which indices of the tensor network are output indices and thus should not be modified.
equalize_norms (bool or float) – Actively renormalize the tensors during the simplification process. Useful for very large TNs. The scaling factor will be stored as an exponent in
tn.exponent
.cache (None or set) – Persistent cache used to mark already checked tensors.
inplace (bool, optional) – Whether to perform the rand reduction inplace.
- Return type:
See also
- diagonal_reduce(output_inds=None, atol=1e-12, cache=None, inplace=False)[source]¶
Find tensors with diagonal structure and collapse those axes. This will create a tensor ‘hyper’ network with indices repeated 2+ times, as such, output indices should be explicitly supplied when contracting, as they can no longer be automatically inferred. For example:
>>> tn_diag = tn.diagonal_reduce() >>> tn_diag.contract(all, output_inds=[])
- Parameters:
output_inds (sequence of str, optional) – Which indices to explicitly consider as outer legs of the tensor network and thus not replace. If not given, these will be taken as all the indices that appear once.
atol (float, optional) – When identifying diagonal tensors, the absolute tolerance with which to compare to zero with.
cache (None or set) – Persistent cache used to mark already checked tensors.
inplace – Whether to perform the diagonal reduction inplace.
bool – Whether to perform the diagonal reduction inplace.
optional – Whether to perform the diagonal reduction inplace.
- Return type:
See also
- antidiag_gauge(output_inds=None, atol=1e-12, cache=None, inplace=False)[source]¶
Flip the order of any bonds connected to antidiagonal tensors. Whilst this is just a gauge fixing (with the gauge being the flipped identity) it then allows
diagonal_reduce
to then simplify those indices.- Parameters:
output_inds (sequence of str, optional) – Which indices to explicitly consider as outer legs of the tensor network and thus not flip. If not given, these will be taken as all the indices that appear once.
atol (float, optional) – When identifying antidiagonal tensors, the absolute tolerance with which to compare to zero with.
cache (None or set) – Persistent cache used to mark already checked tensors.
inplace – Whether to perform the antidiagonal gauging inplace.
bool – Whether to perform the antidiagonal gauging inplace.
optional – Whether to perform the antidiagonal gauging inplace.
- Return type:
See also
full_simplify
,rank_simplify
,diagonal_reduce
,column_reduce
- column_reduce(output_inds=None, atol=1e-12, cache=None, inplace=False)[source]¶
Find bonds on this tensor network which have tensors where all but one column (of the respective index) is non-zero, allowing the ‘cutting’ of that bond.
- Parameters:
output_inds (sequence of str, optional) – Which indices to explicitly consider as outer legs of the tensor network and thus not slice. If not given, these will be taken as all the indices that appear once.
atol (float, optional) – When identifying singlet column tensors, the absolute tolerance with which to compare to zero with.
cache (None or set) – Persistent cache used to mark already checked tensors.
inplace – Whether to perform the column reductions inplace.
bool – Whether to perform the column reductions inplace.
optional – Whether to perform the column reductions inplace.
- Return type:
See also
full_simplify
,rank_simplify
,diagonal_reduce
,antidiag_gauge
- split_simplify(atol=1e-12, equalize_norms=False, cache=None, inplace=False, **split_opts)[source]¶
Find tensors which have low rank SVD decompositions across any combination of bonds and perform them.
- Parameters:
atol (float, optional) – Cutoff used when attempting low rank decompositions.
equalize_norms (bool or float) – Actively renormalize the tensors during the simplification process. Useful for very large TNs. The scaling factor will be stored as an exponent in
tn.exponent
.cache (None or set) – Persistent cache used to mark already checked tensors.
inplace – Whether to perform the split simplification inplace.
bool – Whether to perform the split simplification inplace.
optional – Whether to perform the split simplification inplace.
- pair_simplify(cutoff=1e-12, output_inds=None, max_inds=10, cache=None, equalize_norms=False, max_combinations=500, inplace=False, **split_opts)[source]¶
- loop_simplify(output_inds=None, max_loop_length=None, max_inds=10, cutoff=1e-12, loops=None, cache=None, equalize_norms=False, inplace=False, **split_opts)[source]¶
Try and simplify this tensor network by identifying loops and checking for low-rank decompositions across groupings of the loops outer indices.
- Parameters:
max_loop_length (None or int, optional) – Largest length of loop to search for, if not set, the size will be set to the length of the first (and shortest) loop found.
cutoff (float, optional) – Cutoff to use for the operator decomposition.
loops (None, sequence or callable) – Loops to check, or a function that generates them.
cache (set, optional) – For performance reasons can supply a cache for already checked loops.
inplace (bool, optional) – Whether to replace the loops inplace.
split_opts – Supplied to
tensor_split()
.
- Return type:
- full_simplify(seq='ADCR', output_inds=None, atol=1e-12, equalize_norms=False, cache=None, inplace=False, progbar=False, rank_simplify_opts=None, loop_simplify_opts=None, split_simplify_opts=None, custom_methods=(), split_method='svd')[source]¶
Perform a series of tensor network ‘simplifications’ in a loop until there is no more reduction in the number of tensors or indices. Note that apart from rank-reduction, the simplification methods make use of the non-zero structure of the tensors, and thus changes to this will potentially produce different simplifications.
- Parameters:
seq (str, optional) –
Which simplifications and which order to perform them in.
'A'
: stands forantidiag_gauge
'D'
: stands fordiagonal_reduce
'C'
: stands forcolumn_reduce
'R'
: stands forrank_simplify
'S'
: stands forsplit_simplify
'L'
: stands forloop_simplify
If you want to keep the tensor network ‘simple’, i.e. with no hyperedges, then don’t use
'D'
(moreover'A'
is redundant).output_inds (sequence of str, optional) – Explicitly set which indices of the tensor network are output indices and thus should not be modified. If not specified the tensor network is assumed to be a ‘standard’ one where indices that only appear once are the output indices.
atol (float, optional) – The absolute tolerance when indentifying zero entries of tensors and performing low-rank decompositions.
equalize_norms (bool or float) – Actively renormalize the tensors during the simplification process. Useful for very large TNs. If True, the norms, in the formed of stripped exponents, will be redistributed at the end. If an actual number, the final tensors will all have this norm, and the scaling factor will be stored as a base-10 exponent in
tn.exponent
.cache (None or set) – A persistent cache for each simplification process to mark already processed tensors.
progbar (bool, optional) – Show a live progress bar of the simplification process.
inplace (bool, optional) – Whether to perform the simplification inplace.
- Return type:
- hyperinds_resolve(mode='dense', sorter=None, output_inds=None, inplace=False)[source]¶
Convert this into a regular tensor network, where all indices appear at most twice, by inserting COPY tensor or tensor networks for each hyper index.
- Parameters:
mode ({'dense', 'mps', 'tree'}, optional) – What type of COPY tensor(s) to insert.
sorter (None or callable, optional) – If given, a function to sort the indices that a single hyperindex will be turned into. Th function is called like
tids.sort(key=sorter)
.inplace (bool, optional) – Whether to insert the COPY tensors inplace.
- Return type:
- compress_simplify(output_inds=None, atol=1e-06, simplify_sequence_a='ADCRS', simplify_sequence_b='RPL', hyperind_resolve_mode='tree', hyperind_resolve_sort='clustering', final_resolve=False, split_method='svd', max_simplification_iterations=100, converged_tol=0.01, equalize_norms=True, progbar=False, inplace=False, **full_simplify_opts)[source]¶
- property shape¶
- Actual, i.e. exterior, shape of this TensorNetwork.
- property dtype¶
- The dtype of this TensorNetwork, this is the minimal common type
- of all the tensors data.
- quimb.tensor.tensor_core.TNLO_HANDLED_FUNCTIONS¶
- class quimb.tensor.tensor_core.TNLinearOperator(tns, left_inds, right_inds, ldims=None, rdims=None, optimize=None, backend=None, is_conj=False)[source]¶
Bases:
scipy.sparse.linalg.LinearOperator
Get a linear operator - something that replicates the matrix-vector operation - for an arbitrary uncontracted TensorNetwork, e.g:
: --O--O--+ +-- : --+ : | | | : | : --O--O--O-O-- : acting on --V : | | : | : --+ +---- : --+ left_inds^ ^right_inds
This can then be supplied to scipy’s sparse linear algebra routines. The
left_inds
/right_inds
convention is that the linear operator will have shape matching(*left_inds, *right_inds)
, so that theright_inds
are those that will be contracted in a normal matvec / matmat operation:_matvec = --0--v , _rmatvec = v--0--
- Parameters:
tns (sequence of Tensors or TensorNetwork) – A representation of the hamiltonian
left_inds (sequence of str) – The ‘left’ inds of the effective hamiltonian network.
right_inds (sequence of str) – The ‘right’ inds of the effective hamiltonian network. These should be ordered the same way as
left_inds
.ldims (tuple of int, or None) – The dimensions corresponding to left_inds. Will figure out if None.
rdims (tuple of int, or None) – The dimensions corresponding to right_inds. Will figure out if None.
optimize (str, optional) – The path optimizer to use for the ‘matrix-vector’ contraction.
backend (str, optional) – The array backend to use for the ‘matrix-vector’ contraction.
is_conj (bool, optional) – Whether this object should represent the adjoint operator.
See also
TNLinearOperator1D
- optimize¶
- tags¶
- _kws¶
- _ins = ()¶
- is_conj¶
- _conj_linop = None¶
- _adjoint_linop = None¶
- _transpose_linop = None¶
- _contractors¶
- _matvec(vec)[source]¶
Default matrix-vector multiplication handler.
If self is a linear operator of shape (M, N), then this method will be called on a shape (N,) or (N, 1) ndarray, and should return a shape (M,) or (M, 1) ndarray.
This default implementation falls back on _matmat, so defining that will define matrix-vector multiplication as well.
- _matmat(mat)[source]¶
Default matrix-matrix multiplication handler.
Falls back on the user-defined _matvec method, so defining that will define matrix multiplication (though in a very suboptimal way).
- to_dense(*inds_seq, to_qarray=False, **contract_opts)[source]¶
Convert this TNLinearOperator into a dense array, defaulting to grouping the left and right indices respectively.
- property A¶
- quimb.tensor.tensor_core.tnlo_implements(np_function)[source]¶
Register an __array_function__ implementation for TNLinearOperator objects.
- class quimb.tensor.tensor_core.PTensor(fn, params, inds=(), tags=None, left_inds=None)[source]¶
Bases:
Tensor
A tensor whose data array is lazily generated from a set of parameters and a function.
- Parameters:
fn (callable) – The function that generates the tensor data from
params
.params (sequence of numbers) – The initial parameters supplied to the generating function like
fn(params)
.inds (optional) – Should match the shape of
fn(params)
, seeTensor
.tags (optional) – See
Tensor
.left_inds (optional) – See
Tensor
.
See also
- __slots__ = ('_data', '_inds', '_tags', '_left_inds', '_owners')¶
- property data¶
- property fn¶
- property params¶
- property shape¶
- The size of each dimension.
- property backend¶
- The backend inferred from the data.
- _apply_function(fn)[source]¶
Apply
fn
to the data array of thisPTensor
(lazily), by composing it with the current parametrized array function.
- class quimb.tensor.tensor_core.IsoTensor(data=1.0, inds=(), tags=None, left_inds=None)[source]¶
Bases:
Tensor
A
Tensor
subclass which keeps itsleft_inds
by default even when its data is changed.- __slots__ = ('_data', '_inds', '_tags', '_left_inds', '_owners')¶
- modify(**kwargs)[source]¶
Overwrite the data of this tensor in place.
- Parameters:
data (array, optional) – New data.
apply (callable, optional) – A function to apply to the current data. If data is also given this is applied subsequently.
inds (sequence of str, optional) – New tuple of indices.
tags (sequence of str, optional) – New tags.
left_inds (sequence of str, optional) – New grouping of indices to be ‘on the left’.
- fuse(*args, inplace=False, **kwargs)[source]¶
Combine groups of indices into single indices.
- Parameters:
fuse_map (dict_like or sequence of tuples.) – Mapping like:
{new_ind: sequence of existing inds, ...}
or an ordered mapping like[(new_ind_1, old_inds_1), ...]
in which case the output tensor’s fused inds will be ordered. In both cases the new indices are created at the minimum axis of any of the indices that will be fused.- Returns:
The transposed, reshaped and re-labeled tensor.
- Return type: