Admin/profiling_reports
author blanchet
Fri, 17 Dec 2010 15:30:43 +0100
changeset 41242 8edeb1dbbc76
parent 36859 51af1657263b
child 44152 a07748619f53
permissions -rwxr-xr-x
run the SMT relevance filter only once, then run the normalization/monomorphization code once _per class_ of SMT solvers

#!/usr/bin/env bash
#
# Author: Makarius
#
# DESCRIPTION: Cumulative reports for Poly/ML profiling output.

THIS=$(cd $(dirname "$0"); echo "$PWD")

SRC="$1"
DST="$2"

mkdir -p "$DST"

for FILE in "$SRC"/*.gz
do
  echo "$FILE"
  NAME="$(basename "$FILE" .gz)"
  gzip -dc "$FILE" | "$THIS/profiling_report" > "$DST/$NAME"
done