summaryrefslogtreecommitdiff
path: root/src/routines/level2/xger.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/routines/level2/xger.cc')
-rw-r--r--src/routines/level2/xger.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/routines/level2/xger.cc b/src/routines/level2/xger.cc
index c3a24264..55fa26d4 100644
--- a/src/routines/level2/xger.cc
+++ b/src/routines/level2/xger.cc
@@ -22,6 +22,8 @@ namespace clblast {
// Specific implementations to get the memory-type based on a template argument
template <> const Precision Xger<float>::precision_ = Precision::kSingle;
template <> const Precision Xger<double>::precision_ = Precision::kDouble;
+template <> const Precision Xger<float2>::precision_ = Precision::kComplexSingle;
+template <> const Precision Xger<double2>::precision_ = Precision::kComplexDouble;
// =================================================================================================
@@ -102,6 +104,8 @@ StatusCode Xger<T>::DoGer(const Layout layout,
// Compiles the templated class
template class Xger<float>;
template class Xger<double>;
+template class Xger<float2>;
+template class Xger<double2>;
// =================================================================================================
} // namespace clblast