-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Split cpsm benchmarking off from input data so that input data can be reused for other matchers. - Add --iterations and --threads to bench_cpsm.py.
- Loading branch information
Showing
2 changed files
with
48 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env python | ||
|
||
# cpsm - fuzzy path matcher | ||
# Copyright (C) 2015 Jamie Liu | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from __future__ import print_function | ||
|
||
import argparse | ||
|
||
import bench | ||
import cpsm | ||
import linuxclock | ||
|
||
if __name__ == "__main__": | ||
argp = argparse.ArgumentParser() | ||
argp.add_argument("-n", "--iterations", nargs="?", type=int, | ||
default=bench.DEFAULT_ITERATIONS, | ||
help="number of iterations per query") | ||
argp.add_argument("-t", "--threads", nargs="?", type=int, default=0, | ||
help="number of matcher threads") | ||
args = argp.parse_args() | ||
for query in bench.QUERIES: | ||
times = [] | ||
for _ in xrange(args.iterations): | ||
start = linuxclock.monotonic() | ||
results = cpsm.ctrlp_match(bench.ITEMS, query, limit=bench.LIMIT, | ||
ispath=True, nr_threads=args.threads) | ||
finish = linuxclock.monotonic() | ||
times.append(finish - start) | ||
print("Query '%s': avg time %fs, results: [%s]" % ( | ||
query, sum(times) / len(times), | ||
", ".join("'%s'" % r for r in results))) |