blob: e05cd1100e9373900e1d51e48c08cda614014c7e [file] [log] [blame]
#ifndef CAFFE2_OPERATORS_STOP_GRADIENT_H_
#define CAFFE2_OPERATORS_STOP_GRADIENT_H_
#include "caffe2/core/operator.h"
namespace caffe2 {
template <class Context>
class StopGradientOp : public Operator<Context> {
public:
USE_SIMPLE_CTOR_DTOR(StopGradientOp)
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override {
const auto& in = Input(0);
auto* out = Output(0);
if (out != &in) {
out->CopyFrom(in, &context_);
}
return true;
}
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_STOP_GRADIENT_H_