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.

62 lines
1.8KB

  1. import clifford as lc
  2. from numpy import *
  3. from scipy.linalg import sqrtm
  4. from qi import *
  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", 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. pass
  16. #assert lc.find_up_to_phase(id) == (0, 0)
  17. #assert lc.find_up_to_phase(px) == (1, 0)
  18. #assert lc.find_up_to_phase(exp(1j*pi/4.)*ha) == (4, 7)
  19. def get_action(u):
  20. """ What does this unitary operator do to the Paulis? """
  21. return [identify_pauli(u * p * u.H) for p in paulis]
  22. def format_action(action):
  23. return "".join("{}{}".format("+" if s >= 0 else "-", p) for s, p in action)
  24. def test_we_have_24_matrices():
  25. """ Check that we have 24 unique actions on the Bloch sphere """
  26. actions = set(tuple(get_action(u)) for u in lc.unitaries)
  27. assert len(set(actions)) == 24
  28. def test_we_have_all_useful_gates():
  29. """ Check that all the interesting gates are included up to a global phase """
  30. common_us = id, px, py, pz, ha, ph, sqz, msqz, sqy, msqy, sqx, msqx
  31. for u in common_us:
  32. print lc.find_up_to_phase(u)
  33. def test_group():
  34. """ Test we are really in a group """
  35. matches = set()
  36. for a, b in tqdm(it.combinations(lc.unitaries, 2), "Testing this is a group"):
  37. i, phase = lc.find_up_to_phase(a*b)
  38. matches.add(i)
  39. assert len(matches)==24
  40. def test_conjugation_table():
  41. """ Check that the table of Hermitian conjugates is okay """
  42. assert len(set(lc.conjugation_table))==24
  43. def test_times_table():
  44. """ Check the times table """
  45. assert lc.times_table[0][4]==4