summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/plotbench/cpque_benchmark.cpp
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-07-07 08:33:14 +0200
committerTyge Løvset <[email protected]>2022-07-07 08:33:14 +0200
commitd108c705ae0b51874f1d18b8916466bdc5830415 (patch)
treed6356a0c46d79aacee0e806ccb90ce50c6610421 /benchmarks/plotbench/cpque_benchmark.cpp
parentb94170eefce899d0b236804681d77fe026956fd9 (diff)
downloadSTC-modified-d108c705ae0b51874f1d18b8916466bdc5830415.tar.gz
STC-modified-d108c705ae0b51874f1d18b8916466bdc5830415.zip
Added missing file: unordered_dense.h. Added -Wall -pedantic to benchmarks and fixed warnings. Thanks to ktprime for reporting.
Diffstat (limited to 'benchmarks/plotbench/cpque_benchmark.cpp')
-rw-r--r--benchmarks/plotbench/cpque_benchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/plotbench/cpque_benchmark.cpp b/benchmarks/plotbench/cpque_benchmark.cpp
index afa9c07e..ca28082b 100644
--- a/benchmarks/plotbench/cpque_benchmark.cpp
+++ b/benchmarks/plotbench/cpque_benchmark.cpp
@@ -15,7 +15,7 @@ static const uint32_t seed = 1234;
void std_test()
{
stc64_t rng;
- int N = 10000000, M = 10;
+ int N = 10000000;
std::priority_queue<float, std::vector<float>, std::greater<float>> pq;
rng = stc64_new(seed);