Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2KB

  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Exposes a few basic QI operators
  5. """
  6. import numpy as np
  7. from scipy.linalg import sqrtm
  8. def hermitian_conjugate(u):
  9. """ Shortcut to the Hermitian conjugate """
  10. return np.conjugate(np.transpose(u))
  11. # Operators
  12. id = np.array(np.eye(2, dtype=complex))
  13. px = np.array([[0, 1], [1, 0]], dtype=complex)
  14. py = np.array([[0, -1j], [1j, 0]], dtype=complex)
  15. pz = np.array([[1, 0], [0, -1]], dtype=complex)
  16. ha = np.array([[1, 1], [1, -1]], dtype=complex) / np.sqrt(2)
  17. ph = np.array([[1, 0], [0, 1j]], dtype=complex)
  18. sqy = sqrtm(1j * py)
  19. msqy = np.array(sqrtm(-1j * py))
  20. sqz = np.array(sqrtm(1j * pz))
  21. msqz = np.array(sqrtm(-1j * pz))
  22. sqx = np.array(sqrtm(1j * px))
  23. msqx = np.array(sqrtm(-1j * px))
  24. paulis = (px, py, pz)
  25. # CZ gate
  26. cz = np.array(np.eye(4), dtype=complex)
  27. cz[3,3]=-1
  28. # States
  29. plus = np.array([[1],[1]], dtype=complex) / np.sqrt(2)
  30. bond = cz.dot(np.kron(plus, plus))
  31. nobond = np.kron(plus, plus)
  32. # Labelling stuff
  33. common_us = id, px, py, pz, ha, ph, sqz, msqz, sqy, msqy, sqx, msqx
  34. names = "identity", "px", "py", "pz", "hadamard", "phase", "sqz", "msqz", "sqy", "msqy", "sqx", "msqx"
  35. by_name = dict(zip(names, common_us))