aboutsummaryrefslogtreecommitdiff
path: root/redist/dclapack.h
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-17 16:08:49 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-17 16:08:49 -0600
commit728936f7dce1bc545b5136590a6eb660771266d4 (patch)
tree8324ca298a49fc965247c18c3c8214df97d08a83 /redist/dclapack.h
parente2db23ea8401ea8a3e608c3ec4d84423e09047f9 (diff)
downloadlibsurvive-728936f7dce1bc545b5136590a6eb660771266d4.tar.gz
libsurvive-728936f7dce1bc545b5136590a6eb660771266d4.tar.bz2
Added transpose timing tests
Diffstat (limited to 'redist/dclapack.h')
-rw-r--r--redist/dclapack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redist/dclapack.h b/redist/dclapack.h
index e43a4f9..7f30187 100644
--- a/redist/dclapack.h
+++ b/redist/dclapack.h
@@ -24,7 +24,7 @@
*/
#define PRINT(A, m, n) \
{ \
- printf(#A "\n"); \
+ printf(#A " %dx%d\n", m, n); \
for (int _i = 0; _i < (m); _i++) { \
for (int _j = 0; _j < (n); _j++) { \
printf("%4.3f ", _(A, _i, _j)); \