source: trunk/Platforms/Test/script/script2.sh @ 145

Last change on this file since 145 was 136, checked in by rosiere, 15 years ago

1) Add new algo in ifetch queue
2) Add Cancel bit
3) new config

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 320 bytes
Line 
1#Instance_x01_w04_02-rob_32x32.cfg
2
3src=x01_w04_02;
4
5i=1;
6
7while test ${i} -le 256; do
8    j=1;
9
10    while test ${j} -le ${i}; do
11     
12        dest=x01_w04_02-rob_${i}x${j};
13
14        echo ${dest}
15        sed s/${src}/${dest}/ ${src}.cfg > Dhrystone-${dest}.cfg
16
17        j=$((${j}*2));
18    done;
19    i=$((${i}*2));
20done;
Note: See TracBrowser for help on using the repository browser.