-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrun_memory_timeseries_all_1M.sh
More file actions
22 lines (15 loc) · 2.9 KB
/
run_memory_timeseries_all_1M.sh
File metadata and controls
22 lines (15 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Dynamic" > memory_timeseries_num/memory_timeseries_sampling_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_sampling_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_sampling_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_sampling_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=sampling -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_sampling_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Dynamic" > memory_timeseries_num/memory_timeseries_ehkll_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehkll -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehkll_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Dynamic" > memory_timeseries_num/memory_timeseries_ehuniv_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=100 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=1000 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_dynamic.txt
go test -v -timeout 0 -run TestIndexingMemory ./ -numts=10000 -numthreads=64 -algo=ehuniv -sample_window=1000000 -dataset="Dynamic" >> memory_timeseries_num/memory_timeseries_ehuniv_10e6_dynamic.txt