summaryrefslogtreecommitdiff
path: root/src/routines/level1/xscal.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-10-22 15:05:12 +0200
committerGitHub <noreply@github.com>2016-10-22 15:05:12 +0200
commit280698d0767219e174b12e51e8e42b228bbf28e9 (patch)
tree25db4d2d360cc161ca7d8e563c847faf08a745a0 /src/routines/level1/xscal.hpp
parent9b596820d2dd833648706bff505b459c58f45b4b (diff)
parent56f300607b1d0b81ab3269894fda5a066c46cdeb (diff)
Merge pull request #117 from intelfx/exceptions
Convert to use C++ exceptions internally
Diffstat (limited to 'src/routines/level1/xscal.hpp')
-rw-r--r--src/routines/level1/xscal.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routines/level1/xscal.hpp b/src/routines/level1/xscal.hpp
index 6c585cb2..02c847cc 100644
--- a/src/routines/level1/xscal.hpp
+++ b/src/routines/level1/xscal.hpp
@@ -28,8 +28,8 @@ class Xscal: public Routine {
Xscal(Queue &queue, EventPointer event, const std::string &name = "SCAL");
// Templated-precision implementation of the routine
- StatusCode DoScal(const size_t n, const T alpha,
- const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc);
+ void DoScal(const size_t n, const T alpha,
+ const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc);
};
// =================================================================================================