Commit abd6a678 authored by gabime's avatar gabime

Set default queue size in async bench to 8192

parent 978df466
......@@ -44,7 +44,7 @@ int main(int argc, char *argv[])
{
int howmany = 1000000;
int queue_size = std::min(howmany + 2, 32768);
int queue_size = std::min(howmany + 2, 8192);
int threads = 10;
int iters = 3;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment