3 * @defgroup Benchmark Benchmark
8 * Base code for benchmark scripts.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
29 require_once __DIR__
. '/../Maintenance.php';
32 * Base class for benchmark scripts.
36 abstract class Benchmarker
extends Maintenance
{
39 public function __construct() {
40 parent
::__construct();
41 $this->addOption( 'count', "How many times to run a benchmark", false, true );
44 public function bench( array $benchs ) {
46 $count = $this->getOption( 'count', 100 );
48 foreach ( $benchs as $bench ) {
50 if ( !array_key_exists( 'args', $bench ) ) {
55 $start = microtime( true );
56 for ( $i = 0; $i < $count; $i++
) {
57 call_user_func_array( $bench['function'], $bench['args'] );
59 $delta = microtime( true ) - $start;
61 // function passed as a callback
62 if ( is_array( $bench['function'] ) ) {
63 $ret = get_class( $bench['function'][0] ) . '->' . $bench['function'][1];
64 $bench['function'] = $ret;
67 $this->results
[$bench_number] = [
68 'function' => $bench['function'],
69 'arguments' => $bench['args'],
72 'average' => $delta / $count,
77 public function getFormattedResults() {
78 $ret = sprintf( "Running PHP version %s (%s) on %s %s %s\n\n",
85 foreach ( $this->results
as $res ) {
86 // show function with args
87 $ret .= sprintf( "%s times: function %s(%s) :\n",
90 implode( ', ', $res['arguments'] )
92 $ret .= sprintf( " %6.2fms (%6.2fms each)\n",
94 $res['average'] * 1000