Home
last modified time | relevance | path

Searched refs:float_list (Results 1 – 25 of 39) sorted by relevance

12

/external/tensorflow/tensorflow/core/example/
Dexample.proto33 // value { float_list {
46 // value { float_list {
63 // value { float_list {
74 // value { float_list {
124 // float_list: {
143 // float_list: {
148 // float_list: {
216 // value: { feature: { float_list: { value: [ 4.5 ] } }
217 // feature: { float_list: { value: [ 5.0 ] } } }
223 // value: { feature: { float_list: { value: [ 4.5 ] } }
[all …]
Dfeature.proto18 // value { float_list {
31 // value { float_list {
50 // value { float_list {
82 FloatList float_list = 2; field
Dfeature_util_test.cc134 ASSERT_EQ(1, feature.float_list().value_size()); in TEST()
135 EXPECT_NEAR(3.14, feature.float_list().value(0), kTolerance); in TEST()
144 example.features().feature().at("tag").float_list().value_size()); in TEST()
146 example.features().feature().at("tag").float_list().value(0), in TEST()
/external/webrtc/third_party/abseil-cpp/absl/base/
Dbit_cast_test.cc87 static const float float_list[] = in TEST() local
91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
/external/openscreen/third_party/abseil/src/absl/base/
Dbit_cast_test.cc87 static const float float_list[] = in TEST() local
91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/
Dbit_cast_test.cc87 static const float float_list[] = in TEST() local
91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
/external/libtextclassifier/abseil-cpp/absl/base/
Dbit_cast_test.cc87 static const float float_list[] = in TEST() local
91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
/external/abseil-cpp/absl/base/
Dbit_cast_test.cc87 static const float float_list[] = in TEST() local
91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
/external/tensorflow/tensorflow/core/kernels/fuzzing/corpus/decode_json_example/
Dc4f18ca60a84e9869a28faf6f65dc7585 float_list: {
12 float_list: {
19 float_list: {
26 float_list: {
D7e7f58fc443a11a0a2c5d9b643b7e99b1float_list:{value:29.0}}},feature:{movie_ratings:{float_list:{value:[9.0,9.7]}}},feature:{suggesti…
D85282c1696d98b9843ce3e8bd1cd899f1float_list:{value:29.0}}},feature:{movie_ratings:{float_list:{value:9.0,value:9.7}}},feature:{sugg…
D9fa2f86ea6d3ade36e961247c3026f8d5 float_list: {
12 float_list: {
20 float_list: {
27 float_list: {
D90388b9c8093d8adedad0644b618da875 float_list: {
12 float_list: {
20 float_list: {
27 float_list: {
D849a23936269a261c0370b5e9abe24161float_list:{value:29.0}}},feature:{movie_ratings:{float_list:{value:[[[[[[9.0,9.7]]]]]],value:[[[9…
De9f0ff6ee8d691ae69d2ecb4710030a25 float_list: {
12 float_list: {
19 float_list: {
26 float_list: {
D0875575fb76d630ccb19c5da8aab66b21float_list:{value:[29.0,2,3,4]}}},feature:{movie_ratings:{float_list:{value:[9.0,9.7]}}},feature:{…
D013a29ea098a178f8a36741c9fd911445 float_list: {
20 float_list: {
35 float_list: {
42 float_list: {
Dd456ee029700adef5d284385930102231float_list:{value:29.0}}},feature:{movie:{bytes_list:{value:"VGhlIFNoYXdzaGFuayBSZWRlbXB0aW9u",val…
/external/tensorflow/tensorflow/lite/kernels/parse_example/
Dexample_proto_fast_parsing.h202 bool ParseFloatList(Result* float_list) { in ParseFloatList() argument
203 DCHECK(float_list != nullptr); in ParseFloatList()
226 const size_t initial_size = float_list->size(); in ParseFloatList()
227 float_list->resize(initial_size + packed_length / kNumFloatBytes); in ParseFloatList()
237 std::min(static_cast<uint32>((float_list->size() - initial_size) * in ParseFloatList()
240 if (!stream.ReadRaw(float_list->data() + initial_size, bytes_to_copy)) in ParseFloatList()
247 if (index < float_list->size()) { in ParseFloatList()
248 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList()
256 const size_t initial_size = float_list->size(); in ParseFloatList()
261 float_list->resize(initial_size + num_elements); in ParseFloatList()
[all …]
Dexample_proto_fast_parsing.cc48 std::copy(src->float_list.begin(), src->float_list.end(), in CopySparseBufferToTensor()
161 return buffer.float_list; in GetListFromBuffer()
/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing_test.cc234 FloatList* float_list = in ExampleWithSomeFeatures() local
237 float_list->add_value(1.0); in ExampleWithSomeFeatures()
238 float_list->add_value(2.0); in ExampleWithSomeFeatures()
375 FloatList* float_list = in Fuzz() local
379 float_list->add_value(rng->RandFloat()); in Fuzz()
Dexample_proto_fast_parsing.cc208 bool ParseFloatList(Result* float_list) { in ParseFloatList() argument
209 DCHECK(float_list != nullptr); in ParseFloatList()
232 const size_t initial_size = float_list->size(); in ParseFloatList()
233 float_list->resize(initial_size + packed_length / kNumFloatBytes); in ParseFloatList()
243 std::min(static_cast<uint32>((float_list->size() - initial_size) * in ParseFloatList()
246 if (!stream.ReadRaw(float_list->data() + initial_size, bytes_to_copy)) in ParseFloatList()
253 if (index < float_list->size()) { in ParseFloatList()
254 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList()
262 const size_t initial_size = float_list->size(); in ParseFloatList()
267 float_list->resize(initial_size + num_elements); in ParseFloatList()
[all …]
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/
Ddecode_json_example.dict4 "float_list"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.train.-feature.pbtxt14 name: "float_list"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.train.-feature.pbtxt14 name: "float_list"

12