aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/stateless_random_ops.h
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2018-04-11 18:09:42 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-11 18:11:58 -0700
commit70d99359fcb9aa9efa955fab06227373c734728b (patch)
treee5c9d1c6cbed02be0a352f85f64b525c3dddcbe9 /tensorflow/core/kernels/stateless_random_ops.h
parent1a721ecd9a9992d48c0deb3008b1fc8df297d300 (diff)
Add `tf.contrib.stateless.stateless_multinomial()`.
This is a starting point for Dataset-compatible weighted sampling across a list of datasets. PiperOrigin-RevId: 192540412
Diffstat (limited to 'tensorflow/core/kernels/stateless_random_ops.h')
-rw-r--r--tensorflow/core/kernels/stateless_random_ops.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/tensorflow/core/kernels/stateless_random_ops.h b/tensorflow/core/kernels/stateless_random_ops.h
new file mode 100644
index 0000000000..bcd29c4873
--- /dev/null
+++ b/tensorflow/core/kernels/stateless_random_ops.h
@@ -0,0 +1,34 @@
+/* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+
+#ifndef TENSORFLOW_CORE_KERNELS_STATELESS_RANDOM_OPS_H_
+#define TENSORFLOW_CORE_KERNELS_STATELESS_RANDOM_OPS_H_
+
+#include "tensorflow/core/framework/tensor.h"
+#include "tensorflow/core/lib/random/random_distributions.h"
+
+namespace tensorflow {
+
+// Generates a key and counter that can be used to seed a PhiloxRandom,
+// generator, based on the seed value in `seed_t`.
+//
+// REQUIRES: `seed_t` must be a length-2 vector of type DT_INT{32,64}.
+// `out_key` and `out_counter` must be non-null.
+Status GenerateKey(Tensor seed_t, random::PhiloxRandom::Key* out_key,
+ random::PhiloxRandom::ResultType* out_counter);
+
+} // namespace tensorflow
+
+#endif // TENSORFLOW_CORE_KERNELS_STATELESS_RANDOM_OPS_H_