aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/bench_reverse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/bench_reverse.cpp')
-rw-r--r--bench/bench_reverse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/bench_reverse.cpp b/bench/bench_reverse.cpp
index 0e695b2f2..1e69ca1b2 100644
--- a/bench/bench_reverse.cpp
+++ b/bench/bench_reverse.cpp
@@ -28,8 +28,8 @@ __attribute__ ((noinline)) void bench_reverse(const MatrixType& m)
BenchTimer timerB, timerH, timerV;
Scalar acc = 0;
- int r = ei_random<int>(0,rows-1);
- int c = ei_random<int>(0,cols-1);
+ int r = internal::random<int>(0,rows-1);
+ int c = internal::random<int>(0,cols-1);
for (int t=0; t<TRIES; ++t)
{
timerB.start();