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* ix_p = &ix_t(offset, 0); in CopyIntoSparseTensor() local
161 for (int64 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.cc1282 int64* ix_p = &indices->matrix<int64>()(offset, 0); in FastParseExample() local
1288 *ix_p = example_index; in FastParseExample()
1290 *(ix_p + 1) = feature_index; in FastParseExample()
1291 ix_p += 2; in FastParseExample()
/external/tensorflow/tensorflow/lite/kernels/parse_example/
Dparse_example.cc513 int64_t* ix_p = indices_p; in FastParseExampleLite() local
522 *ix_p = example_index; in FastParseExampleLite()
524 *(ix_p + 1) = feature_index; in FastParseExampleLite()
525 ix_p += 2; in FastParseExampleLite()