tfixed error in matrix size defs - numeric - C++ library with numerical algorithms
(HTM) git clone git://src.adamsgaard.dk/numeric
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 8eb9f011db2f840dba75241b112b9bbb96d87ae9
(DIR) parent 4f870d6c36907606a4ccc9ad83d053b4759e31b8
(HTM) Author: Anders Damsgaard <adc@geo.au.dk>
Date: Tue, 22 Jan 2013 13:24:20 +0100
fixed error in matrix size defs
Diffstat:
M matrixmul/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/matrixmul/Makefile b/matrixmul/Makefile
t@@ -6,8 +6,8 @@
# but the multiplication should be done in a separate loop.
# Matrix dimensions are specified as a command line argument.
-MATRIXDIMS_SLOW = 10 20 40 80 160 320 640 1280
-#MATRIXDIMS = $(MATRIXDIMS_SLOW) 3200
+MATRIXDIMS_SLOW = 10 20 40 80 160 320 640
+MATRIXDIMS = $(MATRIXDIMS_SLOW) 1280
#PREFIXCMD = nice -n 10 \gtime -ao # For OSX with GNU Time
#PREFIXCMD = nice -n -10 time -ao # For Linux
PREFIXCMD = time -ao # For Linux