From d9eb27597eabe5b7c17520f4f9b3f8a282d72573 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 3 Apr 2018 13:44:29 +0100 Subject: COMPMID-797: Switch to new graph. - Cleaned up build system Change-Id: If2faa27ee5b31fa8b972836960ab3ef671059c8d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/126435 Tested-by: Jenkins Reviewed-by: Pablo Tello --- utils/GraphUtils.h | 35 +++++------------------------------ 1 file changed, 5 insertions(+), 30 deletions(-) (limited to 'utils/GraphUtils.h') diff --git a/utils/GraphUtils.h b/utils/GraphUtils.h index e70a1a275f..11f1e0590a 100644 --- a/utils/GraphUtils.h +++ b/utils/GraphUtils.h @@ -29,10 +29,6 @@ #include "arm_compute/graph/ITensorAccessor.h" #include "arm_compute/graph/Types.h" -#include "arm_compute/core/CL/OpenCL.h" - -#include "arm_compute/graph2/Types.h" - #include #include #include @@ -276,26 +272,6 @@ inline std::unique_ptr get_input_accessor(const std::str } } -/** Utility function to return the TargetHint - * - * @param[in] target Integer value which expresses the selected target. Must be 0 for NEON, 1 for OpenCL or 2 for OpenCL with Tuner - * - * @return the TargetHint - */ -inline graph::TargetHint set_target_hint(int target) -{ - ARM_COMPUTE_ERROR_ON_MSG(target > 2, "Invalid target. Target must be 0 (NEON), 1 (OpenCL) or 2 (OpenCL with Tuner)"); - if((target == 1 || target == 2) && graph::Graph::opencl_is_available()) - { - // If type of target is OpenCL, check if OpenCL is available and initialize the scheduler - return graph::TargetHint::OPENCL; - } - else - { - return graph::TargetHint::NEON; - } -} - /** Generates appropriate output accessor according to the specified labels_path * * @note If labels_path is empty will generate a DummyAccessor else will generate a TopNPredictionsAccessor @@ -324,21 +300,20 @@ inline std::unique_ptr get_output_accessor(const std::st * * @return the TargetHint */ -inline graph2::Target set_target_hint2(int target) +inline graph::Target set_target_hint(int target) { ARM_COMPUTE_ERROR_ON_MSG(target > 3, "Invalid target. Target must be 0 (NEON), 1 (OpenCL), 2 (OpenCL + Tuner), 3 (GLES)"); - if((target == 1 || target == 2) && arm_compute::opencl_is_available()) + if((target == 1 || target == 2)) { - // If type of target is OpenCL, check if OpenCL is available and initialize the scheduler - return graph2::Target::CL; + return graph::Target::CL; } else if(target == 3) { - return graph2::Target::GC; + return graph::Target::GC; } else { - return graph2::Target::NEON; + return graph::Target::NEON; } } } // namespace graph_utils -- cgit v1.2.1