From: Roland Häder Date: Mon, 28 Apr 2014 09:20:44 +0000 (+0200) Subject: Also display iterations per second. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=76557740f27824c9b827e5c5ac48fe9728039933 Also display iterations per second. Signed-off-by: Roland Häder --- diff --git a/contrib/chash/chash.php b/contrib/chash/chash.php index 3ba7e162..7401dfe6 100644 --- a/contrib/chash/chash.php +++ b/contrib/chash/chash.php @@ -285,7 +285,7 @@ while (TRUE) { // Only every second if ($testTime >= 1) { // Display hash rate - print ('hashrate=' . $hashrate . ' hashes/sec.' . PHP_EOL); + print ('hashrate=' . $hashrate . ' hashes/sec,iterSecond=' . $iterSecond . ' iterations/sec' . PHP_EOL); // Reset timer $timeDisplay = microtime(TRUE);