summaryrefslogtreecommitdiff
path: root/include/internal/routines/level2/xhemv.h
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-09-18 15:25:20 +0200
committerCNugteren <web@cedricnugteren.nl>2015-09-18 15:25:20 +0200
commit4507ba4997cd546418eae0972c018073ac7b36aa (patch)
tree08e549a9e4f174a85eb7d9a8efd3735b1daae44a /include/internal/routines/level2/xhemv.h
parent42db8ea968d9d2972446aa4fd73515a3d7aa093e (diff)
Added first version of banded matrix-vector multiplication
Diffstat (limited to 'include/internal/routines/level2/xhemv.h')
-rw-r--r--include/internal/routines/level2/xhemv.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/internal/routines/level2/xhemv.h b/include/internal/routines/level2/xhemv.h
index 801b2fc3..311ad9f8 100644
--- a/include/internal/routines/level2/xhemv.h
+++ b/include/internal/routines/level2/xhemv.h
@@ -8,7 +8,9 @@
// Cedric Nugteren <www.cedricnugteren.nl>
//
// This file implements the Xhemv routine. It is based on the generalized matrix multiplication
-// routine (Xgemv). The implementation is very similar to the Xsymv routine.
+// routine (Xgemv). The Xhemv class inherits from the templated class Xgemv, allowing it to call the
+// "DoGemm" function directly. The "DoHemv" function first preprocesses the hermetian matrix by
+// transforming it into a general matrix, and then calls the regular GEMV code.
//
// =================================================================================================