Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/util/
Dexample_proto_helper.cc159 int64* ix_p = &ix_t(offset, 0); in CopyIntoSparseTensor() local
160 for (int64 i = 0; i < num_elements; ++i, ix_p += 2) { in CopyIntoSparseTensor()
161 *ix_p = batch; // Column 0 stores the batch entry in CopyIntoSparseTensor()
162 *(ix_p + 1) = i; // Column 1 stores the index in the batch in CopyIntoSparseTensor()
Dexample_proto_fast_parsing.cc1116 int64* ix_p = &indices->matrix<int64>()(offset, 0); in FastParseExample() local
1123 *ix_p = example_index; in FastParseExample()
1125 *(ix_p + 1) = feature_index; in FastParseExample()
1126 ix_p += 2; in FastParseExample()