summaryrefslogtreecommitdiffstats
path: root/scripts/contrib
diff options
context:
space:
mode:
authorLeonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>2015-08-30 19:16:07 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-12 22:48:30 +0100
commitf0af24eedff0a9f689283e24767fbff4f7cc8ed7 (patch)
tree2c48771fcca637908fa3a250f1404fb0f4b7a255 /scripts/contrib
parent9485888656ea15f111413497943eafcaba023f9c (diff)
downloadpoky-f0af24eedff0a9f689283e24767fbff4f7cc8ed7.tar.gz
buildstats: Outputs 'task recipe elapsed-time' from each buildstats' recipe
Given a 'buildstats' path (created by bitbake when setting USER_CLASSES ?= "buildstats" on local.conf) and task names, outputs '<task> <recipe> <elapsed time>' for all recipes. Elapsed times are in seconds, and task should be given without the 'do_' prefix. Some useful pipelines 1. Tasks with largest elapsed times $ buildstats.sh -b <buildstats> | sort -k3 -n -r | head do_compile perl-5.20.0-r1 221.82 do_configure gettext-native-0.19.4-r0 140.34 do_compile openssl-native-1.0.2a-r0 107.48 do_compile openssl-1.0.2a-r0 102.10 do_configure perl-native-5.20.0-r0 90.70 do_configure gettext-0.19.4-r0 88.17 do_compile gcc-cross-i586-4.9.2-r0 83.98 do_configure m4-native-1.4.17-r0 83.44 do_compile qemu-native-2.2.0-r1 71.69 do_compile glibc-2.21-r0 60.88 2. Min, max, sum per task $ buildstats.sh | datamash -t' ' -g1 min 3 max 3 sum 3 | sort -k4 -n -r do_configure 0.03 140.34 1968.66 do_compile 0.01 221.82 1664.44 do_install 0.03 40.31 330.45 do_populate_sysroot 0.11 34.45 229.23 do_unpack 0.01 36.1 193.54 do_patch 0.01 9.2 62.07 do_fetch 0.01 6.66 32.13 do_populate_lic 0.09 1.65 30.7 (From OE-Core rev: 29fa8ee01ef3254272bcbdd13a8c7244548639a3) Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-xscripts/contrib/bb-perf/buildstats.sh90
1 files changed, 90 insertions, 0 deletions
diff --git a/scripts/contrib/bb-perf/buildstats.sh b/scripts/contrib/bb-perf/buildstats.sh
new file mode 100755
index 0000000000..96158a9650
--- /dev/null
+++ b/scripts/contrib/bb-perf/buildstats.sh
@@ -0,0 +1,90 @@
1#!/bin/bash
2#
3# Copyright (c) 2011, Intel Corporation.
4# All rights reserved.
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19#
20# DESCRIPTION
21# Given a 'buildstats' path (created by bitbake when setting
22# USER_CLASSES ?= "buildstats" on local.conf) and task names, outputs
23# '<task> <recipe> <elapsed time>' for all recipes. Elapsed times are in
24# seconds, and task should be given without the 'do_' prefix.
25#
26# Some useful pipelines
27#
28# 1. Tasks with largest elapsed times
29# $ buildstats.sh -b <buildstats> | sort -k3 -n -r | head
30#
31# 2. Min, max, sum per task (in needs GNU datamash)
32# $ buildstats.sh -b <buildstats> | datamash -t' ' -g1 min 3 max 3 sum 3 | sort -k4 -n -r
33#
34# AUTHORS
35# Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>
36#
37BS_DIR="tmp/buildstats"
38TASKS="compile:configure:fetch:install:patch:populate_lic:populate_sysroot:unpack"
39
40function usage {
41CMD=$(basename $0)
42cat <<EOM
43Usage: $CMD [-b buildstats_dir] [-t do_task]
44 -b buildstats The path where the folder resides
45 (default: "$BS_DIR")
46 -t tasks The tasks to be computed
47 (default: "$TASKS")
48 -h Display this help message
49EOM
50}
51
52# Parse and validate arguments
53while getopts "b:t:h" OPT; do
54 case $OPT in
55 b)
56 BS_DIR="$OPTARG"
57 ;;
58 t)
59 TASKS="$OPTARG"
60 ;;
61 h)
62 usage
63 exit 0
64 ;;
65 *)
66 usage
67 exit 1
68 ;;
69 esac
70done
71
72# Ensure the buildstats folder exists
73if [ ! -d "$BS_DIR" ]; then
74 echo "ERROR: $BS_DIR does not exist"
75 usage
76 exit 1
77fi
78
79RECIPE_FIELD=1
80TIME_FIELD=4
81
82tasks=(${TASKS//:/ })
83for task in "${tasks[@]}"; do
84 task="do_${task}"
85 for file in $(find ${BS_DIR} -type f -name ${task}); do
86 recipe=$(sed -n -e "/$task/p" ${file} | cut -d ':' -f${RECIPE_FIELD})
87 time=$(sed -n -e "/$task/p" ${file} | cut -d ':' -f${TIME_FIELD} | cut -d ' ' -f2)
88 echo "${task} ${recipe} ${time}"
89 done
90done