changes to run.sh
authoradash <adash>
Sat, 28 Feb 2009 20:53:44 +0000 (20:53 +0000)
committeradash <adash>
Sat, 28 Feb 2009 20:53:44 +0000 (20:53 +0000)
Robust/src/Benchmarks/Prefetch/bm.txt
Robust/src/Benchmarks/Prefetch/run.sh

index 695a43d82a092f85a4b8823c7bcd04703de5a121..b794656d859823de9bff521923b3361b4aa9d814 100644 (file)
@@ -22,6 +22,6 @@ Convolution:2DConv/dsm:1 16000:2 16000:3 16000:4 16000:5 16000:6 16000:7 16000:8
 Convolution:2DConv/dsm:1 2048:2 2048:3 2048:4 2048:5 2048:6 2048:7 2048:8 2048:20482dconv
 Convolution:2DConv/dsm:1 1024:2 1024:3 1024:4 1024:5 1024:6 1024:7 1024:8 1024:10242dconv
 Convolution:2DConv/dsm:1 6000:2 6000:3 6000:4 6000:5 6000:6 6000:7 6000:8 6000:60002dconv
-LookUpService:../Distributed/LookUpService/dsm:-N 1 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 2 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 3 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 4 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 5 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 6 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 7 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:-N 8 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 80:80lookup
-LookUpService:../Distributed/LookUpService/dsm:-N 1 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 2 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 3 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 4 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 5 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 6 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 7 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:-N 8 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 1000:1000lookup
+LookUpService:../Distributed/LookUpService/dsm:-N 1 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 2 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 3 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 4 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 5 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 6 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 7 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:-N 8 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 10:10lookup
+LookUpService:../Distributed/LookUpService/dsm:-N 1 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 2 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 3 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 4 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 5 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 6 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 7 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:-N 8 -nEntry 160 -nTrans 1000 -probRead 96 -nLookUp 15:15lookup
 
index d5c32a9448d9b617c3c14ad6154eef9bd1c9b3b0..7771e5c11be4f3f1d25bf4c3eb5b3dd3d19028ef 100755 (executable)
@@ -3,7 +3,7 @@
 #set -x
 MACHINELIST='dc-1.calit2.uci.edu dc-2.calit2.uci.edu dc-3.calit2.uci.edu dc-4.calit2.uci.edu dc-5.calit2.uci.edu dc-6.calit2.uci.edu dc-7.calit2.uci.edu dc-8.calit2.uci.edu'
 #benchmarks='40962dconv 1200mmver moldynverB'
-benchmarks='80lookup'
+benchmarks='10lookup'
 
 LOGDIR=~/research/Robust/src/Benchmarks/Prefetch/runlog
 TOPDIR=`pwd`
@@ -113,6 +113,7 @@ function callrun {
   PREFETCH=${BENCHMARK}N.bin
   NONPREFETCH=${BENCHMARK}NPC.bin
   NONPREFETCH_NONCACHE=${BENCHMARK}NPNC.bin
+  MANUAL_PREFETCH=${BENCHMARK}RangeN.bin
 
   cd $BMDIR 
 
@@ -135,6 +136,8 @@ echo "------- Running $count threads $BMDIR non-prefetch on $count machines ----
 run 1 $count $NONPREFETCH
 echo "------- Running $count threads $BMDIR prefetch on $count machines -----"
 run 1 $count $PREFETCH
+echo "------- Running $count threads $BMDIR manual prefetch on $count machines -----"
+run 1 $count $MANUAL_PREFETCH
 done
 
 cd $TOPDIR