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.

60 lines
1.7KB

  1. import tables as lc
  2. from numpy import *
  3. from scipy.linalg import sqrtm
  4. import qi
  5. from tqdm import tqdm
  6. import itertools as it
  7. def identify_pauli(m):
  8. """ Given a signed Pauli matrix, name it. """
  9. for sign in (+1, -1):
  10. for pauli_label, pauli in zip("xyz", qi.paulis):
  11. if allclose(sign * pauli, m):
  12. return sign, pauli_label
  13. def _test_find_up_to_phase():
  14. """ Test that slightly suspicious function """
  15. assert lc.find_up_to_phase(id) == (0, 0)
  16. assert lc.find_up_to_phase(px) == (1, 0)
  17. assert lc.find_up_to_phase(exp(1j*pi/4.)*ha) == (4, 7)
  18. def get_action(u):
  19. """ What does this unitary operator do to the Paulis? """
  20. return [identify_pauli(u * p * u.H) for p in qi.paulis]
  21. def format_action(action):
  22. return "".join("{}{}".format("+" if s >= 0 else "-", p) for s, p in action)
  23. def test_we_have_24_matrices():
  24. """ Check that we have 24 unique actions on the Bloch sphere """
  25. actions = set(tuple(get_action(u)) for u in lc.unitaries)
  26. assert len(set(actions)) == 24
  27. def test_we_have_all_useful_gates():
  28. """ Check that all the interesting gates are included up to a global phase """
  29. for name, u in qi.by_name.items():
  30. lc.find_up_to_phase(u)
  31. def _test_group():
  32. """ Test we are really in a group """
  33. matches = set()
  34. for a, b in tqdm(it.combinations(lc.unitaries, 2), "Testing this is a group"):
  35. i, phase = lc.find_up_to_phase(a*b)
  36. matches.add(i)
  37. assert len(matches)==24
  38. def test_conjugation_table():
  39. """ Check that the table of Hermitian conjugates is okay """
  40. assert len(set(lc.conjugation_table))==24
  41. def test_times_table():
  42. """ Check the times table """
  43. assert lc.times_table[0][4]==4