blob: 3400691a4d3e09c60c4263c756403e8d62720de9 [file] [log] [blame]
#ifndef CAFFE2_OPERATORS_TOP_K_H_
#define CAFFE2_OPERATORS_TOP_K_H_
#include "caffe2/core/logging.h"
#include "caffe2/core/operator.h"
#include "caffe2/utils/math.h"
namespace caffe2 {
template <typename T, class Context>
class TopKOp : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
TopKOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws), OP_SINGLE_ARG(int, "k", k_, -1) {
CAFFE_ENFORCE(k_ >= 1, "k argument must be >= 1");
}
bool RunOnDevice() override;
private:
int k_;
};
template <typename T, class Context>
class TopKGradientOp : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
TopKGradientOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws) {}
bool RunOnDevice() override;
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_TOP_K_H_