aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-07-17 15:22:17 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commit15d5ac8dd039132926ac8012559ca5e3a405f858 (patch)
tree8969385f54cc65958ed8ab3825c992a91970f486 /tests
parent2ca209eaf3e1dee31bc2287be1f4e501697456db (diff)
downloadComputeLibrary-15d5ac8dd039132926ac8012559ca5e3a405f858.tar.gz
COMPMID-415 Fix issue with OpenCL examples
Change-Id: Ie4797e88fd2ad38f30cb69651ed37481b835fae8 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80781 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/SConscript2
-rw-r--r--tests/benchmark_new/main.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/SConscript b/tests/SConscript
index 291a7a5555..77d370f91a 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -150,7 +150,7 @@ files_benchmark += Glob('new/benchmark_new/*.cpp')
if env['opencl']:
Import('opencl')
- benchmark_env.Append(CPPDEFINES=['OPENCL'])
+ benchmark_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
files_benchmark += Glob('new/benchmark_new/CL/*/*.cpp')
files_benchmark += Glob('new/benchmark_new/CL/*.cpp')
diff --git a/tests/benchmark_new/main.cpp b/tests/benchmark_new/main.cpp
index 4c6811e372..46c51b6cfd 100644
--- a/tests/benchmark_new/main.cpp
+++ b/tests/benchmark_new/main.cpp
@@ -30,9 +30,9 @@
#include "support/ToolchainSupport.h"
#include "tests/TensorLibrary.h"
-#ifdef OPENCL
+#ifdef ARM_COMPUTE_CL
#include "arm_compute/runtime/CL/CLScheduler.h"
-#endif /* OPENCL */
+#endif /* ARM_COMPUTE_CL */
#include "arm_compute/runtime/Scheduler.h"
#include <fstream>
@@ -55,9 +55,9 @@ std::unique_ptr<TensorLibrary> library;
int main(int argc, char **argv)
{
-#ifdef OPENCL
+#ifdef ARM_COMPUTE_CL
CLScheduler::get().default_init();
-#endif /* OPENCL */
+#endif /* ARM_COMPUTE_CL */
framework::Framework &framework = framework::Framework::get();