From: bdemsky Date: Sat, 22 Mar 2008 23:31:34 +0000 (+0000) Subject: change makefile to exclude methods from generating prefetches X-Git-Tag: preEdgeChange~216 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=23fe559815a816ad2f7c5d375f863a07c056c670;p=IRC.git change makefile to exclude methods from generating prefetches --- diff --git a/Robust/src/Benchmarks/Prefetch/MatrixMultiply/MatrixMultiply.java b/Robust/src/Benchmarks/Prefetch/MatrixMultiply/MatrixMultiply.java index d1d1ec1d..93dda936 100644 --- a/Robust/src/Benchmarks/Prefetch/MatrixMultiply/MatrixMultiply.java +++ b/Robust/src/Benchmarks/Prefetch/MatrixMultiply/MatrixMultiply.java @@ -54,7 +54,7 @@ public class MatrixMultiply extends Thread{ MMul matrix; atomic { - matrix = global new MMul(400, 400, 400); + matrix = global new MMul(800, 800, 800); matrix.setValues(); matrix.transpose(); } @@ -64,7 +64,7 @@ public class MatrixMultiply extends Thread{ } atomic { - mm[0] = global new MatrixMultiply(matrix,0,0,399,399); + mm[0] = global new MatrixMultiply(matrix,0,0,799,799); } atomic { diff --git a/Robust/src/Benchmarks/Prefetch/MatrixMultiply/makefile b/Robust/src/Benchmarks/Prefetch/MatrixMultiply/makefile index c4264540..76bb6ac3 100644 --- a/Robust/src/Benchmarks/Prefetch/MatrixMultiply/makefile +++ b/Robust/src/Benchmarks/Prefetch/MatrixMultiply/makefile @@ -1,6 +1,6 @@ MAINCLASS=MatrixMultiply SRC=${MAINCLASS}.java -FLAGS=-dsm -prefetch -optimize -profile -debug -mainclass ${MAINCLASS} -o ${MAINCLASS} +FLAGS=-dsm -prefetch -nooptimize -profile -debug -excprefetch MatrixMultiply.main -excprefetch MMul.setValues -excprefetch MMul.transpose -mainclass ${MAINCLASS} -o ${MAINCLASS} default: ../../../buildscript ${FLAGS} ${SRC} clean: