Home
last modified time | relevance | path

Searched refs:protobuf_int64 (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/core/example/
Dfeature_util_test.cc34 auto tag = GetFeatureValues<protobuf_int64>("tag", example); in TEST()
44 auto values = GetFeatureValues<protobuf_int64>(feature); in TEST()
53 GetFeatureValues<protobuf_int64>("tag", &example)->Add(42); in TEST()
63 GetFeatureValues<protobuf_int64>(&feature)->Add(42); in TEST()
73 GetFeatureValues<protobuf_int64>("tag", &example)->Add(0); in TEST()
82 ASSERT_FALSE(HasFeature<protobuf_int64>("tag", example)); in TEST()
84 GetFeatureValues<protobuf_int64>("tag", &example)->Add(42); in TEST()
86 EXPECT_TRUE(HasFeature<protobuf_int64>("tag", example)); in TEST()
87 auto tag_ro = GetFeatureValues<protobuf_int64>("tag", example); in TEST()
98 GetFeatureValues<protobuf_int64>("tag", &example))); in TEST()
[all …]
Dfeature_util.cc33 bool HasFeature<protobuf_int64>(const string& key, const Features& features) { in HasFeature()
67 const protobuf::RepeatedField<protobuf_int64>& GetFeatureValues<protobuf_int64>( in GetFeatureValues()
73 protobuf::RepeatedField<protobuf_int64>* GetFeatureValues<protobuf_int64>( in GetFeatureValues()
125 void ClearFeatureValues<protobuf_int64>(Feature* feature) { in ClearFeatureValues()
165 const protobuf::RepeatedField<protobuf_int64>& GetFeatureValues<protobuf_int64>(
169 protobuf::RepeatedField<protobuf_int64>* GetFeatureValues<protobuf_int64>(
Dfeature_util.h143 struct RepeatedFieldTrait<protobuf_int64> {
144 using Type = protobuf::RepeatedField<protobuf_int64>;
170 using Type = protobuf_int64;
/external/tensorflow/tensorflow/tools/proto_text/
Dgen_proto_text_functions_lib_test.cc93 proto.set_optional_int64(std::numeric_limits<protobuf_int64>::max()); in TEST()
111 proto.set_optional_int64(std::numeric_limits<protobuf_int64>::lowest()); in TEST()
400 map["abc"] = std::numeric_limits<protobuf_int64>::max(); in TEST()
410 map[std::numeric_limits<protobuf_int64>::max()] = ""; in TEST()
/external/tensorflow/tensorflow/core/util/proto/
Ddecode.h245 protobuf_int64 temp;
246 buf = WireFormatLite::ReadPrimitiveFromArray<protobuf_int64,
410 return ReadPrimitive<protobuf_int64, int64, WireFormatLite::TYPE_INT64>( in ReadValue()
481 return ReadPrimitive<protobuf_int64, int64, in ReadValue()
496 return ReadPrimitive<protobuf_int64, int64, WireFormatLite::TYPE_SINT64>( in ReadValue()
/external/tensorflow/tensorflow/core/platform/
Dprotobuf.h48 using protobuf_int64 = ::google::protobuf::int64; variable
/external/tensorflow/tensorflow/core/kernels/
Dencode_proto_op.cc367 return WriteField<int64, protobuf_int64, WireFormatLite::TYPE_INT64, in WriteField()
454 return WriteField<int64, protobuf_int64, WireFormatLite::TYPE_SFIXED64, in WriteField()
472 return WriteField<int64, protobuf_int64, WireFormatLite::TYPE_SINT64, in WriteField()
/external/tensorflow/tensorflow/core/util/
Dsaved_tensor_slice_util.h119 TENSOR_PROTO_EXTRACT_TYPE(int64, int64, protobuf_int64);
/external/tensorflow/tensorflow/compiler/xla/
Dutil.h177 const tensorflow::protobuf::RepeatedField<tensorflow::protobuf_int64>& v) { in AsInt64Slice()
178 absl::Span<const tensorflow::protobuf_int64> slice(v); in AsInt64Slice()
/external/tensorflow/tensorflow/compiler/xla/service/mlir_gpu/experimental/conv_emitter/
Dconv_emitter.cc63 absl::Span<const tensorflow::protobuf_int64> spatial_dims, in GetShapeInfo()
/external/tensorflow/tensorflow/core/framework/
Dtensor.cc345 protobuf::RepeatedField<protobuf_int64> copy(data, data + n); in Fill()
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.cc1186 const tensorflow::protobuf::RepeatedField<tensorflow::protobuf_int64>& in VerifyConvolution()