From 9bd8c4c5ed38d186c04ea318722ca54b2f9c8ea1 Mon Sep 17 00:00:00 2001 From: cnlohr Date: Sat, 17 Mar 2018 01:39:04 -0400 Subject: Fix other comments in .h file. --- redist/dclhelpers.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'redist') diff --git a/redist/dclhelpers.h b/redist/dclhelpers.h index 4ada24a..fd86c78 100644 --- a/redist/dclhelpers.h +++ b/redist/dclhelpers.h @@ -37,25 +37,25 @@ void dclUSub( DCL_FLOAT * X, const DCL_FLOAT * U, const DCL_FLOAT * B, int n, in /* Inverts a matrix X (n by n) using the method of LU decomposition */ void dclInv( DCL_FLOAT * Ainv, const DCL_FLOAT * A, int n ); -/* Matrix Multiply C = A * B +/* Matrix Multiply R = A * B A (n by m) B (m by p) - C (n by p) */ + R (n by p) */ void dclMul( DCL_FLOAT * R, const DCL_FLOAT * A, const DCL_FLOAT * B, int n, int m, int p ); -/* Matrix Multiply D = A * B + C +/* Matrix Multiply R = A * B + C A (n by m) B (m by p) C (n by p) - D (n by p) */ + R (n by p) */ void dclMulAdd( DCL_FLOAT * R, const DCL_FLOAT * A, const DCL_FLOAT * B, const DCL_FLOAT * C, int n, int m, int p ); -/* Matrix Multiply D = alpha * A * B + beta * C +/* Matrix Multiply R = alpha * A * B + beta * C A (n by m) B (m by p) C (n by p) - D (n by p) */ -void dclGMulAdd( DCL_FLOAT * D, const DCL_FLOAT * A, const DCL_FLOAT * B, const DCL_FLOAT * C, DCL_FLOAT alpha, DCL_FLOAT beta, int n, int m, int p ); + R (n by p) */ +void dclGMulAdd( DCL_FLOAT * R, const DCL_FLOAT * A, const DCL_FLOAT * B, const DCL_FLOAT * C, DCL_FLOAT alpha, DCL_FLOAT beta, int n, int m, int p ); #endif -- cgit v1.2.3