Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing.cc1603 inline void PadFloatFeature(int num_to_pad, float* out) { in PadFloatFeature() argument
1604 for (int i = 0; i < num_to_pad; i++) { in PadFloatFeature()
1609 inline void PadInt64Feature(int num_to_pad, int64* out) { in PadInt64Feature() argument
1610 for (int i = 0; i < num_to_pad; i++) { in PadInt64Feature()
2295 int num_to_pad = expected_max_elements - num_elements; in FastParseSequenceExample() local
2298 out_bytes += num_to_pad; in FastParseSequenceExample()
2301 PadFloatFeature(num_to_pad, out_float); in FastParseSequenceExample()
2302 out_float += num_to_pad; in FastParseSequenceExample()
2305 PadInt64Feature(num_to_pad, out_int64); in FastParseSequenceExample()
2306 out_int64 += num_to_pad; in FastParseSequenceExample()