Ignore:
Timestamp:
08/01/18 19:09:30 (6 years ago)
Author:
tbretz
Message:
Print average execution time per row.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/root2sql.cc

    r19116 r19120  
    632632    if (verbose>0)
    633633    {
    634         cout << "Total execution time: " << Time().UnixTime()-start.UnixTime() << "s\n" << endl;
     634        const auto sec = Time().UnixTime()-start.UnixTime();
     635        cout << "Total execution time: " << sec << "s ";
     636        cout << "(" << Tools::Fractional(sec/count) << "s/row)\n";
    635637
    636638        try
Note: See TracChangeset for help on using the changeset viewer.