blob: 69e650f17216fd8a52be3d4766c153d801e2a44e [file] [log] [blame]
#ifndef CAFFE2_OPERATORS_CHANNEL_SHUFFLE_OP_H_
#define CAFFE2_OPERATORS_CHANNEL_SHUFFLE_OP_H_
#include "caffe2/core/context.h"
#include "caffe2/core/logging.h"
#include "caffe2/core/operator.h"
namespace caffe2 {
template <typename T, class Context>
class ChannelShuffleOp final : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
ChannelShuffleOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
order_(StringToStorageOrder(
this->template GetSingleArgument<std::string>("order", "NCHW"))),
OP_SINGLE_ARG(int, "group", group_, 1) {
CAFFE_ENFORCE_NE(order_, StorageOrder::UNKNOWN);
}
bool RunOnDevice() override {
return order_ == StorageOrder::NCHW ? RunOnDeviceWithOrderNCHW()
: RunOnDeviceWithOrderNHWC();
}
bool RunOnDeviceWithOrderNCHW();
bool RunOnDeviceWithOrderNHWC();
private:
const StorageOrder order_;
const int group_;
};
template <typename T, class Context>
class ChannelShuffleGradientOp final : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
ChannelShuffleGradientOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
order_(StringToStorageOrder(
this->template GetSingleArgument<std::string>("order", "NCHW"))),
OP_SINGLE_ARG(int, "group", group_, 1) {
CAFFE_ENFORCE_NE(order_, StorageOrder::UNKNOWN);
}
bool RunOnDevice() override {
return order_ == StorageOrder::NCHW ? RunOnDeviceWithOrderNCHW()
: RunOnDeviceWithOrderNHWC();
}
bool RunOnDeviceWithOrderNCHW();
bool RunOnDeviceWithOrderNHWC();
private:
const StorageOrder order_;
const int group_;
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_CHANNEL_SHUFFLE_OP_H_