-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_test_data.sh
executable file
·32 lines (28 loc) · 2.15 KB
/
generate_test_data.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
#!/bin/bash
set -eu
#J=1, N=2
python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type ed --J 1
# python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J 1 --mbr-degree 1
# python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J 1 --mbr-degree 2
python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type peps --J 1 --peps-max-chi 3
python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mps --J 1 --mps-max-chi 100
#J=1, N=3
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type ed --J 1
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J 1 --mbr-degree 1
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J 1 --mbr-degree 2
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J 1 --mbr-degree 3
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type peps --J 1 --peps-max-chi 3
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mps --J 1 --mps-max-chi 100
#J=-1, N=2
python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type ed --J -1
# python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J -1 --mbr-degree 1
# python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J -1 --mbr-degree 2
python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type peps --J -1 --peps-max-chi 3
python manager.py --nx 2 --ny 2 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mps --J -1 --mps-max-chi 100
#J=-1, N=3
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type ed --J -1
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J -1 --mbr-degree 1
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J -1 --mbr-degree 2
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mbr --J -1 --mbr-degree 3
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type peps --J -1 --peps-max-chi 3
python manager.py --nx 3 --ny 3 --hmin 0.3 --hmax 4.9 --nsteps 10 --type mps --J -1 --mps-max-chi 100