From d929b9c49a13eb9c05bb4fab608459669eeeeb9e Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Wed, 28 Jun 2017 10:15:48 +0100 Subject: COMPMID-417: Enable CPU target selection Change-Id: I8d1b368c654b738117efb32cfacd5fda10c23203 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/79046 Reviewed-by: Anthony Barbier Tested-by: Kaizen --- arm_compute/core/CPP/ICPPKernel.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'arm_compute/core/CPP/ICPPKernel.h') diff --git a/arm_compute/core/CPP/ICPPKernel.h b/arm_compute/core/CPP/ICPPKernel.h index 99ae68f2e5..9684408987 100644 --- a/arm_compute/core/CPP/ICPPKernel.h +++ b/arm_compute/core/CPP/ICPPKernel.h @@ -24,6 +24,7 @@ #ifndef __ARM_COMPUTE_ICPPKERNEL_H__ #define __ARM_COMPUTE_ICPPKERNEL_H__ +#include "arm_compute/core/CPP/CPPTypes.h" #include "arm_compute/core/IKernel.h" namespace arm_compute @@ -48,6 +49,18 @@ public: * @param[in] window Region on which to execute the kernel. (Must be a region of the window returned by window()) */ virtual void run(const Window &window) = 0; + + /** Sets the target CPU architecture. + * + * @param[in] target CPU target. + */ + void set_target(CPUTarget target) + { + _target = target; + } + +protected: + CPUTarget _target{ CPUTarget::INTRINSICS }; }; } #endif /*__ARM_COMPUTE_ICPPKERNEL_H__ */ -- cgit v1.2.1