Home
last modified time | relevance | path

Searched refs:RNG_MAX_COUNTER_SIZE (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/ops/
Dstateless_random_ops_v2.cc113 c->set_output(1, c->MakeShape({RNG_MAX_COUNTER_SIZE})); in __anon293c03d20202()
133 c->set_output(1, c->MakeShape({RNG_MAX_COUNTER_SIZE})); in __anon293c03d20302()
Dstateful_random_ops.cc103 c->set_output(0, c->MakeShape({RNG_MAX_COUNTER_SIZE + RNG_KEY_SIZE})); in __anonae3f3ebb0302()
/external/tensorflow/tensorflow/core/framework/
Drng_alg.h35 static constexpr int RNG_MAX_COUNTER_SIZE = 2; variable
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Ddecompose_resource_ops.cc130 {tensorflow::RNG_MAX_COUNTER_SIZE + tensorflow::RNG_KEY_SIZE}, in matchAndRewrite()
194 int pad = tensorflow::RNG_MAX_COUNTER_SIZE - counter_size; in matchAndRewrite()
/external/tensorflow/tensorflow/core/kernels/
Dstateless_random_ops_v2.cc214 ctx->allocate_output(1, TensorShape({RNG_MAX_COUNTER_SIZE}), in Compute()
243 ctx->allocate_output(1, TensorShape({RNG_MAX_COUNTER_SIZE}), in Compute()
Dstateful_random_ops.cc288 ctx, ctx->allocate_output(0, {RNG_MAX_COUNTER_SIZE + RNG_KEY_SIZE}, in Compute()
291 if (RNG_MAX_COUNTER_SIZE > GetCounterSize(alg)) { in Compute()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dstateful_random_ops.cc450 if (RNG_MAX_COUNTER_SIZE > counter_size) { in Compile()
455 output = PadRight(output, RNG_MAX_COUNTER_SIZE - counter_size); in Compile()
Dstateless_random_ops_v2.cc92 xla::ShapeUtil::MakeShape(xla::U64, {RNG_MAX_COUNTER_SIZE}); in GetKeyCounter()