Compute Library  18.02
IOperation.h File Reference

Go to the source code of this file.

Data Structures

class  IOperation
 Operation functor interface. More...
 

Namespaces

 arm_compute
 This file contains all available output stages for GEMMLowp on OpenCL.
 
 arm_compute::graph
 

Macros

#define REGISTER_SIMPLE_OPERATION(NAME, TARGET, OP)
 

Macro Definition Documentation

#define REGISTER_SIMPLE_OPERATION (   NAME,
  TARGET,
  OP 
)
Value:
class NAME : public IOperation \
{ \
public: \
std::unique_ptr<arm_compute::IFunction> configure(NodeContext &ctx) final; \
TargetHint target() const final \
{ \
return TargetHint::TARGET; \
} \
}; \
static detail::OperationRegistrar<NAME> NAME##_registrar(OP); \
std::unique_ptr<arm_compute::IFunction> NAME::configure(NodeContext &ctx)
TargetHint
< Execution hint to the graph executor
Definition: Types.h:76

Definition at line 55 of file IOperation.h.