1/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16#ifndef TENSORFLOW_CORE_FRAMEWORK_NUMERIC_TYPES_H_
17#define TENSORFLOW_CORE_FRAMEWORK_NUMERIC_TYPES_H_
18
19#include <complex>
20#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
21// Disable clang-format to prevent 'FixedPoint' header from being included
22// before 'Tensor' header on which it depends.
23// clang-format off
24#include "third_party/eigen3/unsupported/Eigen/CXX11/FixedPoint"
25// clang-format on
26
27#include "tensorflow/core/platform/types.h"
28#include "tensorflow/tsl/framework/numeric_types.h"
29
30namespace tensorflow {
31
32// NOLINTBEGIN(misc-unused-using-decls)
33using tsl::complex128;
34using tsl::complex64;
35
36// We use Eigen's QInt implementations for our quantized int types.
37using tsl::qint16;
38using tsl::qint32;
39using tsl::qint8;
40using tsl::quint16;
41using tsl::quint8;
42// NOLINTEND(misc-unused-using-decls)
43
44} // namespace tensorflow
45
46#endif // TENSORFLOW_CORE_FRAMEWORK_NUMERIC_TYPES_H_
47