summaryrefslogtreecommitdiff
path: root/test/test_utilities.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_utilities.hpp')
-rw-r--r--test/test_utilities.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_utilities.hpp b/test/test_utilities.hpp
index 7bf5e65f..4ea5cdfb 100644
--- a/test/test_utilities.hpp
+++ b/test/test_utilities.hpp
@@ -56,6 +56,7 @@ struct Buffers {
Buffer<T> c_mat;
Buffer<T> ap_mat;
Buffer<T> scalar;
+ Buffer<unsigned int> scalar_uint;
};
template <typename T>
struct BuffersHost {
@@ -66,6 +67,7 @@ struct BuffersHost {
std::vector<T> c_mat;
std::vector<T> ap_mat;
std::vector<T> scalar;
+ std::vector<unsigned int> scalar_uint;
};
// =================================================================================================