summaryrefslogtreecommitdiff
path: root/include/internal/routine.h
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-15 12:34:05 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-15 12:34:05 +0200
commit39b7dbc5e37829abfbcfb77852b9138b31540b42 (patch)
tree4f19fb31c5f78504a076fb65331c22efd289c68a /include/internal/routine.h
parentb894611ad196fc9cac40bf5861a23b35c52c52b5 (diff)
Added some constness to variables related to the GEMM routines
Diffstat (limited to 'include/internal/routine.h')
-rw-r--r--include/internal/routine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/internal/routine.h b/include/internal/routine.h
index 6df186c5..d420e2db 100644
--- a/include/internal/routine.h
+++ b/include/internal/routine.h
@@ -44,12 +44,12 @@ class Routine {
protected:
// Runs a kernel given the global and local thread sizes
- StatusCode RunKernel(Kernel &kernel, std::vector<size_t> &global,
+ StatusCode RunKernel(Kernel &kernel, std::vector<size_t> global,
const std::vector<size_t> &local, EventPointer event,
std::vector<Event>& waitForEvents);
// As above, but without an event waiting list
- StatusCode RunKernel(Kernel &kernel, std::vector<size_t> &global,
+ StatusCode RunKernel(Kernel &kernel, std::vector<size_t> global,
const std::vector<size_t> &local, EventPointer event);
// Tests for valid inputs of matrices A, B, and C