Commit c873fe29 authored by Brian Pickrell's avatar Brian Pickrell
Browse files

remove use_auto_seed

parent 2e26eb5d
...@@ -31,8 +31,9 @@ ...@@ -31,8 +31,9 @@
* *
* Inputs: (1) the shape of the set to be populated. * Inputs: (1) the shape of the set to be populated.
* (2) randomization seed (uint32). If not given at inference time, the attribute * (2) randomization seed (uint32). If not given at inference time, the attribute
* value, or auto seeding, will be used. Attributes: use_auto_seed bool Have hardware generate * value, or auto seeding, will be used.
* random seed at runtime, overriding the attribute seed seed uint32 Randomization seed *
* Attributes: seed uint32 Randomization seed
* *
* Output: Same shape. * Output: Same shape.
* *
...@@ -53,7 +54,6 @@ namespace op { ...@@ -53,7 +54,6 @@ namespace op {
struct rand_uniform struct rand_uniform
{ {
uint32_t seed = {0}; uint32_t seed = {0};
bool use_auto_seed = false;
// todo: not currently settable // todo: not currently settable
float range_min = 0.0f; float range_min = 0.0f;
...@@ -66,7 +66,7 @@ struct rand_uniform ...@@ -66,7 +66,7 @@ struct rand_uniform
static auto reflect(Self& self, F f) static auto reflect(Self& self, F f)
{ {
return pack( return pack(
f(self.dtype, "dtype"), f(self.seed, "seed"), f(self.use_auto_seed, "use_auto_seed")); f(self.dtype, "dtype"), f(self.seed, "seed"));
} }
std::string name() const { return "rand_uniform"; } std::string name() const { return "rand_uniform"; }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment