aboutsummaryrefslogtreecommitdiff
path: root/redist/dclhelpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'redist/dclhelpers.c')
-rw-r--r--redist/dclhelpers.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/redist/dclhelpers.c b/redist/dclhelpers.c
index fb6aba6..3e51fd2 100644
--- a/redist/dclhelpers.c
+++ b/redist/dclhelpers.c
@@ -1,9 +1,10 @@
#include "dclhelpers.h"
#define FLOAT DCL_FLOAT
#define DYNAMIC_INDEX
-#include <stdio.h>
#include "dclapack.h"
#include <alloca.h>
+#include <assert.h>
+#include <stdio.h>
void dclPrint( const DCL_FLOAT * PMATRIX, int PMATRIXc, int n, int m )
{
@@ -77,7 +78,7 @@ void dcldgemm(
int Cc //must be n
)
{
- const DCL_FLOAT * ta;
+ const DCL_FLOAT *ta;
const DCL_FLOAT * tb;
int tac = Ac;
int tbc = Bc;
@@ -102,7 +103,7 @@ void dcldgemm(
}
else
tb = B;
-
- GMULADD(C,ta,tb,C,alpha,beta,n,m,k);
+ printf("%d %d %d\n", tac, tbc, Cc);
+ GMULADD(C, ta, tb, C, alpha, beta, m, n, k);
}