-
Notifications
You must be signed in to change notification settings - Fork 28
/
newbatch_check.sh
110 lines (93 loc) · 11.4 KB
/
newbatch_check.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
!/bin/sh
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 0 > gpucheckruns_256/out00
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 0 > gpucheckruns_256/out01
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 0 > gpucheckruns_256/out02
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 0 > gpucheckruns_256/out03
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 1 > gpucheckruns_256/out10
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 1 > gpucheckruns_256/out11
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "z_order" -l 1 > gpucheckruns_256/out12
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 1 > gpucheckruns_256/out13
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 1 > gpucheckruns_256/out14
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 1 > gpucheckruns_256/out15
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 1 > gpucheckruns_256/out16
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 2 > gpucheckruns_256/out20
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 2 > gpucheckruns_256/out21
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "z_order" -l 2 > gpucheckruns_256/out22
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 2 > gpucheckruns_256/out23
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 2 > gpucheckruns_256/out24
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 2 > gpucheckruns_256/out25
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 2 > gpucheckruns_256/out26
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 3 > gpucheckruns_256/out30
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 3 > gpucheckruns_256/out31
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "z_order" -l 3 > gpucheckruns_256/out32
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 3 > gpucheckruns_256/out33
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 3 > gpucheckruns_256/out34
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 3 > gpucheckruns_256/out35
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 3 > gpucheckruns_256/out36
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 4 > gpucheckruns_256/out40
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 4 > gpucheckruns_256/out41
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "z_order" -l 4 > gpucheckruns_256/out42
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 4 > gpucheckruns_256/out43
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 4 > gpucheckruns_256/out44
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 4 > gpucheckruns_256/out45
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 4 > gpucheckruns_256/out46
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 5 > gpucheckruns_256/out50
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 5 > gpucheckruns_256/out51
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "z_order" -l 5 > gpucheckruns_256/out52
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 5 > gpucheckruns_256/out53
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 5 > gpucheckruns_256/out54
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 5 > gpucheckruns_256/out55
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 5 > gpucheckruns_256/out56
./clamr_gpucheck -N "kdtree" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 6 > gpucheckruns_256/out60
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "original_order" -p "original_order" -l 6 > gpucheckruns_256/out61
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "z_order" -l 6 > gpucheckruns_256/out62
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 6 > gpucheckruns_256/out63
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "z_order" -p "original_order" -l 6 > gpucheckruns_256/out64
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 6 > gpucheckruns_256/out65
./clamr_gpucheck -N "hash_table" -n 256 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 6 > gpucheckruns_256/out66
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 0 > gpucheckruns_512/out00
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 0 > gpucheckruns_512/out01
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 0 > gpucheckruns_512/out02
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 0 > gpucheckruns_512/out03
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 1 > gpucheckruns_512/out10
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 1 > gpucheckruns_512/out11
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "z_order" -l 1 > gpucheckruns_512/out12
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 1 > gpucheckruns_512/out13
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 1 > gpucheckruns_512/out14
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 1 > gpucheckruns_512/out15
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 1 > gpucheckruns_512/out16
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 2 > gpucheckruns_512/out20
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 2 > gpucheckruns_512/out21
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "z_order" -l 2 > gpucheckruns_512/out22
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 2 > gpucheckruns_512/out23
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 2 > gpucheckruns_512/out24
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 2 > gpucheckruns_512/out25
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 2 > gpucheckruns_512/out26
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 3 > gpucheckruns_512/out30
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 3 > gpucheckruns_512/out31
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "z_order" -l 3 > gpucheckruns_512/out32
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 3 > gpucheckruns_512/out33
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 3 > gpucheckruns_512/out34
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 3 > gpucheckruns_512/out35
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 3 > gpucheckruns_512/out36
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 4 > gpucheckruns_512/out40
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 4 > gpucheckruns_512/out41
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "z_order" -l 4 > gpucheckruns_512/out42
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 4 > gpucheckruns_512/out43
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 4 > gpucheckruns_512/out44
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 4 > gpucheckruns_512/out45
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 4 > gpucheckruns_512/out46
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 5 > gpucheckruns_512/out50
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 5 > gpucheckruns_512/out51
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "z_order" -l 5 > gpucheckruns_512/out52
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 5 > gpucheckruns_512/out53
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 5 > gpucheckruns_512/out54
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 5 > gpucheckruns_512/out55
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 5 > gpucheckruns_512/out56
./clamr_gpucheck -N "kdtree" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 6 > gpucheckruns_512/out60
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "original_order" -p "original_order" -l 6 > gpucheckruns_512/out61
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "z_order" -l 6 > gpucheckruns_512/out62
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "hilbert_sort" -l 6 > gpucheckruns_512/out63
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "z_order" -p "original_order" -l 6 > gpucheckruns_512/out64
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "original_order" -l 6 > gpucheckruns_512/out65
./clamr_gpucheck -N "hash_table" -n 512 -i 100 -t 1000 -P "hilbert_sort" -p "local_hilbert" -l 6 > gpucheckruns_512/out66