FrameworkBenchmarks icon indicating copy to clipboard operation
FrameworkBenchmarks copied to clipboard

Cached Queries UI incorrect?

Open benaadams opened this issue 4 years ago • 1 comments

Cached queries is run in sets of 1, 10, 20, 50, 100

image

With the value used being 100

image

However the UI suggests its 20 queries rather than 100

image

and that the sets are 1, 5, 10 ,15, 20 rather than 1, 10, 20, 50, 100

image

benaadams avatar Jul 09 '20 11:07 benaadams

Indeed the cached query levels are run with the defaults:

    parser.add_argument(
        '--cached-query-levels',
        nargs='+',
        default=[1, 10, 20, 50, 100],
        help='List of cached query levels to benchmark')

so it's just the UI that's incorrect. Nice find!

NateBrady23 avatar Jul 09 '20 14:07 NateBrady23