performance comparison

This commit is contained in:
Alexander Kuzmenkov 2020-09-28 15:09:08 +03:00
parent 72e4b10c00
commit c48d212320

View File

@ -78,11 +78,16 @@ for e in root.findall('query'):
assert(len(test_queries) == len(is_short)) assert(len(test_queries) == len(is_short))
# If we're given a list of queries to run, check that it makes sense.
for i in args.queries_to_run or []:
if i < 0 or i >= len(test_queries):
print(f'There is no query no. {i} in this test, only [{0}-{len(test_queries) - 1}] are present')
exit(1)
# If we're only asked to print the queries, do that and exit # If we're only asked to print the queries, do that and exit.
if args.print_queries: if args.print_queries:
for q in test_queries: for i in args.queries_to_run or range(0, len(test_queries)):
print(q) print(test_queries[i])
exit(0) exit(0)
# Print short queries # Print short queries
@ -196,12 +201,7 @@ if args.max_queries:
queries_to_run = random.sample(range(0, len(test_queries)), min(len(test_queries), args.max_queries)) queries_to_run = random.sample(range(0, len(test_queries)), min(len(test_queries), args.max_queries))
if args.queries_to_run: if args.queries_to_run:
# Run the specified queries, with some sanity check. # Run the specified queries.
for i in args.queries_to_run:
if i < 0 or i >= len(test_queries):
print(f'There is no query no. "{i}" in this test, only [{0}-{len(test_queries) - 1}] are present')
exit(1)
queries_to_run = args.queries_to_run queries_to_run = args.queries_to_run
# Run test queries. # Run test queries.