File tree Expand file tree Collapse file tree 1 file changed +20
-6
lines changed Expand file tree Collapse file tree 1 file changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,9 @@ This example showcases several search methods to benchmark different search meth
50
50
51
51
## Sample run
52
52
53
- Use ./run_all.sh script to run the benchmarks:
53
+ Use ./run_all.sh script to run the benchmarks with expected output similar to :
54
54
55
55
56
- >
57
- > Regular build
58
56
> Generating the test data... OK
59
57
>
60
58
> Remapping the data to create compressed vector OK
@@ -63,12 +61,28 @@ Use ./run_all.sh script to run the benchmarks:
63
61
>
64
62
> PASS = 0 -- remap/optimized
65
63
>
66
- > scanner<>::find_eq_str(); 12.9 sec
64
+ > scanner<>::find_eq_str(); 11.04 sec
65
+ >
66
+ > scanner::pipeline find_eq_str(); 6.028 sec
67
+ >
68
+ > scanner::pipeline+MASK find_eq_str(); 1.817 sec
69
+ >
70
+ > scanner::pipeline find_eq_str()-count(); 7.017 sec
71
+ >
72
+ > scanner::pipeline find_eq_str()-OR(); 7.904 sec
73
+ >
74
+ > PASS = 1 -- NOT remapped
75
+ >
76
+ > scanner<>::find_eq_str(); 10.02 sec
77
+ >
78
+ > scanner::pipeline find_eq_str(); 5.114 sec
67
79
>
68
- > scanner::pipeline find_eq_str(); 4.755 sec
80
+ > scanner::pipeline+MASK find_eq_str(); 1.942 sec
69
81
>
70
- > scanner::pipeline find_eq_str()-count(); 4.474 sec
82
+ > scanner::pipeline find_eq_str()-count(); 7.563 sec
71
83
>
84
+ > scanner::pipeline find_eq_str()-OR(); 7.3 sec
85
+ >
72
86
> ...
73
87
74
88
You can’t perform that action at this time.
0 commit comments