Mercurial > hg > Game > Cerium
view example/Miller_Rabin/run.sh @ 1344:fbe51e90993a draft
collada file reader try various test.but it is incorrect move.
author | Taiki TAIRA <e095767@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 13 Jan 2012 08:56:49 +0900 |
parents | 08d81be1c6e4 |
children |
line wrap: on
line source
#!/bin/zsh a=1 while [ $a -le 24 ] do b=0 while [ $b -le 5 ] do echo -n "CPU_NUM $a " (time $* -cpu $a) 1>/dev/null b=`expr $b + 1` done a=`expr $a + 1` done