From 12be7ab4876f77fecfab903df70791623219b3da Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 3 Jul 2018 12:06:23 +0100 Subject: COMPMID-1310: Create graph validation executables. Change-Id: I9e0b57b1b83fe5a95777cdaeddba6ecef650bafc Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138697 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- examples/cl_convolution.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'examples/cl_convolution.cpp') diff --git a/examples/cl_convolution.cpp b/examples/cl_convolution.cpp index 8f3d7e3a30..b15bbb6cb4 100644 --- a/examples/cl_convolution.cpp +++ b/examples/cl_convolution.cpp @@ -57,7 +57,7 @@ const int16_t gaussian5x5[] = class CLConvolutionExample : public Example { public: - void do_setup(int argc, char **argv) override + bool do_setup(int argc, char **argv) override { PPMLoader ppm; @@ -95,6 +95,8 @@ public: ppm.fill_image(src); output_filename = std::string(argv[1]) + "_out.ppm"; } + + return true; } void do_run() override { -- cgit v1.2.1