summaryrefslogtreecommitdiff
path: root/test/routines/level2/xtrsv.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-11-19 21:09:24 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-11-19 21:09:24 +0100
commit5467c0cac55b02bda69057fe0a130379934b8edb (patch)
tree603886e444d95cd4c2ca1ee5f412d076a6fe2d30 /test/routines/level2/xtrsv.hpp
parentda76d7ab81555452a1049eb1a6d130073427067d (diff)
Fixed a variety of warnings and an error for MSVC2013 compilation
Diffstat (limited to 'test/routines/level2/xtrsv.hpp')
-rw-r--r--test/routines/level2/xtrsv.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/routines/level2/xtrsv.hpp b/test/routines/level2/xtrsv.hpp
index aec8eace..81508236 100644
--- a/test/routines/level2/xtrsv.hpp
+++ b/test/routines/level2/xtrsv.hpp
@@ -74,7 +74,8 @@ class TestXtrsv {
// TODO: Improve this, currently loosely based on clBLAS's implementation
for (auto i = size_t{0}; i < args.n; ++i) {
auto diagonal = a_source[i*args.a_ld + i + args.a_offset];
- diagonal = static_cast<T>(AbsoluteValue(diagonal)) + static_cast<T>(args.n / size_t{4});
+ diagonal = static_cast<T>(AbsoluteValue(diagonal)) +
+ Constant<T>(static_cast<double>(args.n / size_t{4}));
for (auto j = size_t{0}; j < args.n; ++j) {
a_source[j*args.a_ld + i + args.a_offset] /= Constant<T>(2.0);
}