Documentation
¶
Index ¶
- Variables
- type DataType
- type SpecializedType
- func (SpecializedType) Descriptor() protoreflect.EnumDescriptor
- func (x SpecializedType) Enum() *SpecializedType
- func (SpecializedType) EnumDescriptor() ([]byte, []int)deprecated
- func (x SpecializedType) Number() protoreflect.EnumNumber
- func (x SpecializedType) String() string
- func (SpecializedType) Type() protoreflect.EnumType
Constants ¶
This section is empty.
Variables ¶
View Source
var ( DataType_name = map[int32]string{ 0: "DT_INVALID", 1: "DT_FLOAT", 2: "DT_DOUBLE", 3: "DT_INT32", 4: "DT_UINT8", 5: "DT_INT16", 6: "DT_INT8", 7: "DT_STRING", 8: "DT_COMPLEX64", 9: "DT_INT64", 10: "DT_BOOL", 11: "DT_QINT8", 12: "DT_QUINT8", 13: "DT_QINT32", 14: "DT_BFLOAT16", 15: "DT_QINT16", 16: "DT_QUINT16", 17: "DT_UINT16", 18: "DT_COMPLEX128", 19: "DT_HALF", 20: "DT_RESOURCE", 21: "DT_VARIANT", 22: "DT_UINT32", 23: "DT_UINT64", 101: "DT_FLOAT_REF", 102: "DT_DOUBLE_REF", 103: "DT_INT32_REF", 104: "DT_UINT8_REF", 105: "DT_INT16_REF", 106: "DT_INT8_REF", 107: "DT_STRING_REF", 108: "DT_COMPLEX64_REF", 109: "DT_INT64_REF", 110: "DT_BOOL_REF", 111: "DT_QINT8_REF", 112: "DT_QUINT8_REF", 113: "DT_QINT32_REF", 114: "DT_BFLOAT16_REF", 115: "DT_QINT16_REF", 116: "DT_QUINT16_REF", 117: "DT_UINT16_REF", 118: "DT_COMPLEX128_REF", 119: "DT_HALF_REF", 120: "DT_RESOURCE_REF", 121: "DT_VARIANT_REF", 122: "DT_UINT32_REF", 123: "DT_UINT64_REF", } DataType_value = map[string]int32{ "DT_INVALID": 0, "DT_FLOAT": 1, "DT_DOUBLE": 2, "DT_INT32": 3, "DT_UINT8": 4, "DT_INT16": 5, "DT_INT8": 6, "DT_STRING": 7, "DT_COMPLEX64": 8, "DT_INT64": 9, "DT_BOOL": 10, "DT_QINT8": 11, "DT_QUINT8": 12, "DT_QINT32": 13, "DT_BFLOAT16": 14, "DT_QINT16": 15, "DT_QUINT16": 16, "DT_UINT16": 17, "DT_COMPLEX128": 18, "DT_HALF": 19, "DT_RESOURCE": 20, "DT_VARIANT": 21, "DT_UINT32": 22, "DT_UINT64": 23, "DT_FLOAT_REF": 101, "DT_DOUBLE_REF": 102, "DT_INT32_REF": 103, "DT_UINT8_REF": 104, "DT_INT16_REF": 105, "DT_INT8_REF": 106, "DT_STRING_REF": 107, "DT_COMPLEX64_REF": 108, "DT_INT64_REF": 109, "DT_BOOL_REF": 110, "DT_QINT8_REF": 111, "DT_QUINT8_REF": 112, "DT_QINT32_REF": 113, "DT_BFLOAT16_REF": 114, "DT_QINT16_REF": 115, "DT_QUINT16_REF": 116, "DT_UINT16_REF": 117, "DT_COMPLEX128_REF": 118, "DT_HALF_REF": 119, "DT_RESOURCE_REF": 120, "DT_VARIANT_REF": 121, "DT_UINT32_REF": 122, "DT_UINT64_REF": 123, } )
Enum value maps for DataType.
View Source
var ( SpecializedType_name = map[int32]string{ 0: "ST_INVALID", 1: "ST_TENSOR_LIST", 2: "ST_OPTIONAL", } SpecializedType_value = map[string]int32{ "ST_INVALID": 0, "ST_TENSOR_LIST": 1, "ST_OPTIONAL": 2, } )
Enum value maps for SpecializedType.
View Source
var File_tensorflow_core_framework_types_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type DataType ¶
type DataType int32
(== suppress_warning documentation-presence ==) LINT.IfChange
const ( // Not a legal value for DataType. Used to indicate a DataType field // has not been set. DataType_DT_INVALID DataType = 0 // Data types that all computation devices are expected to be // capable to support. DataType_DT_FLOAT DataType = 1 DataType_DT_DOUBLE DataType = 2 DataType_DT_INT32 DataType = 3 DataType_DT_UINT8 DataType = 4 DataType_DT_INT16 DataType = 5 DataType_DT_INT8 DataType = 6 DataType_DT_STRING DataType = 7 DataType_DT_COMPLEX64 DataType = 8 // Single-precision complex DataType_DT_INT64 DataType = 9 DataType_DT_BOOL DataType = 10 DataType_DT_QINT8 DataType = 11 // Quantized int8 DataType_DT_QUINT8 DataType = 12 // Quantized uint8 DataType_DT_QINT32 DataType = 13 // Quantized int32 DataType_DT_BFLOAT16 DataType = 14 // Float32 truncated to 16 bits. Only for cast ops. DataType_DT_QINT16 DataType = 15 // Quantized int16 DataType_DT_QUINT16 DataType = 16 // Quantized uint16 DataType_DT_UINT16 DataType = 17 DataType_DT_COMPLEX128 DataType = 18 // Double-precision complex DataType_DT_HALF DataType = 19 DataType_DT_RESOURCE DataType = 20 DataType_DT_VARIANT DataType = 21 // Arbitrary C++ data types DataType_DT_UINT32 DataType = 22 DataType_DT_UINT64 DataType = 23 // Do not use! These are only for parameters. Every enum above // should have a corresponding value below (verified by types_test). DataType_DT_FLOAT_REF DataType = 101 DataType_DT_DOUBLE_REF DataType = 102 DataType_DT_INT32_REF DataType = 103 DataType_DT_UINT8_REF DataType = 104 DataType_DT_INT16_REF DataType = 105 DataType_DT_INT8_REF DataType = 106 DataType_DT_STRING_REF DataType = 107 DataType_DT_COMPLEX64_REF DataType = 108 DataType_DT_INT64_REF DataType = 109 DataType_DT_BOOL_REF DataType = 110 DataType_DT_QINT8_REF DataType = 111 DataType_DT_QUINT8_REF DataType = 112 DataType_DT_QINT32_REF DataType = 113 DataType_DT_BFLOAT16_REF DataType = 114 DataType_DT_QINT16_REF DataType = 115 DataType_DT_QUINT16_REF DataType = 116 DataType_DT_UINT16_REF DataType = 117 DataType_DT_COMPLEX128_REF DataType = 118 DataType_DT_HALF_REF DataType = 119 DataType_DT_RESOURCE_REF DataType = 120 DataType_DT_VARIANT_REF DataType = 121 DataType_DT_UINT32_REF DataType = 122 DataType_DT_UINT64_REF DataType = 123 )
func (DataType) Descriptor ¶
func (DataType) Descriptor() protoreflect.EnumDescriptor
func (DataType) EnumDescriptor
deprecated
func (DataType) Number ¶
func (x DataType) Number() protoreflect.EnumNumber
func (DataType) Type ¶
func (DataType) Type() protoreflect.EnumType
type SpecializedType ¶
type SpecializedType int32
For identifying the underlying type of a variant. For variants, the types listed here are a subset of the types in the variant type registry, corresponding to commonly used variants which must occasionally be special-cased.
const ( // Invalid/unknown specialized type. SpecializedType_ST_INVALID SpecializedType = 0 // "tensorflow::TensorList" in the variant type registry. SpecializedType_ST_TENSOR_LIST SpecializedType = 1 // "tensorflow::data::Optional" in the variant type registry. SpecializedType_ST_OPTIONAL SpecializedType = 2 )
func (SpecializedType) Descriptor ¶
func (SpecializedType) Descriptor() protoreflect.EnumDescriptor
func (SpecializedType) Enum ¶
func (x SpecializedType) Enum() *SpecializedType
func (SpecializedType) EnumDescriptor
deprecated
func (SpecializedType) EnumDescriptor() ([]byte, []int)
Deprecated: Use SpecializedType.Descriptor instead.
func (SpecializedType) Number ¶
func (x SpecializedType) Number() protoreflect.EnumNumber
func (SpecializedType) String ¶
func (x SpecializedType) String() string
func (SpecializedType) Type ¶
func (SpecializedType) Type() protoreflect.EnumType