aboutsummaryrefslogtreecommitdiff
path: root/src/graph/Graph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/Graph.cpp')
-rw-r--r--src/graph/Graph.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/graph/Graph.cpp b/src/graph/Graph.cpp
index e14bea0846..7af313acbb 100644
--- a/src/graph/Graph.cpp
+++ b/src/graph/Graph.cpp
@@ -62,6 +62,7 @@ public:
std::unique_ptr<INode> _current_node{ nullptr };
ITensorObject *_current_output{ nullptr };
bool _info_enabled{ false };
+ CLTuner _tuner{};
private:
ITensorObject *_current_input{ nullptr };
@@ -76,10 +77,21 @@ Graph::~Graph() //NOLINT
Graph::Graph()
: _pimpl{ new Private() }
{
+}
+
+void Graph::graph_init(const bool use_cl_tuner)
+{
// Check if OpenCL is available and initialize the scheduler
if(opencl_is_available())
{
- arm_compute::CLScheduler::get().default_init();
+ if(use_cl_tuner)
+ {
+ arm_compute::CLScheduler::get().default_init(&_pimpl->_tuner);
+ }
+ else
+ {
+ arm_compute::CLScheduler::get().default_init();
+ }
}
}