2019-02-08 12:21:20 -07:00
|
|
|
# Copyright 2019 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 tensor_buffer."""
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import tensorflow as tf
|
|
|
|
|
2019-02-08 17:55:29 -07:00
|
|
|
from privacy.analysis import tensor_buffer
|
2019-02-08 12:21:20 -07:00
|
|
|
|
|
|
|
tf.enable_eager_execution()
|
|
|
|
|
|
|
|
|
|
|
|
class TensorBufferTest(tf.test.TestCase):
|
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
size, shape = 2, [2, 3]
|
|
|
|
|
|
|
|
my_buffer = tensor_buffer.TensorBuffer(size, shape, name='my_buffer')
|
|
|
|
|
|
|
|
value1 = [[1, 2, 3], [4, 5, 6]]
|
|
|
|
my_buffer.append(value1)
|
|
|
|
self.assertAllEqual(my_buffer.values.numpy(), [value1])
|
|
|
|
|
|
|
|
value2 = [[4, 5, 6], [7, 8, 9]]
|
|
|
|
my_buffer.append(value2)
|
|
|
|
self.assertAllEqual(my_buffer.values.numpy(), [value1, value2])
|
|
|
|
|
|
|
|
def test_fail_on_scalar(self):
|
|
|
|
with self.assertRaisesRegex(ValueError, 'Shape cannot be scalar.'):
|
|
|
|
tensor_buffer.TensorBuffer(1, ())
|
|
|
|
|
|
|
|
def test_fail_on_inconsistent_shape(self):
|
|
|
|
size, shape = 1, [2, 3]
|
|
|
|
|
|
|
|
my_buffer = tensor_buffer.TensorBuffer(size, shape, name='my_buffer')
|
|
|
|
|
|
|
|
with self.assertRaisesRegex(
|
|
|
|
tf.errors.InvalidArgumentError,
|
|
|
|
'Appending value of inconsistent shape.'):
|
|
|
|
my_buffer.append(tf.ones(shape=[3, 4], dtype=tf.int32))
|
|
|
|
|
|
|
|
def test_fail_on_overflow(self):
|
|
|
|
size, shape = 2, [2, 3]
|
|
|
|
|
|
|
|
my_buffer = tensor_buffer.TensorBuffer(size, shape, name='my_buffer')
|
|
|
|
|
|
|
|
# First two should succeed.
|
|
|
|
my_buffer.append(tf.ones(shape=shape, dtype=tf.int32))
|
|
|
|
my_buffer.append(tf.ones(shape=shape, dtype=tf.int32))
|
|
|
|
|
|
|
|
# Third one should fail.
|
|
|
|
with self.assertRaisesRegex(
|
|
|
|
tf.errors.InvalidArgumentError,
|
|
|
|
'Appending past end of TensorBuffer.'):
|
|
|
|
my_buffer.append(tf.ones(shape=shape, dtype=tf.int32))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
tf.test.main()
|