# HG changeset patch # User Chris Cannam # Date 1444249862 -3600 # Node ID 77fca9c01e4679ad51efd809b2a3afc213e6bdab # Parent 4fa5f3f883a2fb75f78badbb19021d1542b37110 Minor text tweak diff -r 4fa5f3f883a2 -r 77fca9c01e46 fft/native.cpp --- a/fft/native.cpp Wed Oct 07 21:28:09 2015 +0100 +++ b/fft/native.cpp Wed Oct 07 21:31:02 2015 +0100 @@ -51,9 +51,9 @@ double ms = chrono::duration(end - start).count() / times; - cerr << "for size " << size << ", iterations " << iterations - << ": total = " << total << ", time = " - << ms << " ms (" << (iterations / (ms / 1000.0)) << " itr/sec)" << endl; + cerr << "for " << iterations << " * size " << size << ": total = " + << total << ", time = " << ms + << " ms (" << (iterations / (ms / 1000.0)) << " itr/sec)" << endl; } }