Compare commits
10 Commits
e0ac19d7c0
...
3914e0b43f
Author | SHA1 | Date | |
---|---|---|---|
3914e0b43f | |||
3ada526b23 | |||
89cc65421c | |||
1200d98323 | |||
07da0d91a5 | |||
58de849fa2 | |||
890f6be36b | |||
352d0b7402 | |||
a7ac2aa7e8 | |||
3e0be2e54c |
78
script.pl
78
script.pl
@ -3,13 +3,14 @@ use v5.32;
|
||||
use HTML::TableExtract;
|
||||
use File::Slurp;
|
||||
use Data::Dumper;
|
||||
use List::Util qw(sum);
|
||||
use Text::SimpleTable::AutoWidth;
|
||||
use WWW::Mechanize ();
|
||||
use List::AllUtils qw/ sum pairmap /;
|
||||
use List::UtilsBy qw/ nsort_by partition_by /;
|
||||
|
||||
use experimental qw/ signatures /;
|
||||
|
||||
unless(caller) {
|
||||
unless (caller) {
|
||||
my $ts = get_mersenne_results();
|
||||
|
||||
generate_output_table($ts)->draw;
|
||||
@ -22,8 +23,12 @@ sub get_mersenne_results() {
|
||||
|
||||
my $mech = WWW::Mechanize->new;
|
||||
|
||||
my $url =
|
||||
'https://www.mersenne.org/results/?extf=1&exp1=1&execm=1&excert=1&exp_lo=2&exp_hi=&limit=10000';
|
||||
my $url = join '?', 'https://www.mersenne.org/results/',
|
||||
join '&',
|
||||
pairmap { join '=', $a, $b }
|
||||
exp_lo => 2,
|
||||
limit => 10_000,
|
||||
map { $_ => 1 } qw/ extf exp1 execm excert /;
|
||||
|
||||
$mech->get($url);
|
||||
|
||||
@ -40,53 +45,38 @@ sub get_mersenne_results() {
|
||||
return extract_first_table($html_string);
|
||||
}
|
||||
|
||||
sub extract_first_table($html) {
|
||||
$html =~ s/\n//g;
|
||||
|
||||
my $te = HTML::TableExtract->new( depth => 0, count => 2 );
|
||||
|
||||
$te->parse($html);
|
||||
|
||||
return $te->first_table_found;
|
||||
|
||||
sub extract_first_table ($html) {
|
||||
return HTML::TableExtract
|
||||
->new( depth => 0, count => 2 )
|
||||
->parse( $html =~ s/\n//gr )
|
||||
->first_table_found;
|
||||
}
|
||||
|
||||
sub generate_output_table ($ts) {
|
||||
|
||||
# group GHZ Days results by computer, compute GHZ Days per Day (GHZ Days / Days)
|
||||
my $list;
|
||||
|
||||
foreach my $row ( $ts->rows ) {
|
||||
foreach my $cell ($row) {
|
||||
my $machine = @$cell[0];
|
||||
my $ghz_days = @$cell[6];
|
||||
$ghz_days =~ s/\s//g;
|
||||
my $days = @$cell[4];
|
||||
$days =~ s/\s//g;
|
||||
|
||||
if ( $days > 0 ) {
|
||||
my $perf = $ghz_days / $days;
|
||||
push( @{ $list->{$machine} }, $perf );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# create hash with each comptuer and its average GHz Days per day
|
||||
my %ranks;
|
||||
foreach my $key ( keys %$list ) {
|
||||
my $mean = sum( @{ $list->{$key} } ) / @{ $list->{$key} };
|
||||
my $rounded = int( $mean + 0.5 );
|
||||
$ranks{$key} = $rounded;
|
||||
}
|
||||
|
||||
# sort hash by the average and print to screen
|
||||
my $tbl = Text::SimpleTable::AutoWidth->new(
|
||||
captions => [qw/ Computer GHZDaysPerDay /] );
|
||||
|
||||
foreach
|
||||
my $key ( reverse sort { $ranks{$a} <=> $ranks{$b} } keys(%ranks) ) {
|
||||
$tbl->row( $key, $ranks{$key} );
|
||||
}
|
||||
# group GHZ Days results by computer, compute GHZ Days per Day (GHZ Days / Days)
|
||||
$tbl->row(@$_) for
|
||||
reverse
|
||||
nsort_by { $_->[1] }
|
||||
pairmap { [ $a, $b ] } # group for the sorting
|
||||
pairmap { $a => sprintf "%.0f", sum(@$b) / @$b } # take the mean
|
||||
pairmap {
|
||||
# calculate our stats
|
||||
$a => [ map { $_->{ghz_days} / $_->{days} } @$b ]
|
||||
}
|
||||
partition_by { $_->{machine} } # group by machine
|
||||
grep { $_->{days} > 0 } # skip entries with no days
|
||||
map { # get the info
|
||||
my $machine = $_->[0];
|
||||
my $days = $_->[4] =~ s/\s//gr;
|
||||
my $ghz_days = $_->[6] =~ s/\s//gr;
|
||||
|
||||
+{ days => $days, ghz_days => $ghz_days, machine => $machine }
|
||||
}
|
||||
$ts->rows;
|
||||
|
||||
return $tbl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user