-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrun_memory_timeseries_google.sh
More file actions
64 lines (50 loc) · 9.5 KB
/
run_memory_timeseries_google.sh
File metadata and controls
64 lines (50 loc) · 9.5 KB
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
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Zipf" > memory_timeseries_num/memory_timeseries_sampling_10e4_zipf.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Zipf" >> memory_timeseries_num/memory_timeseries_sampling_10e4_zipf.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Zipf" >> memory_timeseries_num/memory_timeseries_sampling_10e4_zipf.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Zipf" >> memory_timeseries_num/memory_timeseries_sampling_10e4_zipf.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Zipf" >> memory_timeseries_num/memory_timeseries_sampling_10e4_zipf.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Google" > memory_timeseries_num/memory_timeseries_sampling_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=sampling -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=sampling -sample_window=100000 -dataset="Google" > memory_timeseries_num/memory_timeseries_sampling_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=sampling -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=sampling -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=sampling -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=sampling -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Google" > memory_timeseries_num/memory_timeseries_sampling_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_sampling_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehkll -sample_window=10000 -dataset="Google" > memory_timeseries_num/memory_timeseries_ehkll_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehkll -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehkll -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehkll -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehkll -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehkll -sample_window=100000 -dataset="Google" > memory_timeseries_num/memory_timeseries_ehkll_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehkll -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehkll -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehkll -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehkll -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Google" > memory_timeseries_num/memory_timeseries_ehkll_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehuniv -sample_window=10000 -dataset="Google" > memory_timeseries_num/memory_timeseries_ehuniv_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehuniv -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehuniv -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehuniv -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehuniv -sample_window=10000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e4_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehuniv -sample_window=100000 -dataset="Google" > memory_timeseries_num/memory_timeseries_ehuniv_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehuniv -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehuniv -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehuniv -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehuniv -sample_window=100000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e5_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Google" > memory_timeseries_num/memory_timeseries_ehuniv_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_google.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Google" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_google.txt