Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into selective-figure-ge…
Browse files Browse the repository at this point in the history
…neration
  • Loading branch information
coruscating committed Sep 7, 2023
2 parents 23d8525 + 60655bb commit 7ba1285
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@

_CLIFFORD_COMPOSE_1Q = np.load(f"{_DATA_FOLDER}/clifford_compose_1q.npz")["table"]
_CLIFFORD_INVERSE_1Q = np.load(f"{_DATA_FOLDER}/clifford_inverse_1q.npz")["table"]
_CLIFFORD_COMPOSE_2Q = scipy.sparse.load_npz(f"{_DATA_FOLDER}/clifford_compose_2q_sparse.npz")
_CLIFFORD_COMPOSE_2Q = scipy.sparse.lil_matrix(
scipy.sparse.load_npz(f"{_DATA_FOLDER}/clifford_compose_2q_sparse.npz")
)
_CLIFFORD_INVERSE_2Q = np.load(f"{_DATA_FOLDER}/clifford_inverse_2q.npz")["table"]


Expand Down

0 comments on commit 7ba1285

Please sign in to comment.