aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/converter_benchmark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/converter_benchmark.cpp')
-rw-r--r--host/utils/converter_benchmark.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/converter_benchmark.cpp b/host/utils/converter_benchmark.cpp
index c0cd28440..f6d7e9650 100644
--- a/host/utils/converter_benchmark.cpp
+++ b/host/utils/converter_benchmark.cpp
@@ -82,8 +82,8 @@ void init_random_vector_complex_float(std::vector<char> &buf_ptr, const size_t n
std::complex<T> * const buf = reinterpret_cast<std::complex<T> * const>(&buf_ptr[0]);
for (size_t i = 0; i < n_items; i++) {
buf[i] = std::complex<T>(
- T((std::rand()/double(RAND_MAX/2)) - 1),
- T((std::rand()/double(RAND_MAX/2)) - 1)
+ T(std::rand()/(RAND_MAX/2.0) - 1),
+ T(std::rand()/(RAND_MAX/2.0) - 1)
);
}
}