| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 | #!/bin/bash# StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2014-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria# Copyright (C) 2014       Université Joseph Fourier## StarPU is free software; you can redistribute it and/or modify# it under the terms of the GNU Lesser General Public License as published by# the Free Software Foundation; either version 2.1 of the License, or (at# your option) any later version.## StarPU is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.## See the GNU Lesser General Public License in COPYING.LGPL for more details.## Script for sorting paje tracesset -e # fail fast# File namesbasename="$PWD"inputfiles=""help_script(){cat << EOFGive statistical analysis of the paje trace$0 [ options ] paje.trace [paje.trace2 ...]Options:   -h      Show this messageExamples:$0 example.traceReport bugs to <@PACKAGE_BUGREPORT@>EOF}if [ "$1" = "--version" ] ; then    echo "$PROGNAME (@PACKAGE_NAME@) @PACKAGE_VERSION@"    exit 0fiif [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ "$1" = "" ] ; then    help_script    exit 0fiwhile getopts "h" opt; do  case $opt in     h)      help_script      exit 4      ;;    \?)      echo "Invalid option: -$OPTARG"      help_script      exit 3      ;;  esacdone# Reading files that need to be analyzedshift $((OPTIND - 1))inputfiles=$@if [[ $# < 1 ]]; then    echo "Error!"    help_script    exit 2figet_event_num() {    grep "^%EventDef[ 	]$2" $1 | sed -e "s/.*$2[ 	]*//"}###################################### Transforming input files into .csvfor file in $inputfiles; do    if [ ! -s $file ]	then	echo "Error: file $file does not exist!"	exit 5    fi    DefCont="$(get_event_num $file PajeDefineContainerType) "    DefEvent="$(get_event_num $file PajeDefineEventType) "    DefState="$(get_event_num $file PajeDefineStateType) "    DefVar="$(get_event_num $file PajeDefineVariableType) "    DefLink="$(get_event_num $file PajeDefineLinkType) "    DefEnt="$(get_event_num $file PajeDefineEntityValue) "    CreateCont="$(get_event_num $file PajeCreateContainer) "    AddVar="$(get_event_num $file PajeAddVariable) "    grepstr="^\\(%\\|$DefCont\\|$DefEvent\\|$DefState\\|$DefVar\\|$DefLink\\|$DefEnt\\|$CreateCont\\|$AddVar\\)"    grepstr=${grepstr//[ 	]/[ 	]}# Sorting traces    grep -e "$grepstr" $file > start.trace    grep -e "$grepstr" -v $file > end.trace    sort -s -V --key=2,2 end.trace > endSorted.trace    if grep -q start_profiling endSorted.trace    then	echo Using start_profiling/stop_profiling trace selection.	sed -ne '/start_profiling/,/stop_profiling/p' < endSorted.trace > endSorted2.trace    else	cp endSorted.trace endSorted2.trace    fi    cat start.trace endSorted2.trace > $filedone# Cleanup: delete temporary filesrm -f start.tracerm -f end.tracerm -f endSorted.tracerm -f endSorted2.trace
 |