1122cdce33e3e0a01a7f82645617317530aa571fbA. Unique TensorFlower# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
2ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden#
3ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# Licensed under the Apache License, Version 2.0 (the "License");
4ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# you may not use this file except in compliance with the License.
5ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# You may obtain a copy of the License at
6ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden#
7ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden#     http://www.apache.org/licenses/LICENSE-2.0
8ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden#
9ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# Unless required by applicable law or agreed to in writing, software
10ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# distributed under the License is distributed on an "AS IS" BASIS,
11ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# See the License for the specific language governing permissions and
13ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# limitations under the License.
14ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden# ==============================================================================
153a720e45238190a9c4e5fcc69c3777edc6aeefcbA. Unique TensorFlower
16ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden"""Ops for building quantized models."""
17ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden
18ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Wardenfrom __future__ import absolute_import
19ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Wardenfrom __future__ import division
20ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Wardenfrom __future__ import print_function
21ca4e053aa52ab9a42467d4df814ca9272487dbdfPete Warden
22aa69640c44841d0ea26b1b3ddd5992279e1bb8a2Pete Warden# pylint: disable=unused-import,wildcard-import,g-bad-import-order
23aa69640c44841d0ea26b1b3ddd5992279e1bb8a2Pete Wardenfrom tensorflow.contrib.quantization.python import array_ops as quantized_array_ops
24aa69640c44841d0ea26b1b3ddd5992279e1bb8a2Pete Wardenfrom tensorflow.contrib.quantization.python.math_ops import *
25aa69640c44841d0ea26b1b3ddd5992279e1bb8a2Pete Wardenfrom tensorflow.contrib.quantization.python.nn_ops import *
26aa69640c44841d0ea26b1b3ddd5992279e1bb8a2Pete Warden
2766024fd508748d706b72d0ae5e8b07f917e78458Andrew Harpfrom tensorflow.python.ops import gen_array_ops as quantized_gen_array_ops
2866024fd508748d706b72d0ae5e8b07f917e78458Andrew Harpfrom tensorflow.python.ops.gen_array_ops import dequantize
2966024fd508748d706b72d0ae5e8b07f917e78458Andrew Harpfrom tensorflow.python.ops.gen_array_ops import quantize_v2
3066024fd508748d706b72d0ae5e8b07f917e78458Andrew Harpfrom tensorflow.python.ops.gen_array_ops import quantized_concat
31691f30655d15c0d50650547e45769cc7e75b55d2Zafar Takhirov# pylint: enable=unused-import,wildcard-import,g-bad-import-order
32