einsumt
Multithreaded version of numpy.einsum function.
Reasoning
Numpy's einsum is a fantastic function which allows for sophisticated array operations with a single, clear line of code. However, this function in general does not benefit from the underlaying multicore architecture and all operations are performed on a single CPU.
The idea is then to split the einsum input operands along the chosen subscript, perform computation in threads and then compose the final result by summation (if subscript is not present in output) or concatenation of partial results.
Usage
This function can be used as a replacement for numpy's einsum:
from einsumt import einsumt as einsum
result = einsum(*operands, **kwargs)
In current implementation first operand must be a subscripts string. Other differences will be treated as unintended bugs.
Benchmarking
In order to test, if einsumt would be beneficial in your particular case please run the benchmark, e.g.:
import numpy as np
from einsumt import bench_einsumt
bench_einsumt('aijk,bkl->ail',
np.random.rand(100, 100, 10, 10),
np.random.rand(50, 10, 50))
and the result is:
Platform: Linux
CPU type: Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz
Subscripts: aijk,bkl->ail
Shapes of operands: (100, 100, 10, 10), (50, 10, 50)
Leading index: automatic
Pool type: default
Number of threads: 12
Execution time:
np.einsum: 2755 ms (average from 1 runs)
einsumt: 507.9 ms (average from 5 runs)
Speed up: 5.424x
More exemplary benchmark calls are contained in bench_einsum.py file.
Disclaimer
Before you start to blame me because of little or no speedups please keep in mind that threading costs additional time (because of splitting and joining data for example), so einsumt function would become beneficial for larger arrays only. Note also that in many cases numpy's einsum can be efficiently replaced with combination of optimized dots, tensordots, matmuls, transpositions and so on, instead of einsumt (at cost of code clarity of course).
Release files for einsumt 0.9.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| einsumt-0.9.4.tar.gz | 6.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| einsumt-0.9.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:12.7 kB
Release files / einsumt-0.9.4.tar.gz
| Download URL | einsumt-0.9.4.tar.gz |
|---|---|
| Size | 6.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
06639495c4ef5e34092e536ae868f83fe2885addd0462270dce6e4530216a931
|
|
BLAKE2b-256 checksum How to use checksums |
061fc049bd0fa7073bc0400404cc2a2b98852ae5e3c0d96b6290671629033bfd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.3
|
Release files / einsumt-0.9.4-py3-none-any.whl
| Download URL | einsumt-0.9.4-py3-none-any.whl |
|---|---|
| Size | 6.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
56f56752dc939be8c619c70f0796d853fe3da84e7587ab2fafc21bf936279738
|
|
BLAKE2b-256 checksum How to use checksums |
d4a1757a5410cbde43cffee4bd97adee3c31cb33327dec23b0237d07ee8da1c8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.3
|