fixed two typos
[strong_simulation_gauss_sum_rank.git] / README.txt
1 Strong simulation of single-Pauli measurements using Gauss sums
2 ---------------------------------------------------------------
3
4 See the draft at [https://arxiv.org/abs/2012.11739] for an introduction and description of this code.
5
6 BUILD:
7
8 1. Build code for Gauss sum tensor multiple you'd like to use. Here we choose k=6.
9 $ make gausssums_multipleof6
10
11 2. Build code for generating random Pauli inputs.
12 $ make randommultipleinputPaulis
13
14 3. Build Hilbert vector space code to check our results.
15 $ make hilbertspace_vector
16
17
18 TEST CODE:
19 1. Run test diagonositic
20 $ bash ./test.bash
21
22
23
24 Info on source code:
25 gausssums_multipleof*c need Pauli inputs which can be generated with randommultipleinputPaulis.c.
26
27 NOTE: current gausssums_multipleof*c only support the same number of T gates as number of qubits!
28
29 Output from gausssums_multipleof*c can be verified with hilbertspace_vector.c.