commtech: calc_mat takes 16 as argument

This commit is contained in:
Thomas Preud'homme 2009-07-01 16:25:36 +02:00 committed by Thomas Preud'homme
parent 698341b99e
commit 3c00b5727e
1 changed files with 18 additions and 14 deletions

View File

@ -105,20 +105,24 @@ for nbProd in $nbProdList ; do
for typeProd in $typeProdList; do
for typeCache in $typeCacheList ; do
for bin in $binList ; do
if [ "$typeProd" = "useless_loop" ]
then
case $bin in
"jikes_barrier_comm" | "asm_cache_comm" | "c_cache_comm" )
for argTypeProd in `seq 1 50 5` ; do
function_run ;
done ;;
* ) argTypeProd=1 ;
function_run ;;
esac
else
argTypeProd=1 ;
function_run ;
fi
case $typeProd in
"useless_loop" )
case $bin in
"jikes_barrier_comm" | "asm_cache_comm" | "c_cache_comm" )
for argTypeProd in `seq 1 50 5` ; do
function_run ;
done ;;
* )
argTypeProd=1 ;
function_run ;;
esac ;;
"matrice" )
argTypeProd=16 ;
function_run ;;
* )
argTypeProd=1 ;
function_run ;;
esac
done
done
done