From 890ad1be4eff1a805fe07667f4044b1d38a07b39 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Wed, 22 Aug 2018 13:44:36 +0100 Subject: COMPMID-1246: Fix bug in handling backends that can't be loaded in the Graph API Change-Id: Iefd175af2f472179d86df5358a1527a79c5666ed Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/145182 Reviewed-by: Georgios Pinitas Tested-by: Jenkins --- tests/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/main.cpp') diff --git a/tests/main.cpp b/tests/main.cpp index aaae99157a..7616dbe225 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -76,7 +76,10 @@ int main(int argc, char **argv) { #ifdef ARM_COMPUTE_CL CLTuner cl_tuner(false); - CLScheduler::get().default_init(&cl_tuner); + if(opencl_is_available()) + { + CLScheduler::get().default_init(&cl_tuner); + } #endif /* ARM_COMPUTE_CL */ #ifdef ARM_COMPUTE_GC -- cgit v1.2.1