Einstein Notation
Einstein Notation
The Einstein notation is available in numpy as np.einsum
2D matrix multiplication can be represented as
np.einsum("ik,kj->ij", A,B)
When using cupy.einsum
the operation can utilise tensor cores in the GPU
Reading
- https://towardsdatascience.com/einstein-index-notation-d62d48795378