8 #ifndef BC_RANDOM_HOST_H_ 9 #define BC_RANDOM_HOST_H_ 19 template<
class SystemTag>
24 template<
class Tensor,
class value_type>
27 value_type lower_bound,
28 value_type upper_bound)
31 for (
int i = 0; i < tensor.
size(); ++i) {
33 ((value_type(std::rand()) / ((value_type) RAND_MAX + 1))
34 * (upper_bound - lower_bound)) + lower_bound;
39 template<
class Stream,
class Tensor,
class value_type>
43 value_type lower_bound,
44 value_type upper_bound)
47 randomize_kernel(tensor, lower_bound, upper_bound);
BCINLINE size_t size() const
Definition: shape.h:79
#define BC_omp_for__
Definition: common.h:269
static void randomize(Stream stream, Tensor &tensor, value_type lower_bound, value_type upper_bound)
Definition: host.h:40
static void randomize_kernel(Tensor &tensor, value_type lower_bound, value_type upper_bound)
Definition: host.h:25
#define BC_omp_bar__
Definition: common.h:270
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22