forked from satanson/cpp_etudes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analyze.pl
executable file
·103 lines (87 loc) · 2.92 KB
/
analyze.pl
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
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
my ($fragment, $instance, $pipeline, $driver, $operator, $opid)=(undef)x6;
my %opcost=();
my @uniq_keys=();
my $plan={};
sub norm_time($) {
my $t = shift;
my %unit=(ns=>1000000, us=>1000, ms=>1);
if (/(\d+(?:\.\d+)?)(ns|us|ms)/){
return ($1+0.0)/$unit{$2};
}
elsif (/(\d+)s(\d+)ms/) {
return ($1+0)*1000+$2;
}
else {
die "undefined time format!";
return undef;
}
}
while(<>) {
if (/Fragment\s+(\d+)/){
$fragment = "Fragment($1)";
next;
}
if (/Instance\s+(\S+)/){
$instance = "Instance($1)";
next;
}
if (/Pipeline\s+\(id=(\d+)\)/) {
$pipeline = "Pipeline($1)";
$plan->{$fragment}{$instance}{pipelines}{$pipeline}{id}=join "_", ($fragment, $instance, $pipeline);
next;
}
if (/PipelineDriver\s+\(id=(\d+)\):/){
$driver = "Driver($1)";
$plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{id}=join "_", ($fragment, $instance, $pipeline, $driver);
next;
}
if (/(\w+)\s+\(plan_node_id=(\d+)\):/){
$operator = "$1($2)";
$opid="plan_node_id=$2";
next;
}
if (/(\w+)\s+\(pseudo_plan_node_id=(-\d+)\):/){
$operator = "$1($2)";
$opid="pseudo_plan_node_id=$2";
next;
}
if (/DegreeOfParallelism:\s+(\d+)/) {
$plan->{$fragment}{$instance}{pipelines}{$pipeline}{DegreeOfParallelism}=$1+0;
next;
}
if (/(DriverActiveTime|DriverPendingTime|DriverInputEmptyTime|DriverFirstInputEmptyTime|DriverFollowupInputEmptyTime|DriverOutputFullTime|DriverPreconditionBlockTime|DriverTotalTime):\s+(\S+)/) {
$plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{$1}=norm_time($2);
next;
}
if (/(LocalRfWaitingSet|ScheduleAccumulatedChunkMoved|ScheduleAccumulatedRowsPerChunk|ScheduleCounter|ScheduleEffectiveCounter):\s+(\d+)/){
$plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{$1}=$2;
next;
}
if (/(?:Pull|Push)TotalTime:\s+(\S+)/) {
if (!defined($operator)){
next;
}
my $uniq_key = join "_", ($fragment, $instance, $pipeline, $driver, $operator);
if (!exists $opcost{$uniq_key}) {
$opcost{$uniq_key} = 0;
push @uniq_keys, $uniq_key;
my $ops = $plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{ops};
if (!defined($ops)) {
$ops=$plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{ops}=[];
my $ops=$plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{ops};
unshift @{$ops}, {op=>$operator, key=>$uniq_key, id=>$opid};
} else {
my $ops=$plan->{$fragment}{$instance}{pipelines}{$pipeline}{drivers}{$driver}{ops};
unshift @{$ops}, {op=>$operator, key=>$uniq_key, id=>$opid};
}
}
$opcost{$uniq_key}+=norm_time($1);
}
}
my @opcost=sort {$a->[1] <=> $b->[1]} map{[$_,$opcost{$_}]} keys %opcost;
print join ("\n", map {sprintf("%0.3f", $_->[1])."\t". $_->[0]} @opcost);
print "\n";