aboutsummaryrefslogtreecommitdiff
path: root/redist/dclhelpers.h
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-03-17 03:15:46 -0400
committercnlohr <lohr85@gmail.com>2018-03-17 03:15:46 -0400
commitf0c26bd1b0b8ffe05c0c5f04567a9b7aa47c3e6b (patch)
tree3b869cafdea395944a5f9677dcbdafdec9027e5d /redist/dclhelpers.h
parent08eec7a6bd5edc0fd1cae7f98d7788ea3905a467 (diff)
downloadlibsurvive-f0c26bd1b0b8ffe05c0c5f04567a9b7aa47c3e6b.tar.gz
libsurvive-f0c26bd1b0b8ffe05c0c5f04567a9b7aa47c3e6b.tar.bz2
Update dclapack to do automatic size-of-array'ing
Diffstat (limited to 'redist/dclhelpers.h')
-rw-r--r--redist/dclhelpers.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/redist/dclhelpers.h b/redist/dclhelpers.h
index 5010e02..8779e1a 100644
--- a/redist/dclhelpers.h
+++ b/redist/dclhelpers.h
@@ -3,8 +3,6 @@
#define DCL_FLOAT FLT
-//XXX XXX XXX WARNING XXX XXX XXX The argument order may be changing!!!
-
/* Prints matrix A of size[n][m] */
void dclPrint( const DCL_FLOAT * A, int Ac, int n, int m );
@@ -75,7 +73,7 @@ void dcldgemm(
const DCL_FLOAT* B,
int Bc,
DCL_FLOAT beta,
- const DCL_FLOAT * C,
+ DCL_FLOAT * C,
int Cc
);