Home | History | Annotate | Download | only in framework

Lines Matching refs:tensorflow

1 /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
22 #include "tensorflow/core/framework/numeric_types.h"
23 #include "tensorflow/core/platform/types.h"
25 namespace tensorflow {
74 } // namespace tensorflow
80 class numeric_limits<tensorflow::qint8>
81 : public numeric_limits<tensorflow::int8> {};
83 class numeric_limits<tensorflow::quint8>
84 : public numeric_limits<tensorflow::uint8> {};
86 class numeric_limits<tensorflow::qint16>
87 : public numeric_limits<tensorflow::int16> {};
89 class numeric_limits<tensorflow::quint16>
90 : public numeric_limits<tensorflow::uint16> {};
92 class numeric_limits<tensorflow::qint32>
93 : public numeric_limits<tensorflow::int32> {};
97 struct is_signed<tensorflow::qint8> : public is_signed<tensorflow::int8> {};
99 struct is_signed<tensorflow::quint8> : public is_signed<tensorflow::uint8> {};
101 struct is_signed<tensorflow::qint16> : public is_signed<tensorflow::int16> {};
103 struct is_signed<tensorflow::quint16> : public is_signed<tensorflow::uint16> {};
105 struct is_signed<tensorflow::qint32> : public is_signed<tensorflow::int32> {};