-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_all_jw.sh
61 lines (49 loc) · 2.99 KB
/
run_all_jw.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
sbatch --array=1,3,16,23 --mem-per-cpu=2GB --job-name=pauli_jw run_simulation.sh \
--method Pauli \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=1,3,16,23 --mem-per-cpu=2GB --job-name=grpauli_jw run_simulation.sh \
--method Grouped_Pauli \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=1,3,16,23 --mem-per-cpu=4GB --job-name=sic_jw run_simulation.sh \
--method SIC-POVM \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=1,3,16,23 --mem-per-cpu=4GB --job-name=goog_jw run_simulation.sh \
--method Google-POVM \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=1,3,16,23 --mem-per-cpu=4GB --job-name=grad_sic_jw run_simulation.sh \
--method Grad-POVM \
--samples 1 \
--shots 1000000
sbatch --array=1,3,16,23 --mem-per-cpu=4GB --job-name=grad_goog_jw run_simulation.sh \
--method Grad-Google-POVM \
--samples 1 \
--shots 1000000
# 14-qubit job
sbatch --array=28 --mem-per-cpu=10GB --job-name=pauli_jw run_simulation.sh \
--method Pauli \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=28 --mem-per-cpu=10GB --job-name=grpauli_jw run_simulation.sh \
--method Grouped_Pauli \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=28 --mem-per-cpu=10GB --job-name=sic_jw run_simulation.sh \
--method SIC-POVM \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=28 --mem-per-cpu=10GB --job-name=goog_jw run_simulation.sh \
--method Google-POVM \
--samples 1 \
--shots 1000 10000 10000 1000000
sbatch --array=28 --mem-per-cpu=10GB --job-name=grad_sic_jw run_simulation.sh \
--method Grad-POVM \
--samples 1 \
--shots 1000000
sbatch --array=28 --mem-per-cpu=10GB --job-name=grad_goog_jw run_simulation.sh \
--method Grad-Google-POVM \
--samples 1 \
--shots 1000000