From d8734b55d89f05901ba9a75349761a9c955d9243 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Fri, 22 Dec 2017 15:27:52 +0000 Subject: COMPMID-793 : Add graph intermediate representation Change-Id: Ic1685de4e19e0ac79669ef2da64e1dc96c7ea0bf Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/115248 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- examples/SConscript | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'examples/SConscript') diff --git a/examples/SConscript b/examples/SConscript index 9be9fa9d9a..80bce57316 100644 --- a/examples/SConscript +++ b/examples/SConscript @@ -57,15 +57,17 @@ if env['opencl'] and env['neon']: alias = examples_env.Alias(example, prog) Default(alias) if env['os'] == 'android': + Import('arm_compute_graph2_a') Import('arm_compute_graph_a') Import('arm_compute_core_a') Import('arm_compute_a') arm_compute_graph_libs = [ arm_compute_a, arm_compute_core_a, "OpenCL"] - graph_dependency = arm_compute_graph_a + graph_dependency = [arm_compute_graph_a, arm_compute_graph2_a] else: + Import('arm_compute_graph2_so') Import('arm_compute_graph_so') - arm_compute_graph_libs = ["arm_compute_graph", "arm_compute", "arm_compute_core"] - graph_dependency = arm_compute_graph_so + arm_compute_graph_libs = ["arm_compute_graph2", "arm_compute_graph", "arm_compute", "arm_compute_core"] + graph_dependency = [arm_compute_graph_so, arm_compute_graph2_so] graph_utils = examples_env.Object("../utils/GraphUtils.cpp") for file in Glob("./graph_*.cpp"): -- cgit v1.2.1