1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
#!/usr/bin/env perl
use strictures 2;
use GIS::Distance;
use Benchmark qw( cmpthese );
use List::Util qw( any );
use List::MoreUtils qw( zip uniq );
use Module::Find qw( findallmod );
use Getopt::Long;
Getopt::Long::Configure(qw(
gnu_getopt no_ignore_case
));
GetOptions(
'formula|f=s' => \my @formulas,
'pp!' => \my $do_pp,
'xs!' => \my $do_xs,
'geo' => \my $do_geo,
'iters|i=i' => \my $iters,
'dry-run|n' => \my $dry_run,
'h|help' => \my $help,
) or die "Unable to process options!\n";
if ($help) {
require Pod::Usage;
Pod::Usage::pod2usage( -verbose => 2 );
exit 0;
}
@formulas = split(/,/, join(',', @formulas));
$iters ||= 5_000_000;
$do_pp = 1 if !defined $do_pp;
$do_xs = 1 if !defined $do_xs;
my %gis_to_geo;
if ($do_geo) {
require Geo::Distance;
Geo::Distance->import();
*Geo::Distance::new_distance = \&Geo::Distance::distance;
require Geo::Distance::XS;
Geo::Distance::XS->import();
# Geo::Distance::new_distance() proxies to GIS::Distance.
# Geo::Distance::distance() is installed by Geo::Distance::XS.
# Geo::Distance::old_distance() is pure-perl, pre GIS::Distance gutting.
%gis_to_geo = (reverse %Geo::Distance::GEO_TO_GIS_FORMULA_MAP);
}
my @installed_modules = (
grep { $_ !~ m{::Formula} }
grep { $_ ne 'GIS::Distance::Constants' }
grep { $_ ne 'GIS::Distance::Fast' }
findallmod('GIS::Distance')
);
my %installed_modules_lookup = map { $_=>1 } @installed_modules;
my @all_formulas = (
uniq
map { s{^GIS::Distance::}{}r }
map { s{^GIS::Distance::Fast::}{}r }
@installed_modules
);
@formulas = @all_formulas if !@formulas;
my @coords = ( 34.202361, -118.601875, 37.752258, -122.441254 );
my @geo_coords = @coords[1,0,3,2];
my @tests;
foreach my $formula (sort @formulas) {
my $pp_module = "GIS::Distance::$formula";
if ($do_pp and $installed_modules_lookup{$pp_module}) {
my $gis = GIS::Distance->new( $pp_module );
my $code = $pp_module->can('_distance');
push @tests, (
["PP $formula - GIS::Distance->distance" => sub{
return $gis->distance( @coords )->km();
}],
["PP $formula - GIS::Distance->distance_metal" => sub{
return $gis->distance_metal( @coords );
}],
["PP $formula - $pp_module\::_distance" => sub{
return $code->( @coords );
}],
);
}
my $xs_module = "GIS::Distance::Fast::$formula";
if ($do_xs and $installed_modules_lookup{$xs_module}) {
my $gis = GIS::Distance->new( $xs_module );
my $code = $xs_module->can('_distance');
push @tests, (
["XS $formula - GIS::Distance->distance" => sub{
return $gis->distance( @coords )->km();
}],
["XS $formula - GIS::Distance->distance_metal" => sub{
return $gis->distance_metal( @coords );
}],
["XS $formula - $xs_module\::_distance" => sub{
return $code->( @coords );
}],
);
}
my $geo_formula = $gis_to_geo{ $formula };
if ($do_geo and $geo_formula) {
my $geo = Geo::Distance->new();
$geo->formula( $geo_formula );
push @tests, (
["PP $geo_formula - Geo::Distance->old_distance" => sub{
return $geo->old_distance( 'kilometer', @geo_coords );
}],
) if $do_pp;
push @tests, (
["XS $geo_formula - Geo::Distance->new_distance" => sub{
return $geo->new_distance( 'kilometer', @geo_coords );
}],
["XS $geo_formula - Geo::Distance::XS->distance" => sub{
return $geo->distance( 'kilometer', @geo_coords );
}],
["XS $geo_formula - Geo::Distance::XS::distance" => sub{
return Geo::Distance::XS::distance(
$geo, 'kilometer', @geo_coords,
);
}],
) if $do_xs;
}
}
if ($dry_run) {
print "Tests to run:\n";
print(
map { " - $_\n" }
sort
map { $_->[0] }
@tests
);
exit;
}
# Run them all once in case there are runtime errors.
foreach my $test (@tests) { $test->[1]->() }
my @time = gmtime( time() );
my $stamp = sprintf(
'%04d-%02d-%02dT%02d:%02d:%02dZ',
$time[5] + 1900,
$time[4] + 1,
$time[3],
$time[2], $time[1], $time[0],
);
print "$stamp\n";
my %versions;
foreach my $module (keys %INC) {
next if $module !~ m{\.pm$};
$module =~ s{\.pm$}{};
$module =~ s{/}{::}g;
next unless $module->can('distance')
or $module eq 'GIS::Distance::Fast';
my $version = eval("\$$module\::VERSION");
$versions{$module} = $version if $version;
}
foreach my $module (sort keys %versions) {
print "$module $versions{ $module }\n";
}
cmpthese(
$iters,
{ map { @$_ } @tests },
);
__END__
=head1 NAME
author/bench - Benchmark formulas and the various interfaces to them.
=head1 SYNOPSIS
# Benchmark every GIS::Distance and GIS::Distance::Fast formula.
author/bench
# Show which benchmarks would be run for every GIS::Distance::Fast
# and Geo::Distance::XS formula, but don't run them.
author/bench --geo --no-pp --dry-run
# Displays this handy documentation!
author/bench --help
=head1 OPTIONS
=head2 formula
--formula=<formula-short-name>
--formaul=Null
-f Haversine -f Cosine
By default all formulas will be considered for benchmarking.
If you'd like to limit this then you can specify one or more
formulas with this option.
=head2 pp
--no-pp
Disable the C<pp> option, meaning no pure-perl formulas will
be included.
=head2 xs
--no-xs
Disable the C<xs> option, meaning no XS formulas will
be included.
=head2 geo
--geo
L<Geo::Distance> and/or L<Geo::Distance::XS> formulas will be
included.
=head2 iters
--iters=100
-i 10000000
The number of iterations to benchmark each formula against.
The default is C<5,000,000>.
=head2 dry-run
--dry-run
-n
Lists all the benchmarks which would be run, but does not run them.
=head2 help
--help
-h
Displays this handy documentation!
=head1 AUTHORS AND LICENSE
See L<GIS::Distance/AUTHORS> and L<GIS::Distance/LICENSE>.
=cut
|