Skip to content

mokenyi/einsum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

einsum for xtensor

This project implements the numpy einsum function for the xtensor project. (It borrows heavily from the numpy implementation.) Currently, the syntax looks like this

enum labels: int {
  _ = 0,
  I,
  J,
  K
}

auto x = einsum<subscripts<I,J>,subscripts<J,K,_>>(_).eval<subscripts<K,_,I>>(y,z)
auto w = einsum<subscripts<I,J>,subscripts<J,K,_>>(_).eval<implicit_out>(y,z)

for the equivalent numpy statements

x = np.einsum('ij,jk...->k...i', y, z)
w = np.einsum('ij,jk...', y, z)

Please include the main/include directory to test this in your project.

To run the tests, set the $EINSUM_TEST_HOME environment variable to the full path to the test directory on your machine and then run make && ./test/main.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages