-
Notifications
You must be signed in to change notification settings - Fork 170
/
sccache_stats.sh
executable file
·47 lines (40 loc) · 1.62 KB
/
sccache_stats.sh
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
#!/bin/bash
# This script prints the sccache hit rate between two calls to sccache --show-stats.
# It should be sourced in your script before and after the operations you want to profile,
# with the 'start' or 'end' argument respectively.
mode=$1
if [[ "$mode" != "start" && "$mode" != "end" ]]; then
echo "Invalid mode: $mode"
echo "Usage: $0 {start|end}"
exit 1
fi
# Check if sccache is available
if ! command -v sccache &> /dev/null; then
echo "Notice: sccache is not available. Skipping..."
exit 0
fi
case $mode in
start)
export SCCACHE_START_HITS=$(sccache --show-stats | awk '/^[ \t]*Cache hits[ \t]+[0-9]+/ {print $3}')
export SCCACHE_START_MISSES=$(sccache --show-stats | awk '/^[ \t]*Cache misses[ \t]+[0-9]+/ {print $3}')
;;
end)
if [[ -z ${SCCACHE_START_HITS+x} || -z ${SCCACHE_START_MISSES+x} ]]; then
echo "Error: start stats not collected. Did you call this script with 'start' before your operations?"
exit 1
fi
final_hits=$(sccache --show-stats | awk '/^[ \t]*Cache hits[ \t]+[0-9]+/ {print $3}')
final_misses=$(sccache --show-stats | awk '/^[ \t]*Cache misses[ \t]+[0-9]+/ {print $3}')
hits=$((final_hits - SCCACHE_START_HITS))
misses=$((final_misses - SCCACHE_START_MISSES))
total=$((hits + misses))
if (( total > 0 )); then
hit_rate=$(awk -v hits="$hits" -v total="$total" 'BEGIN { printf "%.2f", (hits / total) * 100 }')
echo "sccache hits: $hits | misses: $misses | hit rate: $hit_rate%"
else
echo "sccache stats: N/A No new compilation requests"
fi
unset SCCACHE_START_HITS
unset SCCACHE_START_MISSES
;;
esac