From: adash Date: Mon, 12 Jan 2009 22:41:46 +0000 (+0000) Subject: one more missing file X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=96b5163f9af94840a7620304a129d98e8af27e3e;p=IRC.git one more missing file --- diff --git a/Robust/src/Benchmarks/Prefetch/2DFFT/javasingle/Matrix.java b/Robust/src/Benchmarks/Prefetch/2DFFT/javasingle/Matrix.java new file mode 100644 index 00000000..26508167 --- /dev/null +++ b/Robust/src/Benchmarks/Prefetch/2DFFT/javasingle/Matrix.java @@ -0,0 +1,45 @@ +public class Matrix { + public int M, N; //M = column, N = row + public double[][] dataRe; + public double[][] dataIm; + + public Matrix(int M, int N) { + this.M = M; + this.N = N; + dataRe = new double[M][N]; + dataIm = new double[M][N]; + } + + public void setValues() { + for (int i = 0; i