summaryrefslogtreecommitdiff
path: root/src/routine.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-07-26 20:53:31 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-07-26 20:53:31 +0200
commit5053f6ebc6107ddea4258e5534671a2021de3f6e (patch)
treec37e040d7224fdb95f656c6807a7c0910a313509 /src/routine.hpp
parent798d32edad091b6faaa1627a7514868fc28c5fd9 (diff)
parent1ec21421d7dedd715badbc7cf8f555d3b76a022b (diff)
Merge branch 'development' into gemm_direct
Diffstat (limited to 'src/routine.hpp')
-rw-r--r--src/routine.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/routine.hpp b/src/routine.hpp
index 54b5779f..f5c607af 100644
--- a/src/routine.hpp
+++ b/src/routine.hpp
@@ -32,9 +32,11 @@ namespace clblast {
class Routine {
public:
- // Base class constructor
+ // Base class constructor. The user database is an optional extra database to override the
+ // built-in database.
explicit Routine(Queue &queue, EventPointer event, const std::string &name,
- const std::vector<std::string> &routines, const Precision precision);
+ const std::vector<std::string> &routines, const Precision precision,
+ const std::vector<Database::DatabaseEntry> &userDatabase = {});
// Set-up phase of the kernel
StatusCode SetUp();