Add test for unstack op.

PiperOrigin-RevId: 285028749
Change-Id: I3ec61b658d4d2cee40bd05547c2c7e16ef445e30
This commit is contained in:
Yunxing Dai 2019-12-11 11:41:19 -08:00 committed by TensorFlower Gardener
parent f4a24cc737
commit 8bdf30c220
2 changed files with 63 additions and 0 deletions

View File

@ -787,6 +787,23 @@ tf_xla_py_test(
],
)
tf_xla_py_test(
name = "unstack_test",
size = "medium",
srcs = ["unstack_test.py"],
shard_count = 5,
tags = ["optonly"],
deps = [
":xla_test",
"//tensorflow/python:array_ops",
"//tensorflow/python:framework_for_generated_wrappers",
"//tensorflow/python:math_ops",
"//tensorflow/python:platform_test",
"//tensorflow/python:training",
"@absl_py//absl/testing:parameterized",
],
)
tf_xla_py_test(
name = "random_ops_test",
size = "small",

View File

@ -0,0 +1,46 @@
# 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.
# ==============================================================================
"""Tests for tensorflow.compiler.tests.unstack."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from absl.testing import parameterized
import numpy as np
from tensorflow.compiler.tests import xla_test
from tensorflow.python.ops import array_ops
from tensorflow.python.platform import test
class UnstackOpTest(xla_test.XLATestCase, parameterized.TestCase):
def _test(self, size):
with self.session() as sess:
x_tf = array_ops.placeholder(np.float32, shape=[size, 512])
with self.test_scope():
ret = array_ops.unstack(x_tf)
ret_vals = sess.run([ret], feed_dict={x_tf: np.zeros([size, 512])})
self.assertLen(ret_vals[0], size)
for ret_val in ret_vals[0]:
self.assertTrue(np.all(ret_val == 0.))
def testLarge2000(self):
self._test(2000)
if __name__ == "__main__":
test.main()