Home
last modified time | relevance | path

Searched refs:int64_list (Results 1 – 25 of 33) sorted by relevance

12

/external/webrtc/third_party/abseil-cpp/absl/base/
Dbit_cast_test.cc75 static const int64_t int64_list[] = in TEST() local
77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
/external/openscreen/third_party/abseil/src/absl/base/
Dbit_cast_test.cc75 static const int64_t int64_list[] = in TEST() local
77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/
Dbit_cast_test.cc75 static const int64_t int64_list[] = in TEST() local
77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
/external/libtextclassifier/abseil-cpp/absl/base/
Dbit_cast_test.cc75 static const int64_t int64_list[] = in TEST() local
77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
/external/abseil-cpp/absl/base/
Dbit_cast_test.cc75 static const int64_t int64_list[] = in TEST() local
77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
/external/llvm-project/llvm/test/Transforms/Inline/ML/
Dbounds-checks-rewards.ll51 ; NOBOUNDS-NEXT: feature: { int64_list: { value: [6] } }
52 ; RELAXED-BOUNDS-NEXT: feature: { int64_list: { value: [6] } }
53 ; NOBOUNDS-NEXT: feature: { int64_list: { value: [-11] } }
54 ; NOBOUNDS-NEXT: feature: { int64_list: { value: [4] } }
55 ; BOUNDS-NEXT: feature: { int64_list: { value: [2147483647] } }
Ddevelopment-training-log.ll47 ; EXTRA-OUTPUTS-NEXT: feature: { int64_list: { value: [1] } }
49 ; CHECK-NEXT: feature: { int64_list: { value: [1] } }
51 ; CHECK-NEXT: feature: { int64_list: { value: [0] } }
/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing_test.cc240 Int64List* int64_list = in ExampleWithSomeFeatures() local
243 int64_list->add_value(3); in ExampleWithSomeFeatures()
244 int64_list->add_value(270); in ExampleWithSomeFeatures()
245 int64_list->add_value(86942); in ExampleWithSomeFeatures()
384 Int64List* int64_list = in Fuzz() local
388 int64_list->add_value(rng->Rand64()); in Fuzz()
Dexample_proto_fast_parsing.cc284 bool ParseInt64List(Result* int64_list) { in ParseInt64List() argument
285 DCHECK(int64_list != nullptr); in ParseInt64List()
307 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List()
316 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List()
534 SmallVector<int64> int64_list; member
735 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample()
738 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample()
739 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample()
742 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample()
817 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample()
[all …]
Dexample_proto_helper.cc70 const Int64List& values = feature.int64_list(); in FeatureDenseCopy()
120 const Int64List& values = feature.int64_list(); in FeatureSparseCopy()
/external/tensorflow/tensorflow/lite/kernels/parse_example/
Dexample_proto_fast_parsing.cc43 std::copy(src->int64_list.begin(), src->int64_list.end(), in CopySparseBufferToTensor()
157 return buffer.int64_list; in GetListFromBuffer()
Dexample_proto_fast_parsing.h278 bool ParseInt64List(Result* int64_list) { in ParseInt64List() argument
279 DCHECK(int64_list != nullptr); in ParseInt64List()
301 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List()
310 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List()
380 SmallVector<int64> int64_list; member
Dparse_example.cc250 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample()
253 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample()
254 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample()
257 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample()
305 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample()
309 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample()
406 std::copy(src->int64_list.begin(), src->int64_list.end(), in CopySparseBufferToTensor()
/external/tensorflow/tensorflow/core/example/
Dfeature_util_test.cc56 example.features().feature().at("tag").int64_list().value_size()); in TEST()
57 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0)); in TEST()
65 ASSERT_EQ(1, feature.int64_list().value_size()); in TEST()
66 EXPECT_EQ(42, feature.int64_list().value(0)); in TEST()
359 ASSERT_EQ(1, se.context().feature().at("tag").int64_list().value_size()); in TEST()
360 EXPECT_EQ(42, se.context().feature().at("tag").int64_list().value(0)); in TEST()
Dfeature.proto44 // value { int64_list {
83 Int64List int64_list = 3; field
Dexample.proto224 // feature: { int64_list: { value: [ 5 ] } } }
281 // value: { feature: { int64_list: { value: [ 4 ] } }
282 // feature: { int64_list: { value: [ 5 ] } }
283 // feature: { int64_list: { value: [ 2 ] } } }
Dfeature_util.cc69 return feature.int64_list().value(); in GetFeatureValues()
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/
Ddecode_json_example.dict5 "int64_list"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.train.-feature.pbtxt22 name: "int64_list"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.train.-feature.pbtxt22 name: "int64_list"
/external/tensorflow/tensorflow/python/keras/feature_column/
Dsequence_feature_column_integration_test.py48 example.context.feature['int_ctx'].int64_list.value.extend([5])
52 feat.int64_list.value.extend([val] * val)
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
Dreader_dataset_ops_test_base.py110 int64_list=feature_pb2.Int64List(value=[f])),
113 int64_list=feature_pb2.Int64List(value=[r])),
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/
Dmap_vectorization_benchmark.py62 return feature_pb2.Feature(int64_list=feature_pb2.Int64List(value=values))
/external/tensorflow/tensorflow/core/protobuf/
Dmeta_graph.proto210 Int64List int64_list = 3; field
/external/tensorflow/tensorflow/python/tools/
Dsaved_model_cli.py599 example.features.feature[feature_name].int64_list.value.extend(

12