Introduction
Introduction Statistics Contact Development Disclaimer Help
tChanged launch command, decreased matrix sizes - numeric - C++ library with nu…
git clone git://src.adamsgaard.dk/numeric
Log
Files
Refs
LICENSE
---
commit 0f91125e97febb30ed6dbf7b35c54f5049b5c498
parent e8142228bb21fd0b1bfeb2464240457104608cb9
Author: Anders Damsgaard <[email protected]>
Date: Tue, 22 Jan 2013 13:17:52 +0100
Changed launch command, decreased matrix sizes
Diffstat:
M matrixmul/Makefile | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/matrixmul/Makefile b/matrixmul/Makefile
t@@ -6,9 +6,11 @@
# but the multiplication should be done in a separate loop.
# Matrix dimensions are specified as a command line argument.
-MATRIXDIMS_SLOW = 100 200 400 800 1600
-MATRIXDIMS = $(MATRIXDIMS_SLOW) 3200
-PREFIXCMD = nice \gtime -ao
+MATRIXDIMS_SLOW = 10 20 40 80 160 320 640 1280
+#MATRIXDIMS = $(MATRIXDIMS_SLOW) 3200
+#PREFIXCMD = nice -n 10 \gtime -ao # For OSX with GNU Time
+#PREFIXCMD = nice -n -10 time -ao # For Linux
+PREFIXCMD = time -ao # For Linux
CC=gcc
CXX=g++
t@@ -142,9 +144,12 @@ octave.dat: octave.m
done
clean:
- rm -f *.o
- rm -f *.dat
- rm -f *.png
+ $(RM) *.o
+ $(RM) *.dat
+ $(RM) *.png
+ $(RM) c-arrofarrs c-linarr
+ $(RM) c-omp-arrofarrs c-omp-linarr
+ $(RM) cpp-vectorofvectors cpp-linvectors
edit:
vim -p Makefile plot.gp
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.