-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathroi_score_reshape_op.h
49 lines (41 loc) · 1.54 KB
/
roi_score_reshape_op.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef CAFFE2_OPERATORS_ROI_SCORE_RESHAPE_OP_H_
#define CAFFE2_OPERATORS_ROI_SCORE_RESHAPE_OP_H_
#include "caffe2/core/context.h"
#include "caffe2/core/logging.h"
#include "caffe2/core/operator.h"
#include "caffe2/utils/math.h"
namespace caffe2 {
template <typename T, class Context>
class RoIScoreReshapeOp final : public Operator<Context> {
public:
RoIScoreReshapeOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
batch_size_(this->template GetSingleArgument<int32_t>("batch_size", 0)),
num_classes_(
this->template GetSingleArgument<int32_t>("num_classes", 0)),
rois_size_(this->template GetSingleArgument<int32_t>("rois_size", 0)) {}
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
int batch_size_;
int num_classes_;
int rois_size_;
};
template <typename T, class Context>
class RoIScoreReshapeGradientOp final : public Operator<Context> {
public:
RoIScoreReshapeGradientOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
batch_size_(this->template GetSingleArgument<int32_t>("batch_size", 0)),
num_classes_(
this->template GetSingleArgument<int32_t>("num_classes", 0)),
rois_size_(this->template GetSingleArgument<int32_t>("rois_size", 0)) {}
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
int batch_size_;
int num_classes_;
int rois_size_;
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_ROI_SCORE_RESHAPE_OP_H_