From b6eb35371d222c6b7f61210d97ebd7dd9e197458 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Wed, 8 Aug 2018 13:20:04 +0100 Subject: COMPMID-1478: Stop relying on static default OpenCL objects in cl2.hpp This causes problems when ACL is used as a shared library on Android. Fixes some problems related to creation / destruction order between the Graph's CL backend and core / runtime Change-Id: I716d63fd42f4586df1ffbb6fa97e4db06d3a781b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/143228 Tested-by: Jenkins Reviewed-by: Michele DiGiorgio Reviewed-by: Gian Marco Iodice --- src/graph/frontend/Stream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/graph/frontend') diff --git a/src/graph/frontend/Stream.cpp b/src/graph/frontend/Stream.cpp index 96a166c79c..878d688995 100644 --- a/src/graph/frontend/Stream.cpp +++ b/src/graph/frontend/Stream.cpp @@ -33,7 +33,7 @@ namespace graph namespace frontend { Stream::Stream(size_t id, std::string name) - : _manager(), _ctx(), _g(id, std::move(name)) + : _ctx(), _manager(), _g(id, std::move(name)) { } @@ -66,4 +66,4 @@ Graph &Stream::graph() } } // namespace frontend } // namespace graph -} // namespace arm_compute \ No newline at end of file +} // namespace arm_compute -- cgit v1.2.1