aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CPP/CPPScheduler.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-09-07 09:48:04 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitc186b574e52b81c75e551cee46a6c4cc7d500c90 (patch)
tree682add7d1b705eb6d0b79b1f9a7a039dbaa4287b /arm_compute/runtime/CPP/CPPScheduler.h
parent3e05e4e85912e745b8555102e1bcef13478d2ceb (diff)
downloadComputeLibrary-c186b574e52b81c75e551cee46a6c4cc7d500c90.tar.gz
COMPMID-481: Add thread info parameter
Change-Id: Iebb50a88d017445b6b37a86563ebd4abd86c5cf5 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86788 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/runtime/CPP/CPPScheduler.h')
-rw-r--r--arm_compute/runtime/CPP/CPPScheduler.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/arm_compute/runtime/CPP/CPPScheduler.h b/arm_compute/runtime/CPP/CPPScheduler.h
index 341537a390..8351f0cbdd 100644
--- a/arm_compute/runtime/CPP/CPPScheduler.h
+++ b/arm_compute/runtime/CPP/CPPScheduler.h
@@ -24,7 +24,6 @@
#ifndef __ARM_COMPUTE_CPPSCHEDULER_H__
#define __ARM_COMPUTE_CPPSCHEDULER_H__
-#include "arm_compute/core/CPP/CPPTypes.h"
#include "arm_compute/runtime/IScheduler.h"
#include <memory>
@@ -48,18 +47,6 @@ public:
*/
unsigned int num_threads() const override;
- /** Sets the target CPU architecture.
- *
- * @param[in] target Target CPU.
- */
- void set_target(CPUTarget target);
-
- /** Return the current CPU target.
- *
- * @return Target CPU.
- */
- CPUTarget target() const;
-
/** Access the scheduler singleton
*
* @return The scheduler
@@ -82,7 +69,6 @@ private:
unsigned int _num_threads;
std::unique_ptr<Thread[], void (*)(Thread *)> _threads;
- CPUTarget _target;
};
}
#endif /* __ARM_COMPUTE_CPPSCHEDULER_H__ */