aboutsummaryrefslogtreecommitdiff
path: root/redist
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-17 16:26:55 -0600
committercnlohr <lohr85@gmail.com>2018-03-18 22:21:59 -0400
commit8e7baa44fac6b47aced36e5225d62bf3db365e02 (patch)
tree92dc5ef26bcb1055005a5eb1095e8664fbd01535 /redist
parent999f4fa9622db1081f18eea9c583b6a4053ec4d0 (diff)
downloadlibsurvive-8e7baa44fac6b47aced36e5225d62bf3db365e02.tar.gz
libsurvive-8e7baa44fac6b47aced36e5225d62bf3db365e02.tar.bz2
Speed improvement! Tmps should always match the mat type
Diffstat (limited to 'redist')
-rw-r--r--redist/dclapack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redist/dclapack.h b/redist/dclapack.h
index 0950815..8d2aac6 100644
--- a/redist/dclapack.h
+++ b/redist/dclapack.h
@@ -267,7 +267,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; \