mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-03-14 20:27:24 +00:00
53 lines
1.7 KiB
Bash
Executable File
53 lines
1.7 KiB
Bash
Executable File
#!/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))
|
|
|
|
prefix=""
|
|
if [ ${GITHUB_ACTIONS:-false} = "true" ]; then
|
|
prefix="::notice::"
|
|
fi
|
|
|
|
if (( total > 0 )); then
|
|
hit_rate=$(awk -v hits="$hits" -v total="$total" 'BEGIN { printf "%.2f", (hits / total) * 100 }')
|
|
echo ${prefix}"sccache hits: $hits | misses: $misses | hit rate: $hit_rate%"
|
|
else
|
|
echo ${prefix}"sccache stats: N/A No new compilation requests"
|
|
fi
|
|
unset SCCACHE_START_HITS
|
|
unset SCCACHE_START_MISSES
|
|
;;
|
|
esac
|