I'm reading a file, line by line, and extracting integers from it. Some noteworthy points:
- the input file is not in binary;
- I cannot load up the whole file in memory;
file format (only integers, separated by some delimiter):
x1 x2 x3 x4 ... y1 y2 y3 ... z1 z2 z3 z4 z5 ... ...
Just to add context, I'm reading the integers, and counting them, using an std::unordered_map<unsigned int, unsinged int>.
Simply looping through lines, and allocating useless stringstreams, like this:
std::fstream infile(<inpath>, std::ios::in);
while (std::getline(infile, line)) {
std::stringstream ss(line);
}
gives me ~2.7s for a 700MB file.
Parsing each line:
unsigned int item;
std::fstream infile(<inpath>, std::ios::in);
while (std::getline(infile, line)) {
std::stringstream ss(line);
while (ss >> item);
}
Gives me ~17.8s for the same file.
If I change the operator to a std::getline + atoi:
unsigned int item;
std::fstream infile(<inpath>, std::ios::in);
while (std::getline(infile, line)) {
std::stringstream ss(line);
while (std::getline(ss, token, ' ')) item = atoi(token.c_str());
}
It gives ~14.6s.
Is there anything faster than these approaches? I don't think it's necessary to speed up the file reading, just the parsing itself -- both wouldn't make no harm, though (:


unsigned itemtovolatile unsigned itemto ensure the compiler doesn't hork your algorithm tests. – WhozCraig Mar 1 at 17:48perf tools. What you do is not called a profiling. – Vlad Lazarenko Mar 1 at 18:32