blob: d622074b77ea6a5d9455c6d80e0c2579d4ed2d6b [file] [log] [blame]
# Copyright 2020 Google LLC
#
# 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
#
# https://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.
from absl import app
import numpy as np
from pyiree.tf.support import tf_test_utils
import tensorflow.compat.v2 as tf
class FillModule(tf.Module):
def __init__(self):
pass
@tf.function(input_signature=[
tf.TensorSpec([2], tf.int32),
tf.TensorSpec([], tf.float32)
])
def fill(self, dims, value):
return tf.fill(dims, value)
class FillTest(tf_test_utils.TracedModuleTestCase):
def __init__(self, *args, **kwargs):
super(FillTest, self).__init__(*args, **kwargs)
self._modules = tf_test_utils.compile_tf_module(FillModule)
def test_fill(self):
def fill(module):
dims = np.array([2, 3], dtype=np.int32)
value = np.array(9., dtype=np.float32)
module.fill(dims, value)
self.compare_backends(fill, self._modules)
def main(argv):
del argv # Unused
if hasattr(tf, 'enable_v2_behavior'):
tf.enable_v2_behavior()
tf.test.main()
if __name__ == '__main__':
app.run(main)