aboutsummaryrefslogtreecommitdiff
path: root/tests/validate_examples
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validate_examples')
-rw-r--r--tests/validate_examples/RunExample.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/validate_examples/RunExample.cpp b/tests/validate_examples/RunExample.cpp
index b6ff8832dd..aca4ddcc7c 100644
--- a/tests/validate_examples/RunExample.cpp
+++ b/tests/validate_examples/RunExample.cpp
@@ -28,6 +28,7 @@
#include "ValidateExample.h"
#include "arm_compute/runtime/Scheduler.h"
+#include "arm_compute/runtime/CL/CLHelpers.h"
#include "tests/AssetsLibrary.h"
#include "tests/Globals.h"
#include "tests/framework/Framework.h"
@@ -149,6 +150,15 @@ int run_example(int argc, char **argv, std::unique_ptr<ValidateExample> example)
}
}
+#ifdef ARM_COMPUTE_CL
+ if(opencl_is_available())
+ {
+ auto ctx_dev_err = create_opencl_context_and_device();
+ ARM_COMPUTE_ERROR_ON_MSG(std::get<2>(ctx_dev_err) != CL_SUCCESS, "Failed to create OpenCL context");
+ CLScheduler::get().default_init_with_context(std::get<1>(ctx_dev_err), std::get<0>(ctx_dev_err), nullptr);
+ }
+#endif /* ARM_COMPUTE_CL */
+
if(options.log_level->value() >= framework::LogLevel::CONFIG)
{
for(auto &p : printers)
@@ -159,10 +169,6 @@ int run_example(int argc, char **argv, std::unique_ptr<ValidateExample> example)
#ifdef ARM_COMPUTE_CL
if(opencl_is_available())
{
- if(!CLScheduler::get().is_initialised())
- {
- CLScheduler::get().default_init();
- }
p->print_entry("CL_DEVICE_VERSION", CLKernelLibrary::get().get_device_version());
}
else