Home
last modified time | relevance | path

Searched refs:DType (Results 1 – 25 of 34) sorted by relevance

12

/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.dtypes.pbtxt4 name: "DType"
13 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
17 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
21 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
25 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
29 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
33 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
37 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
41 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
45 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
[all …]
Dtensorflow.lite.constants.pbtxt5 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
13 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
17 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
21 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
25 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
Dtensorflow.dtypes.-d-type.pbtxt1 path: "tensorflow.dtypes.DType"
3 is_instance: "<class \'tensorflow.python.framework.dtypes.DType\'>"
Dtensorflow.-d-type.pbtxt1 path: "tensorflow.DType"
3 is_instance: "<class \'tensorflow.python.framework.dtypes.DType\'>"
Dtensorflow.pbtxt40 name: "DType"
313 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
321 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
329 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
333 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
361 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
389 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
393 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
397 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
417 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
[all …]
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.dtypes.pbtxt4 name: "DType"
13 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
17 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
21 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
25 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
29 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
33 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
37 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
41 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
45 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
[all …]
Dtensorflow.pbtxt12 name: "DType"
89 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
97 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
105 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
109 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
133 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
157 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
161 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
165 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
173 mtype: "<class \'tensorflow.python.framework.dtypes.DType\'>"
[all …]
Dtensorflow.dtypes.-d-type.pbtxt1 path: "tensorflow.dtypes.DType"
3 is_instance: "<class \'tensorflow.python.framework.dtypes.DType\'>"
Dtensorflow.-d-type.pbtxt1 path: "tensorflow.DType"
3 is_instance: "<class \'tensorflow.python.framework.dtypes.DType\'>"
/external/tensorflow/tensorflow/python/framework/
Ddtypes.py31 class DType(object): class
322 resource = DType(types_pb2.DT_RESOURCE)
324 variant = DType(types_pb2.DT_VARIANT)
326 float16 = DType(types_pb2.DT_HALF)
330 float32 = DType(types_pb2.DT_FLOAT)
332 float64 = DType(types_pb2.DT_DOUBLE)
336 int32 = DType(types_pb2.DT_INT32)
338 uint8 = DType(types_pb2.DT_UINT8)
340 uint16 = DType(types_pb2.DT_UINT16)
342 uint32 = DType(types_pb2.DT_UINT32)
[all …]
Ddtypes_test.py45 dtypes.DType(datatype_enum).as_datatype_enum)
69 dtypes.DType(types_pb2.DT_INVALID)
287 dtype = dtypes.DType(enum)
291 self.assertEquals(type(dtype2), dtypes.DType)
307 dtype = dtypes.DType(enum)
Dfunction.py616 … dtypes.DType(_.type) for _ in defined._signature.output_arg # pylint: disable=protected-access
1015 output_types = [dtypes.DType(x.type) for x in sig.output_arg]
Dtensor_shape.py182 elif isinstance(value, dtypes.DType):
Dfunc_graph.py103 dtypes.DType,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DDebugInfo.h871 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length);
879 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType);
887 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType);
895 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType);
903 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType);
911 LLVMDIFlags LLVMDITypeGetFlags(LLVMMetadataRef DType);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDebugInfo.cpp1165 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length) { in LLVMDITypeGetName() argument
1166 StringRef Str = unwrap<DIType>(DType)->getName(); in LLVMDITypeGetName()
1171 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType) { in LLVMDITypeGetSizeInBits() argument
1172 return unwrapDI<DIType>(DType)->getSizeInBits(); in LLVMDITypeGetSizeInBits()
1175 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType) { in LLVMDITypeGetOffsetInBits() argument
1176 return unwrapDI<DIType>(DType)->getOffsetInBits(); in LLVMDITypeGetOffsetInBits()
1179 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType) { in LLVMDITypeGetAlignInBits() argument
1180 return unwrapDI<DIType>(DType)->getAlignInBits(); in LLVMDITypeGetAlignInBits()
1183 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType) { in LLVMDITypeGetLine() argument
1184 return unwrapDI<DIType>(DType)->getLine(); in LLVMDITypeGetLine()
[all …]
/external/tensorflow/tensorflow/python/autograph/docs/
Dpyfunc_dtypes.md10 * explicitly, with a specified `tf.DType` value
/external/tensorflow/tensorflow/python/autograph/utils/
Dpy_func.py118 assert isinstance(return_dtypes, dtypes.DType)
/external/tensorflow/tensorflow/python/saved_model/
Dnested_structure_coder.py388 return isinstance(pyobj, dtypes.DType)
401 return dtypes.DType(value.tensor_dtype_value)
/external/tensorflow/tensorflow/python/ops/
Dpartitioned_variables.py129 if not isinstance(dtype, dtypes.DType):
/external/tensorflow/tensorflow/python/tpu/
Ddatasets.py169 if isinstance(source_dataset_output_types, dtypes.DType):
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
Dio_ops.py153 @tc.accepts(dtypes.DType, tc.Collection(tc.Union(string_types, core.AxisLike)),
Dops.py1086 tc.Optional(dtypes.DType),
1131 tc.Optional(dtypes.DType), tc.Optional(string_types))
1151 tc.Optional(dtypes.DType), tc.Optional(string_types))
1171 tc.Optional(dtypes.DType), tc.Optional(string_types))
/external/tensorflow/tensorflow/python/util/
Dpy_checkpoint_reader.i145 return {name: dtypes.DType(type_enum)
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dbatching.py454 dataset_ops.get_legacy_output_types(input_dataset), dtypes.DType):

12