# tensorplay._einsum.einsum

Source: https://www.tensorplay.cn/docs/generated/tensorplay._einsum.einsum.html

```python
tensorplay._einsum.einsum(equation, *operands) &#x2192; Tensor
```

Sums the product of the elements of the input operands along dimensions
specified using a notation based on the Einstein summation convention,
e.g. tp.einsum("ij,jk->ik", A, B) computes a matrix multiplication.

tp.einsum(A, [..., 0, 1], B, [..., 1, 2], [..., 0, 2]).
