From 76557740f27824c9b827e5c5ac48fe9728039933 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 28 Apr 2014 11:20:44 +0200 Subject: [PATCH] Also display iterations per second. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- contrib/chash/chash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2