aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/random/random.h
blob: 1a20436c4e70faa5e3e144163cae89b2d05d7d1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TENSORFLOW_LIB_RANDOM_RANDOM_H_
#define TENSORFLOW_LIB_RANDOM_RANDOM_H_

#include "tensorflow/core/platform/port.h"

namespace tensorflow {
namespace random {

// Return a 64-bit random value.  Different sequences are generated
// in different processes.
uint64 New64();

}  // namespace random
}  // namespace tensorflow

#endif  // TENSORFLOW_LIB_RANDOM_RANDOM_H_