summaryrefslogtreecommitdiff
path: root/src/kernels
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-08-04 08:15:39 +0200
committerCNugteren <web@cedricnugteren.nl>2015-08-04 08:15:39 +0200
commit75b4d92ac3afb25af415ef2a7ab94e284aafeeb1 (patch)
tree4992e22678500cdd2b4d270a34da694244d8589c /src/kernels
parentd1a7cf18ecfee1879d00e3a19ce129ee058dd84f (diff)
Added distinguished names for GEMV inherited HEMV/SYMV
Diffstat (limited to 'src/kernels')
-rw-r--r--src/kernels/xgemv.opencl10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/kernels/xgemv.opencl b/src/kernels/xgemv.opencl
index 5bbf69b9..1e12dd78 100644
--- a/src/kernels/xgemv.opencl
+++ b/src/kernels/xgemv.opencl
@@ -79,16 +79,7 @@ R"(
#endif
// =================================================================================================
-// Defines how to load the input matrix in case of a symmetric matrix
-#if defined(ROUTINE_SYMV)
-
-// =================================================================================================
-// Defines how to load the input matrix in case of a hermetian matrix
-#elif defined(ROUTINE_HEMV)
-
-// =================================================================================================
// Defines how to load the input matrix in the regular case
-#else
// Loads a scalar input value
inline real LoadMatrixA(const __global real* restrict agm, const int x, const int y,
@@ -106,7 +97,6 @@ inline realVFR LoadMatrixAVFR(const __global realVFR* restrict agm, const int x,
return agm[x + a_ld*y];
}
-#endif
// =================================================================================================
// Full version of the kernel