Skip to content

Commit

Permalink
Updated benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
slavenf committed Mar 2, 2024
1 parent 7ce8ae6 commit a706bdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark/seg_vec_emplace_at_begin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void emplace_at_begin(ankerl::nanobench::Bench& bench, int num_elements)

int main()
{
constexpr int num_elements = 10'000'000;
constexpr int num_elements = 100'000'000;

ankerl::nanobench::Bench bench;
bench.title("emplace @ begin() (" + std::to_string(num_elements) + " elements)");
Expand Down
2 changes: 1 addition & 1 deletion benchmark/seg_vec_emplace_front.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void emplace_front(ankerl::nanobench::Bench& bench, int num_elements)

int main()
{
const int num_elements = 10'000'000;
const int num_elements = 100'000'000;

ankerl::nanobench::Bench bench;
bench.title("emplace_front (" + std::to_string(num_elements) + " elements)");
Expand Down

0 comments on commit a706bdb

Please sign in to comment.