@@ -11,14 +11,15 @@ Sample circuits are provided in [circuits](/circuits).
1111## qsim_base usage
1212
1313```
14- ./qsim_base.x -c circuit_file -d maxtime -t num_threads -v verbosity
14+ ./qsim_base.x -c circuit_file -d maxtime -t num_threads -f max_fused_size - v verbosity
1515```
1616
17- | Flag | Description |
17+ | Flag | Description |
1818| -------| ------------|
19- | ` -c circuit_file ` | circuit file to run|
19+ | ` -c circuit_file ` | circuit file to run|
2020| ` -d maxtime ` | maximum time |
2121| ` -t num_threads ` | number of threads to use|
22+ | ` -f max_fused_size ` | maximum fused gate size|
2223| ` -v verbosity ` | verbosity level (0,1,>1)|
2324
2425qsim_base computes all the amplitudes and just prints the first eight of them
@@ -32,15 +33,16 @@ Example:
3233## qsim_von_neumann usage
3334
3435```
35- ./qsim_von_neumann.x -c circuit_file -d maxtime -t num_threads -v verbosity
36+ ./qsim_von_neumann.x -c circuit_file -d maxtime -t num_threads -f max_fused_size - v verbosity
3637```
3738
3839
39- | Flag | Description |
40+ | Flag | Description |
4041| -------| ------------|
41- | ` -c circuit_file ` | circuit file to run|
42+ | ` -c circuit_file ` | circuit file to run|
4243| ` -d maxtime ` | maximum time |
4344| ` -t num_threads ` | number of threads to use|
45+ | ` -f max_fused_size ` | maximum fused gate size|
4446| ` -v verbosity ` | verbosity level (0,1,>1)|
4547
4648qsim_von_neumann computes all the amplitudes and calculates the von Neumann
@@ -58,17 +60,19 @@ Example:
5860./qsim_amplitudes.x -c circuit_file \
5961 -d times_to_save_results \
6062 -i input_files \
61- -o output_files \
63+ -o output_files \
64+ -f max_fused_size \
6265 -t num_threads -v verbosity
6366```
6467
65- | Flag | Description |
68+ | Flag | Description |
6669| -------| ------------|
67- | ` -c circuit_file ` | circuit file to run|
70+ | ` -c circuit_file ` | circuit file to run|
6871| ` -d times_to_save_results ` | comma-separated list of circuit times to save results at|
6972| ` -i input_files ` | comma-separated list of bitstring input files|
7073| ` -o output_files ` | comma-separated list of amplitude output files|
7174| ` -t num_threads ` | number of threads to use|
75+ | ` -f max_fused_size ` | maximum fused gate size|
7276| ` -v verbosity ` | verbosity level (0,1,>1)|
7377
7478qsim_amplitudes reads input files of bitstrings, computes the corresponding
@@ -94,9 +98,9 @@ Example:
9498 -t num_threads -v verbosity
9599```
96100
97- | Flag | Description |
101+ | Flag | Description |
98102| -------| ------------|
99- | ` -c circuit_file ` | circuit file to run|
103+ | ` -c circuit_file ` | circuit file to run|
100104| ` -d maxtime ` | maximum time |
101105| ` -k part1_qubits ` | comma-separated list of qubit indices for part 1 |
102106| ` -w prefix ` | prefix value |
@@ -173,9 +177,9 @@ maximum "time".
173177 -t num_threads -v verbosity
174178```
175179
176- | Flag | Description |
180+ | Flag | Description |
177181| -------| ------------|
178- | ` -c circuit_file ` | circuit file to run|
182+ | ` -c circuit_file ` | circuit file to run|
179183| ` -d maxtime ` | maximum time |
180184| ` -k part1_qubits ` | comma-separated list of qubit indices for part 1 |
181185| ` -w prefix ` | prefix value |
0 commit comments