| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | #!/bin/bash# StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2008-2011,2014                           Université de Bordeaux# Copyright (C) 2010,2015,2017                           CNRS## 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.#DIR=$PWDROOTDIR=$DIR/../..TIMINGDIR=$DIR/timings/mkdir -p $TIMINGDIRfilename=$TIMINGDIR/gflops.datatilelist="256 512 1024 2048"sizelist="1024 2048 4096 8192 16384"trace_header(){	line="# size 	"	for tile in $tilelist	do		line="$line	$tile"	done	echo "$line" > $filename}trace_size(){	size=$1	echo "Computing size $size"		line="$size"	for tile in $tilelist	do		nblocks=$(($size / $tile))		if [ $tile -lt $size -a $nblocks -lt 32 -a $(($size % $tile)) == 0 ];		then			echo "start tile $tile size $size nblocks $nblocks  "			timing=`$ROOTDIR/examples/mult/dw_mult -pin -x $size -y $size -z $size -nblocks $nblocks 2>/dev/null`		else			timing="x"		fi		echo "size : $size tile $tile => $timing us"		line="$line	$timing"	done	echo "$line" >> $filename}cd $ROOTDIRmake clean 1> /dev/null 2> /dev/nullmake examples STARPU_ATLAS=1 CUDA=1 CPUS=3 1> /dev/null 2> /dev/nullcd $DIRtrace_header for size in $sizelistdo	trace_size $size;done
 |