Skip to content

Commit

Permalink
add count128_lcg_shift to benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
rabauke committed Apr 28, 2024
1 parent 038f3f0 commit ab92829
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/time.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include <trng/lcg64.hpp>
#include <trng/lcg64_shift.hpp>
#include <trng/lcg64_count_shift.hpp>
#include <trng/count128_lcg_shift.hpp>
#include <trng/mrg2.hpp>
#include <trng/mrg3.hpp>
#include <trng/mrg3s.hpp>
Expand Down Expand Up @@ -229,6 +230,10 @@ int main() {
trng::lcg64_count_shift r;
time_main(r, "trng::lcg64_count_shift");
}
{
trng::count128_lcg_shift r;
time_main(r, "trng::count128_lcg_shift");
}
{
trng::mrg2 r;
time_main(r, "trng::mrg2");
Expand Down

0 comments on commit ab92829

Please sign in to comment.