summaryrefslogtreecommitdiff
path: root/include/internal/routines/level3
diff options
context:
space:
mode:
Diffstat (limited to 'include/internal/routines/level3')
-rw-r--r--include/internal/routines/level3/xher2k.h4
-rw-r--r--include/internal/routines/level3/xherk.h4
-rw-r--r--include/internal/routines/level3/xsyr2k.h4
-rw-r--r--include/internal/routines/level3/xsyrk.h4
4 files changed, 0 insertions, 16 deletions
diff --git a/include/internal/routines/level3/xher2k.h b/include/internal/routines/level3/xher2k.h
index 092d7246..dfeb737e 100644
--- a/include/internal/routines/level3/xher2k.h
+++ b/include/internal/routines/level3/xher2k.h
@@ -46,10 +46,6 @@ class Xher2k: public Routine<T> {
const Buffer<T> &b_buffer, const size_t b_offset, const size_t b_ld,
const U beta,
const Buffer<T> &c_buffer, const size_t c_offset, const size_t c_ld);
-
- private:
- // Static variable to get the precision
- const static Precision precision_;
};
// =================================================================================================
diff --git a/include/internal/routines/level3/xherk.h b/include/internal/routines/level3/xherk.h
index b5e2d723..7ea59579 100644
--- a/include/internal/routines/level3/xherk.h
+++ b/include/internal/routines/level3/xherk.h
@@ -45,10 +45,6 @@ class Xherk: public Routine<T> {
const Buffer<T> &a_buffer, const size_t a_offset, const size_t a_ld,
const U beta,
const Buffer<T> &c_buffer, const size_t c_offset, const size_t c_ld);
-
- private:
- // Static variable to get the precision
- const static Precision precision_;
};
// =================================================================================================
diff --git a/include/internal/routines/level3/xsyr2k.h b/include/internal/routines/level3/xsyr2k.h
index c7ae1678..aefd016d 100644
--- a/include/internal/routines/level3/xsyr2k.h
+++ b/include/internal/routines/level3/xsyr2k.h
@@ -46,10 +46,6 @@ class Xsyr2k: public Routine<T> {
const Buffer<T> &b_buffer, const size_t b_offset, const size_t b_ld,
const T beta,
const Buffer<T> &c_buffer, const size_t c_offset, const size_t c_ld);
-
- private:
- // Static variable to get the precision
- const static Precision precision_;
};
// =================================================================================================
diff --git a/include/internal/routines/level3/xsyrk.h b/include/internal/routines/level3/xsyrk.h
index 860f8e10..75726496 100644
--- a/include/internal/routines/level3/xsyrk.h
+++ b/include/internal/routines/level3/xsyrk.h
@@ -47,10 +47,6 @@ class Xsyrk: public Routine<T> {
const Buffer<T> &a_buffer, const size_t a_offset, const size_t a_ld,
const T beta,
const Buffer<T> &c_buffer, const size_t c_offset, const size_t c_ld);
-
- private:
- // Static variable to get the precision
- const static Precision precision_;
};
// =================================================================================================