mxnet
spatial_pool.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 
25 #ifndef MSHADOW_EXTENSION_SPATIAL_POOL_H_
26 #define MSHADOW_EXTENSION_SPATIAL_POOL_H_
27 #include <algorithm>
28 #include "../extension.h"
29 namespace mshadow {
30 namespace expr {
38 template<typename Reducer, typename SrcExp, typename DType, int srcdim>
39 struct PoolingExp:
40  public MakeTensorExp<PoolingExp<Reducer, SrcExp, DType, srcdim>,
41  SrcExp, srcdim, DType> {
43  const SrcExp &src_;
57  PoolingExp(const SrcExp &src,
58  index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x)
59  : src_(src), ksize_y_(ksize_y), ksize_x_(ksize_x),
60  kstride_y_(kstride_y), kstride_x_(kstride_x) {
62  CHECK(sshape[srcdim - 1] >= ksize_x && sshape[srcdim - 2] >= ksize_y)
63  << "PoolingExp: kernel must be smaller than image";
64  this->src_height_ = sshape[srcdim - 2];
65  this->src_width_ = sshape[srcdim - 1];
66  this->shape_ = sshape;
67  this->shape_[srcdim - 2] = (src_height_ - ksize_y) / kstride_y + 1;
68  this->shape_[srcdim - 1] = (src_width_ - ksize_x) / kstride_x + 1;
69  }
71  PoolingExp(const SrcExp &src, Shape<2> pshape,
72  index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x)
73  : src_(src), ksize_y_(ksize_y), ksize_x_(ksize_x),
74  kstride_y_(kstride_y), kstride_x_(kstride_x) {
76  CHECK(sshape[srcdim - 1] >= ksize_x && sshape[srcdim - 2] >= ksize_y)
77  << "PoolingExp: kernel must be smaller than image";
78  this->src_height_ = sshape[srcdim - 2];
79  this->src_width_ = sshape[srcdim - 1];
80  this->shape_ = sshape;
81  this->shape_[srcdim - 2] = pshape[0];
82  this->shape_[srcdim - 1] = pshape[1];
83  }
84 };
98 template<typename Reducer, typename SrcExp, typename DType, int etype>
99 inline PoolingExp<Reducer, SrcExp, DType, ExpInfo<SrcExp>::kDim>
101  index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x) {
103  ::Error_Expression_Does_Not_Meet_Dimension_Req();
105  (src.self(), ksize_y, ksize_x, kstride_y, kstride_x);
106 }
121 template<typename Reducer, typename SrcExp,
122  typename DType, int etype>
123 inline PoolingExp<Reducer, SrcExp, DType, ExpInfo<SrcExp>::kDim>
125  index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x) {
127  ::Error_Expression_Does_Not_Meet_Dimension_Req();
129  (src.self(), pshape, ksize_y, ksize_x, kstride_y, kstride_x);
130 }
131 //----------------------
132 // Execution plan
133 //----------------------
134 template<typename Reducer, typename SrcExp, typename DType, int srcdim>
135 struct Plan<PoolingExp< Reducer, SrcExp, DType, srcdim>, DType> {
136  public:
138  : src_(MakePlan(e.src_)),
139  ksize_y_(e.ksize_y_), ksize_x_(e.ksize_x_),
140  kstride_y_(e.kstride_y_), kstride_x_(e.kstride_x_),
141  src_height_(e.src_height_), src_width_(e.src_width_),
142  new_height_(e.shape_[srcdim - 2]) {}
143  MSHADOW_XINLINE DType Eval(index_t i, index_t j) const {
144  using namespace std;
145  const index_t py = i % new_height_;
146  const index_t y_start = py * kstride_y_;
147  const index_t y_end = min(y_start + ksize_y_, src_height_);
148  const index_t px = j;
149  const index_t x_start = px * kstride_x_;
150  const index_t x_end = min(x_start + ksize_x_, src_width_);
151  const index_t c = i / new_height_;
152 
153  DType res; Reducer::SetInitValue(res);
154  for (index_t y = y_start; y < y_end; ++y) {
155  for (index_t x = x_start; x < x_end; ++x) {
156  Reducer::Reduce(res, src_.Eval(c * src_height_ + y, x));
157  }
158  }
159  return res;
160  }
161 
162  private:
163  Plan<SrcExp, DType> src_;
164  const index_t ksize_y_, ksize_x_, kstride_y_, kstride_x_;
165  const index_t src_height_, src_width_;
166  const index_t new_height_;
167 };
168 } // namespace expr
169 } // namespace mshadow
170 #endif // MSHADOW_EXTENSION_SPATIAL_POOL_H_
mshadow::expr::PoolingExp
pooling expression, do reduction over local patches of a image
Definition: spatial_pool.h:39
mshadow::expr::Exp::self
const SubType & self(void) const
Definition: expression.h:82
mshadow::expr::PoolingExp::kstride_y_
index_t kstride_y_
kernel stride in y directory
Definition: spatial_pool.h:49
mshadow::expr::TypeCheckPass
used to help static type check
Definition: expr_engine-inl.h:330
MSHADOW_XINLINE
#define MSHADOW_XINLINE
Definition: base.h:228
mshadow::expr::PoolingExp::ksize_y_
index_t ksize_y_
kernel size in height
Definition: spatial_pool.h:45
mshadow::expr::ShapeCheck::Check
static Shape< dim > Check(const E &t)
mshadow::expr::PoolingExp::PoolingExp
PoolingExp(const SrcExp &src, index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x)
constructor
Definition: spatial_pool.h:57
mshadow::expr::MakePlan
Plan< BinaryMapExp< OP, TA, TB, DType, etype >, DType > MakePlan(const BinaryMapExp< OP, TA, TB, DType, etype > &e)
Definition: expr_engine-inl.h:239
mshadow::expr::MakeTensorExp< PoolingExp< Reducer, SrcExp, DType, srcdim >, SrcExp, srcdim, DType >::shape_
Shape< dim > shape_
the shape of this expression
Definition: expr_engine-inl.h:47
mshadow::expr::PoolingExp::src_height_
index_t src_height_
source height shape[1]
Definition: spatial_pool.h:53
mshadow::index_t
int32_t index_t
type that will be used for index
Definition: base.h:328
mshadow::expr::Plan
Definition: expr_engine-inl.h:58
mshadow::expr::PoolingExp::src_
const SrcExp & src_
source operand
Definition: spatial_pool.h:43
mshadow::expr::Exp
defines how expression exp can be evaluated and stored into dst
Definition: expression.h:79
mshadow::expr::PoolingExp::src_width_
index_t src_width_
source width shape[0]
Definition: spatial_pool.h:55
mshadow::expr::pool
PoolingExp< Reducer, SrcExp, DType, ExpInfo< SrcExp >::kDim > pool(const Exp< SrcExp, DType, etype > &src, index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x)
pooling subregion results together
Definition: spatial_pool.h:100
mshadow
overloaded + operator between half_t and bf16_t
Definition: base.h:319
mshadow::expr::MakeTensorExp
a general class that allows extension that makes tensors of some shape
Definition: expr_engine-inl.h:43
std
Definition: optional.h:251
mshadow::Shape< srcdim >
mshadow::expr::PoolingExp::kstride_x_
index_t kstride_x_
kernel stride in x directory
Definition: spatial_pool.h:51
mshadow::expr::Plan< PoolingExp< Reducer, SrcExp, DType, srcdim >, DType >::Plan
Plan(const PoolingExp< Reducer, SrcExp, DType, srcdim > &e)
Definition: spatial_pool.h:137
mshadow::expr::PoolingExp::ksize_x_
index_t ksize_x_
kernel size in width
Definition: spatial_pool.h:47
mshadow::expr::Plan< PoolingExp< Reducer, SrcExp, DType, srcdim >, DType >::Eval
MSHADOW_XINLINE DType Eval(index_t i, index_t j) const
Definition: spatial_pool.h:143
mshadow::expr::PoolingExp::PoolingExp
PoolingExp(const SrcExp &src, Shape< 2 > pshape, index_t ksize_y, index_t ksize_x, index_t kstride_y, index_t kstride_x)
constructor, specify shape
Definition: spatial_pool.h:71