blob: 90ffd8174911400c3380e6ac295b1b6669fa5fb4 [file] [log] [blame]
# Lint as: python3
# Copyright 2020 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
"""Tests for ops in the tf.math module."""
from absl import app
from iree.tf.support import tf_test_utils
from iree.tf.support import tf_utils
import numpy as np
import tensorflow.compat.v2 as tf
class QuantizationModule(tf_test_utils.TestModule):
@tf_test_utils.tf_function_unit_test(
input_signature=[tf.TensorSpec([32], tf.float32)],
input_generator=lambda *args: tf_utils.uniform(*args, low=-6, high=6))
def fake_quant(self, x):
return tf.quantization.fake_quant_with_min_max_args(x,
min=-6,
max=6,
num_bits=8,
narrow_range=False,
name=None)
class QuantizationTest(tf_test_utils.TracedModuleTestCase):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._modules = tf_test_utils.compile_tf_module(QuantizationModule)
def main(argv):
del argv # Unused
if hasattr(tf, 'enable_v2_behavior'):
tf.enable_v2_behavior()
QuantizationTest.generate_unit_tests(QuantizationModule)
tf.test.main()
if __name__ == '__main__':
app.run(main)