Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for different TensorNetwork backends #30

Open
grmlarose opened this issue May 5, 2020 · 0 comments
Open

Add support for different TensorNetwork backends #30

grmlarose opened this issue May 5, 2020 · 0 comments

Comments

@grmlarose
Copy link
Owner

For example, tensorflow is not supported because, e.g., mpsim.gates.is_unitary assumes the node object has a .conj() method in the final line

return np.allclose(
    gate.conj().T @ gate, np.identity(gate.shape[0]), atol=1e-5
)

which is unique to the numpy backend. (This also explicitly uses numpy in other locations.)

To add support for different backends:

  1. Understand the best way to do this with tensornetwork.
  2. Add several tests for different backends.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant