aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/CLRuntimeContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/CLRuntimeContext.cpp')
-rw-r--r--src/runtime/CL/CLRuntimeContext.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/runtime/CL/CLRuntimeContext.cpp b/src/runtime/CL/CLRuntimeContext.cpp
index 571e30931c..9d46126ee4 100644
--- a/src/runtime/CL/CLRuntimeContext.cpp
+++ b/src/runtime/CL/CLRuntimeContext.cpp
@@ -26,12 +26,10 @@
#include "arm_compute/runtime/CL/CLHelpers.h"
#include "arm_compute/runtime/CL/CLScheduler.h"
-#include "support/MemorySupport.h"
-
namespace arm_compute
{
CLRuntimeContext::CLRuntimeContext()
- : _gpu_owned_scheduler(support::cpp14::make_unique<CLScheduler>()), _gpu_scheduler(_gpu_owned_scheduler.get()), _symbols(), _core_context()
+ : _gpu_owned_scheduler(std::make_unique<CLScheduler>()), _gpu_scheduler(_gpu_owned_scheduler.get()), _symbols(), _core_context()
{
_symbols.load_default();
auto ctx_dev_err = create_opencl_context_and_device();