summaryrefslogtreecommitdiff
path: root/src/utilities/utilities.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-03-10 20:49:59 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-03-10 20:49:59 +0100
commitd754586b49c6af64e049b625060ef7be08fa5525 (patch)
tree4c59c32c41e7c2acb38dbe23ad740278c10cc1a2 /src/utilities/utilities.hpp
parent92a657290a9ed470ab8b5e8fc895361b15b87995 (diff)
Added proper testing of the alpha parameter; finalized the batched AXPY implementation
Diffstat (limited to 'src/utilities/utilities.hpp')
-rw-r--r--src/utilities/utilities.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utilities/utilities.hpp b/src/utilities/utilities.hpp
index d271ffee..b3db8c22 100644
--- a/src/utilities/utilities.hpp
+++ b/src/utilities/utilities.hpp
@@ -164,6 +164,8 @@ struct Arguments {
std::vector<size_t> a_offsets = {0};
std::vector<size_t> b_offsets = {0};
std::vector<size_t> c_offsets = {0};
+ std::vector<T> alphas = {ConstantOne<T>()};
+ std::vector<T> betas = {ConstantOne<T>()};
// Sizes
size_t x_size = 1;
size_t y_size = 1;