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 typeProd in $typeProdList; do
for typeCache in $typeCacheList ; do for typeCache in $typeCacheList ; do
for bin in $binList ; do for bin in $binList ; do
if [ "$typeProd" = "useless_loop" ] case $typeProd in
then "useless_loop" )
case $bin in case $bin in
"jikes_barrier_comm" | "asm_cache_comm" | "c_cache_comm" ) "jikes_barrier_comm" | "asm_cache_comm" | "c_cache_comm" )
for argTypeProd in `seq 1 50 5` ; do for argTypeProd in `seq 1 50 5` ; do
function_run ; function_run ;
done ;; done ;;
* ) argTypeProd=1 ; * )
function_run ;; argTypeProd=1 ;
esac function_run ;;
else esac ;;
argTypeProd=1 ; "matrice" )
function_run ; argTypeProd=16 ;
fi function_run ;;
* )
argTypeProd=1 ;
function_run ;;
esac
done done
done done
done done