aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-17 16:26:55 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-17 16:26:55 -0600
commit022d83320b058656114fa3ce69ca0117cbaef8cd (patch)
tree5be6de232031b2570061d9e39af606859d70b287
parent728936f7dce1bc545b5136590a6eb660771266d4 (diff)
downloadlibsurvive-022d83320b058656114fa3ce69ca0117cbaef8cd.tar.gz
libsurvive-022d83320b058656114fa3ce69ca0117cbaef8cd.tar.bz2
Speed improvement! Tmps should always match the mat type
-rw-r--r--redist/dclapack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redist/dclapack.h b/redist/dclapack.h
index 7f30187..7f117ec 100644
--- a/redist/dclapack.h
+++ b/redist/dclapack.h
@@ -262,7 +262,7 @@ PRINT(Ainv,n,n); \
*/
#define GMULADD(R, A, B, C, alpha, beta, m, n, p) \
{ \
- float sum; \
+ FLOAT sum; \
for (int _i = 0; _i < m; _i++) { \
for (int _j = 0; _j < p; _j++) { \
sum = 0.0f; \