aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/stateless/python/kernel_tests/stateless_random_ops_test.py
blob: d724a5c014d2f9f5f6e3a6704341bcb8c429ae06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# Copyright 2015 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.
# ==============================================================================
"""Tests for stateless random ops."""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import numpy as np
from tensorflow.contrib import stateless
from tensorflow.python.framework import constant_op
from tensorflow.python.framework import dtypes
from tensorflow.python.framework import random_seed
from tensorflow.python.ops import array_ops
from tensorflow.python.ops import random_ops
from tensorflow.python.platform import test

CASES = [(stateless.stateless_random_uniform, random_ops.random_uniform),
         (stateless.stateless_random_normal, random_ops.random_normal),
         (stateless.stateless_truncated_normal, random_ops.truncated_normal)]


def invert_philox(key, value):
  """Invert the Philox bijection."""
  key = np.array(key, dtype=np.uint32)
  value = np.array(value, dtype=np.uint32)
  step = np.array([0x9E3779B9, 0xBB67AE85], dtype=np.uint32)
  for n in range(10)[::-1]:
    key0, key1 = key + n * step
    v0 = value[3] * 0x991a7cdb & 0xffffffff
    v2 = value[1] * 0x6d7cae67 & 0xffffffff
    hi0 = v0 * 0xD2511F53 >> 32
    hi1 = v2 * 0xCD9E8D57 >> 32
    v1 = hi1 ^ value[0] ^ key0
    v3 = hi0 ^ value[2] ^ key1
    value = v0, v1, v2, v3
  return np.array(value)


class StatelessOpsTest(test.TestCase):

  def testMatchStateful(self):
    # Stateless ops should be the same as stateful ops on the first call
    # after seed scrambling.
    key = 0x3ec8f720, 0x02461e29
    for seed in (7, 17), (11, 5), (2, 3):
      preseed = invert_philox(key, (seed[0], 0, seed[1], 0)).astype(np.uint64)
      preseed = preseed[::2] | preseed[1::2] << 32
      random_seed.set_random_seed(seed[0])
      with self.test_session(use_gpu=True):
        for stateless_op, stateful_op in CASES:
          for shape in (), (3,), (2, 5):
            stateful = stateful_op(shape, seed=seed[1])
            pure = stateless_op(shape, seed=preseed)
            self.assertAllEqual(stateful.eval(), pure.eval())

  def testDeterminism(self):
    # Stateless values should be equal iff the seeds are equal (roughly)
    with self.test_session(use_gpu=True):
      for seed_type in [dtypes.int32, dtypes.int64]:
        seed_t = array_ops.placeholder(seed_type, shape=[2])
        seeds = [(x, y) for x in range(5) for y in range(5)] * 3
        for stateless_op, _ in CASES:
          for shape in (), (3,), (2, 5):
            pure = stateless_op(shape, seed=seed_t)
            values = [(seed, pure.eval(feed_dict={seed_t: seed}))
                      for seed in seeds]
            for s0, v0 in values:
              for s1, v1 in values:
                self.assertEqual(s0 == s1, np.all(v0 == v1))

  def testShapeType(self):
    with self.test_session(use_gpu=True):
      for shape_dtype in [dtypes.int32, dtypes.int64]:
        seed_t = array_ops.placeholder(dtypes.int64, shape=[2])
        seeds = [(x, y) for x in range(5) for y in range(5)] * 3
        for stateless_op, _ in CASES:
          for shape in (), (3,), (2, 5):
            pure = stateless_op(constant_op.constant(shape, dtype=shape_dtype),
                                seed=seed_t)
            values = [(seed, pure.eval(feed_dict={seed_t: seed}))
                      for seed in seeds]
            for s0, v0 in values:
              for s1, v1 in values:
                self.assertEqual(s0 == s1, np.all(v0 == v1))

  def testMatchStatefulMultinomial(self):
    # Stateless ops should be the same as stateful ops on the first call
    # after seed scrambling.
    key = 0x3ec8f720, 0x02461e29
    num_samples = 4
    for logits_dtype in np.float16, np.float32, np.float64:
      for output_dtype in dtypes.int32, dtypes.int64:
        for seed in (7, 17), (11, 5), (2, 3):
          preseed = invert_philox(key,
                                  (seed[0], 0, seed[1], 0)).astype(np.uint64)
          preseed = preseed[::2] | preseed[1::2] << 32
          random_seed.set_random_seed(seed[0])
          with self.test_session(use_gpu=True):
            for logits in ([[0.1, 0.25, 0.5, 0.15]], [[0.5, 0.5], [0.8, 0.2],
                                                      [0.25, 0.75]]):
              logits_t = constant_op.constant(logits, dtype=logits_dtype)
              stateful = random_ops.multinomial(
                  logits_t,
                  num_samples,
                  seed=seed[1],
                  output_dtype=output_dtype)
              pure = stateless.stateless_multinomial(
                  logits_t,
                  num_samples,
                  seed=preseed,
                  output_dtype=output_dtype)
              self.assertAllEqual(stateful.eval(), pure.eval())

  def testDeterminismMultinomial(self):
    # Stateless values should be equal iff the seeds are equal (roughly)
    num_samples = 10
    with self.test_session(use_gpu=True):
      for seed_type in [dtypes.int32, dtypes.int64]:
        seed_t = array_ops.placeholder(seed_type, shape=[2])
        seeds = [(x, y) for x in range(5) for y in range(5)] * 3
        for logits in ([[0.1, 0.25, 0.5, 0.15]], [[0.5, 0.5], [0.8, 0.2],
                                                  [0.25, 0.75]]):
          pure = stateless.stateless_multinomial(
              logits, num_samples, seed=seed_t)
          values = [
              (seed, pure.eval(feed_dict={seed_t: seed})) for seed in seeds
          ]
          for s0, v0 in values:
            for s1, v1 in values:
              self.assertEqual(s0 == s1, np.all(v0 == v1))


if __name__ == '__main__':
  test.main()