Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/util/
Dexample_proto_helper.cc160 int64_t* ix_p = &ix_t(offset, 0); in CopyIntoSparseTensor() local
161 for (int64_t i = 0; i < num_elements; ++i, ix_p += 2) { in CopyIntoSparseTensor()
162 *ix_p = batch; // Column 0 stores the batch entry in CopyIntoSparseTensor()
163 *(ix_p + 1) = i; // Column 1 stores the index in the batch in CopyIntoSparseTensor()
Dexample_proto_fast_parsing.cc1298 int64* ix_p = &indices->matrix<int64_t>()(offset, 0); in FastParseExample() local
1304 *ix_p = example_index; in FastParseExample()
1306 *(ix_p + 1) = feature_index; in FastParseExample()
1307 ix_p += 2; in FastParseExample()
/external/tensorflow/tensorflow/lite/kernels/parse_example/
Dparse_example.cc515 int64_t* ix_p = indices_p; in FastParseExampleLite() local
524 *ix_p = example_index; in FastParseExampleLite()
526 *(ix_p + 1) = feature_index; in FastParseExampleLite()
527 ix_p += 2; in FastParseExampleLite()