mxnet
channel_unpool.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
26 #ifndef MSHADOW_EXTENSION_CHANNEL_UNPOOL_H_
27 #define MSHADOW_EXTENSION_CHANNEL_UNPOOL_H_
28 #include <algorithm>
29 #include "../extension.h"
30 namespace mshadow {
31 namespace expr {
40 template<typename Reducer, typename SrcExp, typename DType, int srcdim>
42  public MakeTensorExp<ChannelUnpoolingExp<Reducer, SrcExp, DType, srcdim>,
43  SrcExp, srcdim, DType> {
45  const SrcExp &data_src_;
47  const SrcExp &data_pooled_;
49  const SrcExp &grad_pooled_;
59  ChannelUnpoolingExp(const SrcExp &data_src,
60  const SrcExp &data_pooled,
61  const SrcExp &grad_pooled,
62  index_t nsize, index_t kstride, index_t pad)
63  : data_src_(data_src), data_pooled_(data_pooled),
64  grad_pooled_(grad_pooled),
65  nsize_(nsize), kstride_(kstride), pad_(pad) {
67  typedef ShapeCheck<srcdim, SrcExp> ShapeCheckSrcDimSrcExp;
68  CHECK_EQ(pshape, ShapeCheckSrcDimSrcExp::Check(data_pooled))
69  << "ChannelUnPoolingExp: data and grad shape mismatch";
71  for (int k = 0; k < srcdim; ++k) {
72  if (k == 1) {
73  continue;
74  }
75  CHECK_EQ(pshape[k], sshape[k])
76  << "ChannelUnPoolingExp: pooled tensor and src tensor shape mismatch"
77  << pshape[k]
78  << " vs "
79  << sshape[k];
80  }
81  pchannel_ = pshape[1];
82  this->shape_ = sshape;
83  }
84 };
97 template<typename Reducer, typename SrcExp, typename DType, int etype>
100  const Exp<SrcExp, DType, etype> &data_pooled,
101  const Exp<SrcExp, DType, etype> &grad_pooled,
102  index_t nsize, index_t stride, index_t pad) {
104  ::Error_Expression_Does_Not_Meet_Dimension_Req();
106  (data_src.self(), data_pooled.self(), grad_pooled.self(), nsize, stride, pad);
107 }
108 
109 template<typename Reducer, typename SrcExp, typename DType, int etype>
112  const Exp<SrcExp, DType, etype> &data_pooled,
113  const Exp<SrcExp, DType, etype> &grad_pooled, index_t nsize) {
114  return ch_unpool(data_src, data_pooled, grad_pooled, nsize, 1, nsize / 2);
115 }
116 
117 
118 //----------------------
119 // Execution plan
120 //----------------------
121 template<typename Reducer, typename SrcExp, typename DType, int srcdim>
122 struct Plan<ChannelUnpoolingExp<Reducer, SrcExp, DType, srcdim>, DType> {
123  public:
126  grad_pooled_(e.grad_pooled_), channel_(e.shape_[srcdim - 3]),
127  height_(e.shape_[srcdim - 2]), pchannel_(e.pchannel_),
128  hnsize_(e.nsize_), stride_(e.kstride_), pad_(e.pad_) {}
129  MSHADOW_XINLINE DType Eval(index_t i, index_t j) const {
130  using namespace std;
131  const DType vsrc = data_src_.Eval(i, j);
132  const index_t y = i % height_;
133  i /= height_;
134  const index_t c = i % channel_;
135  const index_t n = i / channel_;
136  const index_t x = j;
137  const index_t cstart = c < hnsize_ - pad_ ? 0
138  : (c - (hnsize_ - pad_) + stride_) / stride_;
139  const index_t cend = min((c + pad_ + stride_) / stride_, channel_);
140  DType val = static_cast<DType>(0);
141  for (index_t cc = cstart; cc < cend; ++cc) {
142  val += Reducer::PartialGrad(vsrc,
143  data_pooled_.Eval((n * pchannel_ + cc) * height_ + y, x)) *
144  grad_pooled_.Eval((n * pchannel_ + cc) * height_ + y, x);
145  }
146  return val;
147  }
148 
149  private:
151  const index_t channel_, height_, pchannel_, hnsize_, stride_, pad_;
152 };
153 } // namespace expr
154 } // namespace mshadow
155 #endif // MSHADOW_EXTENSION_CHANNEL_UNPOOL_H_
156 
const SrcExp & grad_pooled_
gradient data of pooled part, to be propgate down
Definition: channel_unpool.h:49
PaddingExp< SrcExp, DType, ExpInfo< SrcExp >::kDim > pad(const Exp< SrcExp, DType, etype > &src, index_t pad)
padding expression, pad a image with zeros on boundaries, padding affects shape[0], and shape[1]
Definition: pad.h:72
index_t pad_
pad
Definition: channel_unpool.h:57
Definition: expr_engine-inl.h:59
used to help static type check
Definition: expr_engine-inl.h:331
index_t nsize_
kernel size in height
Definition: channel_unpool.h:53
const SrcExp & data_pooled_
result of pooled data, corresponds to result of pooling
Definition: channel_unpool.h:47
ChannelUnpoolingExp(const SrcExp &data_src, const SrcExp &data_pooled, const SrcExp &grad_pooled, index_t nsize, index_t kstride, index_t pad)
constructor
Definition: channel_unpool.h:59
channel pooling expression, do reduction over (local nearby) channels, used to implement local respon...
Definition: channel_unpool.h:41
Definition: optional.h:241
static Shape< dim > Check(const E &t)
#define MSHADOW_XINLINE
Definition: base.h:223
int32_t index_t
type that will be used for index
Definition: base.h:336
Plan(const ChannelUnpoolingExp< Reducer, SrcExp, DType, srcdim > &e)
Definition: channel_unpool.h:124
runtime shape checking template get the shape of an expression, report error if shape mismatch ...
Definition: expr_engine-inl.h:365
index_t kstride_
kernel size in width
Definition: channel_unpool.h:55
defines how expression exp can be evaluated and stored into dst
Definition: expression.h:80
index_t pchannel_
channel of pooled expression
Definition: channel_unpool.h:51
const SrcExp & data_src_
source input, corresponds to src in pooling
Definition: channel_unpool.h:45
const SubType & self(void) const
Definition: expression.h:83
a general class that allows extension that makes tensors of some shape
Definition: expr_engine-inl.h:44
overloaded + operator between half_t and bf16_t
Definition: base.h:327
MSHADOW_XINLINE DType Eval(index_t i, index_t j) const
Definition: channel_unpool.h:129
Shape< dim > shape_
the shape of this expression
Definition: expr_engine-inl.h:48
ChannelUnpoolingExp< Reducer, SrcExp, DType, ExpInfo< SrcExp >::kDim > ch_unpool(const Exp< SrcExp, DType, etype > &data_src, const Exp< SrcExp, DType, etype > &data_pooled, const Exp< SrcExp, DType, etype > &grad_pooled, index_t nsize, index_t stride, index_t pad)
channel unpooling, do unroll over (local nearby) channels
Definition: channel_unpool.h:99