aboutsummaryrefslogtreecommitdiff
path: root/examples/cl_sgemm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cl_sgemm.cpp')
-rw-r--r--examples/cl_sgemm.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/cl_sgemm.cpp b/examples/cl_sgemm.cpp
index fa57885450..805aec1cf3 100644
--- a/examples/cl_sgemm.cpp
+++ b/examples/cl_sgemm.cpp
@@ -39,7 +39,7 @@ using namespace utils;
class CLSGEMMExample : public Example
{
public:
- void do_setup(int argc, char **argv) override
+ bool do_setup(int argc, char **argv) override
{
NPYLoader npy0, npy1, npy2;
alpha = 1.0f;
@@ -164,6 +164,8 @@ public:
// Dummy run for CLTuner
sgemm.run();
+
+ return true;
}
void do_run() override
{