reid from https://github.com/michuanhaohao/reid-strong-baseline
zhangmeng
2020-01-17 f7c4a3cfd07adede3308f8d9d3d7315427d90a7c
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#ifndef CAFFE2_OPERATORS_DEFORM_CONV_OP_H_
#define CAFFE2_OPERATORS_DEFORM_CONV_OP_H_
 
#include "caffe2/core/context.h"
#include "caffe2/core/operator.h"
#include "caffe2/operators/conv_op_shared.h"
#include "caffe2/operators/conv_pool_op_base.h"
 
C10_DECLARE_bool(caffe2_force_shared_col_buffer);
 
namespace caffe2 {
 
template <typename T, class Context>
class DeformConvOpBase : public ConvPoolOpBase<Context> {
 public:
  USE_CONV_POOL_BASE_FUNCTIONS(Context);
  explicit DeformConvOpBase(const OperatorDef& operator_def, Workspace* ws)
      : ConvPoolOpBase<Context>(operator_def, ws),
        deformable_group_(
            this->template GetSingleArgument<int>("deformable_group", 1)) {}
  ~DeformConvOpBase() {}
 
 protected:
  void DeformableIm2col(
      const T* data_im,
      const T* data_offset,
      at::IntArrayRef im_shape,
      at::IntArrayRef col_shape,
      T* data_col);
  void DeformableCol2im(
      const T* data_col,
      const T* data_offset,
      at::IntArrayRef im_shape,
      at::IntArrayRef col_shape,
      T* grad_im);
  void DeformableCol2imCoord(
      const T* data_col,
      const T* data_im,
      const T* data_offset,
      at::IntArrayRef im_shape,
      at::IntArrayRef col_shape,
      T* grad_offset);
 
 protected:
  int deformable_group_;
 
#define USE_DEFORMABLE_CONV_BASE_FUNCTIONS(T, Context)   \
  USE_CONV_POOL_BASE_FUNCTIONS(Context);                 \
  using DeformConvOpBase<T, Context>::deformable_group_; \
  using DeformConvOpBase<T, Context>::DeformableIm2col;  \
  using DeformConvOpBase<T, Context>::DeformableCol2im;  \
  using DeformConvOpBase<T, Context>::DeformableCol2imCoord
};
 
template <typename T, class Context>
class DeformConvOp final : public DeformConvOpBase<T, Context> {
 public:
  USE_DEFORMABLE_CONV_BASE_FUNCTIONS(T, Context);
 
  explicit DeformConvOp(const OperatorDef& operator_def, Workspace* ws)
      : DeformConvOpBase<T, Context>(operator_def, ws) {
    // Create shared buffer mutex in the constructor
    // to avoid race-condition in DAGNet.
    if (FLAGS_caffe2_force_shared_col_buffer || shared_buffer_) {
      createSharedBuffer<Context>(ws_);
    }
  }
  ~DeformConvOp() {}
 
  bool RunOnDeviceWithOrderNCHW() override;
 
 private:
  Tensor col_buffer_{Context::GetDeviceType()};
  Tensor bias_multiplier_;
  Tensor img_shape_device_{Context::GetDeviceType()};
  Tensor col_buffer_shape_device_{Context::GetDeviceType()};
  // Input: X, o, W, b
  // Output: Y
  INPUT_TAGS(INPUT, OFFSET, FILTER, BIAS);
};
 
template <typename T, class Context>
class DeformConvGradientOp final : public DeformConvOpBase<T, Context> {
 public:
  USE_DEFORMABLE_CONV_BASE_FUNCTIONS(T, Context);
 
  explicit DeformConvGradientOp(const OperatorDef& operator_def, Workspace* ws)
      : DeformConvOpBase<T, Context>(operator_def, ws),
        no_bias_(this->template GetSingleArgument<int>("no_bias", 0)) {
    CAFFE_ENFORCE(
        !(no_bias_ && OutputSize() == 4),
        "If bias is not present, you should not have 4 grad output.");
  }
  ~DeformConvGradientOp() {}
 
  bool RunOnDeviceWithOrderNCHW() override;
 
 private:
  Tensor col_buffer_;
  Tensor bias_multiplier_;
  Tensor img_shape_device_{Context::GetDeviceType()};
  Tensor col_buffer_shape_device_{Context::GetDeviceType()};
  bool no_bias_;
  // input: X, W, dY
  // output: dO, dW, db, and optionally dX
  INPUT_TAGS(INPUT, OFFSET, FILTER, OUTPUT_GRAD);
  OUTPUT_TAGS(OFFSET_GRAD, FILTER_GRAD, BIAS_OR_INPUT_GRAD, INPUT_GRAD);
};
 
} // namespace caffe2
 
#endif // CAFFE2_OPERATORS_DEFORM_CONV_OP_H_