Tensor network contraction function for Python 3.
Project description
ncon
ncon is a Python 3 package that implements the NCon function as described here: https://arxiv.org/abs/1402.0939 This Python implementation lacks some of the fancier features described in the paper, but the interface is the same.
ncon requires numpy and works with numpy ndarrays. It also works with the various tensors from (this)[https://github.com/mhauru/tensors] package, but does not require it.
Installation
pip install --user ncon
Usage
The only thing this package exports is the function ncon
. It takes a list of
tensors to be contracted, and a list index lists that specify what gets
contracted with that. It returns a single tensor, that is the result of the
contraction. Here's how the syntax works:
ncon(L, v, order=None, forder=None, check_indices=True):
The first argument L
is a list of tensors.
The second argument v
is a list of list, one for each tensor in L
.
Each v[i]
consists of integers, each of which labels an index of L[i]
.
Positive labels mark indices which are to be contracted (summed over).
So if for instance v[m][i] == 2
and v[n][j] == 2
, then the i
th index of
L[m]
and the j
th index of L[n]
are to be summed over.
Negative labels mark indices which are to remain free (uncontracted).
The keyword argument order
is a list of all the positive labels, which
specifies the order in which the pair-wise tensor contractions are to be done.
By default it is sorted(all-positive-numbers-in-v)
. Note that whenever an
index joining two tensors is about to be contracted together, ncon
contracts
at the same time all indices connecting these two tensors, even if some of them
only come up later in order.
Correspondingly forder
specifies the order to which the remaining free
indices are to be permuted. By default it is
sorted(all-negative-numbers-in-v, reverse=True)
,
meaning for instance [-1,-2,...]
.
If check_indices=True
(the default) then checks are performed to make sure
the contraction is well-defined. If not, an ValueError
with a helpful
description of what went wrong is provided.
If the syntax sounds a lot like Einstein summation, as implemented for example
by np.einsum
, then that's because it is. The benefits of ncon
are that many
tensor networkers are used to its syntax, and it is easy to dynamically
generate index lists and contractions.
Examples
Here's a few examples, straight from the test file.
A matrix product:
a = np.random.randn(3, 4)
b = np.random.randn(4, 5)
ab_ncon = ncon([a, b], ((-1, 1), (1, -2)))
ab_np = np.dot(a, b)
assert np.allclose(ab_ncon, ab_np)
Here the last index of a
and the first index of b
are contracted.
The result is a tensor with two free indices, labeled by -1
and -2
.
The one labeled with -1
becomes the first index of the result. If we gave the
additional argument forder=[-2,-1]
the tranpose would be returned instead.
A more complicated example:
b = np.random.randn(5, 3, 6, 7, 6)
c = np.random.randn(7, 2)
d = np.random.randn(8)
e = np.random.randn(8, 9)
result_ncon = ncon(
(a, b, c, d, e), ([3, -2, 2], [2, 3, 1, 4, 1], [4, -1], [5], [5, -3])
)
result_np = np.einsum("ijk,kilml,mh,q,qp->hjp", a, b, c, d, e)
assert np.allclose(result_ncon, result_np)
Notice that the network here is disconnected, d
and e
are not contracted
with any of the others. When contracting disconnected networks, the connected
parts are always contracted first, and their tensor product is taken at the
end. Traces are also okay, like here on two indices of c
.
By default, the contractions are done in the order [1,2,3,4]. This may not be the optimal choice, in which case we should specify a better contraction order as a keyword argument.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ncon-0.9.0.tar.gz
.
File metadata
- Download URL: ncon-0.9.0.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 925eb8f64a0323e3db2810def4ef8213ba6978b8fac6ce9c56ab9f4e400e0183 |
|
MD5 | f6acc62fc564eb350a23d59282858333 |
|
BLAKE2b-256 | 19ed3d5b1685ce48266fe766e08f1cc4ba3125ec81343600fda14798367149fc |
File details
Details for the file ncon-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: ncon-0.9.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afc9e5548ee64caef673877bb8f18eb0ccb70d87c3882795de18cf92d23874cb |
|
MD5 | 167b1540e9b524a2b8624f3c127ee9eb |
|
BLAKE2b-256 | 97c958ad820fd1651ba871be3ff27e62227bcc59b535605ad4b3bff588027bb6 |