Definition at line 79 of file TimeStats.h. References ComputePercentages(), mGroups, and StopTime(). Referenced by Impala::Util::operator<<(), and Impala::Core::Training::Svm::Predict(). 00080 { 00081 StopTime(); 00082 ComputePercentages(); 00083 os << "timestats - " << mGroups.size() << " groups\n"; 00084 for(int i=0 ; i<mGroups.size() ; i++) 00085 { 00086 Group* g = mGroups[i]; 00087 os << " " << g->mName << ": " << g->mPercentage << "% = " << g->mTotal << " (avrg. " << g->mTotal/g->mMeasurements.size() << ")\n"; 00088 } 00089 os << std::endl; 00090 }
Here is the call graph for this function:
|