25 #ifndef MXNET_OPERATOR_H_ 26 #define MXNET_OPERATOR_H_ 28 #include <dmlc/base.h> 29 #include <dmlc/json.h> 30 #include <dmlc/logging.h> 31 #include <dmlc/registry.h> 32 #include <nnvm/node.h> 70 const std::vector<TBlob> &in_data,
71 const std::vector<OpReqType> &req,
72 const std::vector<TBlob> &out_data,
73 const std::vector<TBlob> &aux_states) = 0;
103 const std::vector<TBlob> &out_grad,
104 const std::vector<TBlob> &in_data,
105 const std::vector<TBlob> &out_data,
106 const std::vector<OpReqType> &req,
107 const std::vector<TBlob> &in_grad,
108 const std::vector<TBlob> &aux_states) {
109 LOG(FATAL) <<
"Backward is not implemented";
137 virtual void Init(
const std::vector<std::pair<std::string, std::string> >& kwargs) = 0;
142 virtual std::map<std::string, std::string> GetParams()
const = 0;
166 return this->ListOutputs().size();
200 virtual bool InferShape(std::vector<TShape> *in_shape,
201 std::vector<TShape> *out_shape,
202 std::vector<TShape> *aux_shape)
const = 0;
221 std::vector<int> *out_type,
222 std::vector<int> *aux_type)
const {
223 CHECK_LE(in_type->size(), this->ListArguments().size());
224 int n_in = this->ListArguments().size();
225 for (
unsigned i = 0; i < in_type->size(); ++i) {
226 CHECK(in_type->at(i) == mshadow::default_type_flag ||
227 in_type->at(i) == -1) <<
"Unsupported data type " << in_type->at(i);
230 for (
int i = 0; i < n_in; ++i ) in_type->push_back(mshadow::default_type_flag);
232 int n_out = this->ListOutputs().size();
234 for (
int i = 0; i < n_out; ++i ) out_type->push_back(mshadow::default_type_flag);
236 int n_aux = this->ListAuxiliaryStates().size();
238 for (
int i = 0; i < n_aux; ++i ) aux_type->push_back(mshadow::default_type_flag);
258 std::vector<int> *in_type)
const {
259 std::vector<int> out_type, aux_type;
260 std::vector<TShape> out_shape, aux_shape;
261 out_type.resize(this->ListOutputs().size());
262 out_shape.resize(this->ListOutputs().size());
263 aux_type.resize(this->ListAuxiliaryStates().size());
264 aux_shape.resize(this->ListAuxiliaryStates().size());
265 CHECK(InferType(in_type, &out_type, &aux_type));
266 CHECK(InferShape(in_shape, &out_shape, &aux_shape));
267 return CreateOperator(ctx);
274 virtual std::string TypeString()
const = 0;
286 const std::vector<TShape> &in_shape)
const {
287 return std::vector<ResourceRequest>();
297 const std::vector<TShape> &in_shape)
const {
298 return std::vector<ResourceRequest>();
323 const std::vector<int> &out_grad,
324 const std::vector<int> &in_data,
325 const std::vector<int> &out_data)
const {
328 std::vector<int> ret = out_grad;
329 ret.insert(ret.end(), in_data.begin(), in_data.end());
330 ret.insert(ret.end(), out_data.begin(), out_data.end());
355 const std::vector<int> &in_data,
356 const std::vector<void*> &out_data)
const {
357 return std::vector<std::pair<int, void*> >();
386 const std::vector<int> &out_grad,
387 const std::vector<int> &in_data,
388 const std::vector<int> &out_data,
389 const std::vector<void*> &in_grad)
const {
390 return std::vector<std::pair<int, void*> >();
406 const std::vector<T> &in_data,
407 const std::vector<T> &out_data)
const {
409 std::vector<int> out_grad_index(out_grad.size());
410 std::vector<int> in_data_index(in_data.size());
411 std::vector<int> out_data_index(out_data.size());
412 for (
size_t i = 0; i < out_grad_index.size(); ++i) {
413 out_grad_index[i] = counter++;
415 for (
size_t i = 0; i < in_data_index.size(); ++i) {
416 in_data_index[i] = counter++;
418 for (
size_t i = 0; i < out_data_index.size(); ++i) {
419 out_data_index[i] = counter++;
421 std::vector<T> all_data;
422 all_data.insert(all_data.end(), out_grad.begin(), out_grad.end());
423 all_data.insert(all_data.end(), in_data.begin(), in_data.end());
424 all_data.insert(all_data.end(), out_data.begin(), out_data.end());
426 std::vector<int> ret_index = this->DeclareBackwardDependency(
427 out_grad_index, in_data_index, out_data_index);
429 std::vector<T> ret(ret_index.size());
430 for (
size_t i = 0; i < ret_index.size(); ++i) {
431 ret[i] = all_data[ret_index[i]];
453 :
public dmlc::FunctionRegEntryBase<OperatorPropertyReg,
454 OperatorPropertyFactory> {
468 this->key_var_num_args = key;
478 CHECK_EQ(this->name, type)
479 <<
"Register Name and TypeString mismatch, name=\"" << this->name <<
"\"," 480 <<
" but TypeString=\"" << type <<
"\"";
502 #define MXNET_REGISTER_OP_PROPERTY(name, OperatorPropertyType) \ 503 DMLC_REGISTRY_REGISTER(::mxnet::OperatorPropertyReg, OperatorPropertyReg, name) \ 504 .set_body([]() { return new OperatorPropertyType(); }) \ 505 .set_return_type("NDArray-or-Symbol") \ 508 #endif // DMLC_USE_CXX11 510 #endif // MXNET_OPERATOR_H_ virtual std::vector< int > DeclareBackwardDependency(const std::vector< int > &out_grad, const std::vector< int > &in_data, const std::vector< int > &out_data) const
Declare the input requirement of Backward pass.
Definition: operator.h:322
OperatorPropertyReg & check_name()
Check if TypeString of the type matches the registered name.
Definition: operator.h:474
Forward/Backward are synchronize calls.
virtual ExecType exec_type() const
Definition: operator.h:442
namespace of mxnet
Definition: base.h:126
virtual void Forward(const OpContext &ctx, const std::vector< TBlob > &in_data, const std::vector< OpReqType > &req, const std::vector< TBlob > &out_data, const std::vector< TBlob > &aux_states)=0
perform a forward operation of Operator, save the output to TBlob.
virtual void Backward(const OpContext &ctx, const std::vector< TBlob > &out_grad, const std::vector< TBlob > &in_data, const std::vector< TBlob > &out_data, const std::vector< OpReqType > &req, const std::vector< TBlob > &in_grad, const std::vector< TBlob > &aux_states)
Perform a Backward Operation, write gradient to the in_grad.
Definition: operator.h:102
Additional operator attributes beside the ones provided by NNVM.
virtual ~Operator()
destructor
Definition: operator.h:57
std::function< OperatorProperty *()> OperatorPropertyFactory
typedef the factory function of operator property
Definition: operator.h:448
std::vector< T > BackwardInputs(const std::vector< T > &out_grad, const std::vector< T > &in_data, const std::vector< T > &out_data) const
Get Backward Input Dependency for generic types of data. Normally T can be pointer of Symbol::DataEnt...
Definition: operator.h:405
virtual std::vector< ResourceRequest > BackwardResource(const std::vector< TShape > &in_shape) const
Declare additional resource required in backward pass. These additional resources will be presented i...
Definition: operator.h:296
OperatorPropertyReg & set_key_var_num_args(const std::string &key)
Set key_var_num_args When this is set, the API caller is required to pass in a argument with key=key_...
Definition: operator.h:467
virtual ~OperatorProperty()
virtual destructor
Definition: operator.h:131
virtual std::vector< std::string > ListOutputs() const
Get name of output values of Operator.
Definition: operator.h:154
All the possible information needed by Operator.Forward and Backward This is the superset of RunConte...
Definition: op_attr_types.h:66
Operator interface. Operator defines basic operation unit of optimized computation graph in mxnet...
Definition: operator.h:54
Global resource allocation handling.
virtual std::vector< std::pair< int, void * > > ForwardInplaceOption(const std::vector< int > &in_data, const std::vector< void * > &out_data) const
Get possible forward inplace options. This function enables optimization to reuse memory of inputs in...
Definition: operator.h:354
OperatorProperty is a object that stores all information about Operator. It also contains method to g...
Definition: operator.h:126
virtual Operator * CreateOperatorEx(Context ctx, std::vector< TShape > *in_shape, std::vector< int > *in_type) const
Create a Operator on specific context and input shape/type.
Definition: operator.h:257
virtual std::vector< std::pair< int, void * > > BackwardInplaceOption(const std::vector< int > &out_grad, const std::vector< int > &in_data, const std::vector< int > &out_data, const std::vector< void * > &in_grad) const
Get possible backward inplace options. This function enables optimization to reuse memory of inputs i...
Definition: operator.h:385
virtual bool InferType(std::vector< int > *in_type, std::vector< int > *out_type, std::vector< int > *aux_type) const
infer the data types of outputs and unknown input arguments
Definition: operator.h:220
virtual std::vector< std::string > ListAuxiliaryStates() const
Get name of auxiliary states of Operator.
Definition: operator.h:161
virtual std::vector< std::string > ListArguments() const
Get input arguments of the Operator.
Definition: operator.h:147
virtual ExecType exec_type() const final
Definition: operator.h:112
std::string key_var_num_args
The key num_args name.
Definition: operator.h:485
virtual int NumVisibleOutputs() const
get number of visible return values during Symbol creation. If NumVisibleOutputs() = k...
Definition: operator.h:180
Registry entry for OperatorProperty factory functions.
Definition: operator.h:452
virtual std::vector< ResourceRequest > ForwardResource(const std::vector< TShape > &in_shape) const
Declare additional resource required in forward pass. These additional resources will be presented in...
Definition: operator.h:285
ExecType
the execution type of the operator
Definition: op_attr_types.h:87
virtual int NumOutputs() const
Definition: operator.h:165
Context information about the execution environment.
Definition: base.h:141
virtual std::string TypeString() const =0
return the type string of the Operator subclasses override this function.