This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "matlisp".
The branch, matlisp-cffi has been updated
via 41f86e07e1ab87c390f9e570bd51ce57ac2d4d6f (commit)
from f748feb7a04396a6ddd3c61407d11d02aca3034f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 41f86e07e1ab87c390f9e570bd51ce57ac2d4d6f
Author: Akshay Srinivasan <aks...@gm...>
Date: Sun Mar 18 19:50:03 2012 +0530
-> Fix for trivial bug in the new gemm! method.
diff --git a/src/gemm.lisp b/src/gemm.lisp
index b8609f9..99c183c 100644
--- a/src/gemm.lisp
+++ b/src/gemm.lisp
@@ -249,7 +249,8 @@
(beta number) (c complex-matrix)
&optional (job :nn))
(scal! (complex-coerce beta) c)
- (gemm! alpha a b 1d0 (realpart! c)))
+ (gemm! alpha a b 1d0 (realpart! c))
+ c)
;
(defmethod gemm! ((alpha number) (a real-matrix) (b complex-matrix)
-----------------------------------------------------------------------
Summary of changes:
src/gemm.lisp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
matlisp
|