mxnet
mask.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_MASK_H_
27 #define MSHADOW_EXTENSION_MASK_H_
28 
29 #include "../extension.h"
30 
31 namespace mshadow {
32 namespace expr {
33 
39 template<typename IndexExp, typename SrcExp, typename DType>
40 struct MaskExp: public Exp<MaskExp<IndexExp, SrcExp, DType>,
41  DType, type::kChainer> {
43  const IndexExp &index_;
45  const SrcExp &src_;
47  MaskExp(const IndexExp &index, const SrcExp &src)
48  : index_(index), src_(src) {}
49 }; // struct MaskExp
50 
51 
52 
53 template<typename IndexExp,
54  typename SrcExp,
55  typename DType,
56  int e1, int e2>
59  const Exp<SrcExp, DType, e2> &src) {
60  return MaskExp<IndexExp, SrcExp, DType>(index.self(), src.self());
61 }
62 
63 
64 //----------------------
65 // Execution plan
66 //----------------------
67 
68 template<typename IndexExp, typename SrcExp, typename DType>
69 struct Plan<MaskExp<IndexExp, SrcExp, DType>, DType> {
70  public:
72  : index_(MakePlan(e.index_)), src_(MakePlan(e.src_)) {
73  }
74 
75  MSHADOW_XINLINE DType Eval(index_t y, index_t x) const {
76  return static_cast<DType>(src_.Eval(y, x) * index_.Eval(0, y));
77  }
78 
79  private:
82 }; // struct Plan
83 
84 template<typename IndexExp, typename SrcExp, typename DType>
87  return Plan<MaskExp<IndexExp, SrcExp, DType>, DType>(exp);
88 }
89 
90 template<int dim, typename IndexExp, typename SrcExp, typename DType>
91 struct ShapeCheck<dim, MaskExp<IndexExp, SrcExp, DType> > {
92  inline static Shape<dim>
94  CHECK(dim == 2)
95  << "MaskExp only support 2D output";
98  CHECK_EQ(dshape[0], wshape[0]) << "MaskExp require inputs in same first dimention";
99  Shape<dim> ret;
100  ret[0] = wshape[0];
101  ret[1] = wshape[1];
102  return ret;
103  }
104 };
105 
106 
107 template<typename IndexExp, typename SrcExp, typename DType>
108 struct ExpInfo<MaskExp<IndexExp, SrcExp, DType> > {
109  static const int kDim = 2;
110  static const int kDevMask = ExpInfo<IndexExp>::kDevMask;
111 };
112 
113 } // namespace expr
114 } // namespace mshadow
115 
116 #endif // MSHADOW_EXTENSION_MASK_H_
MaskExp(const IndexExp &index, const SrcExp &src)
Definition: mask.h:47
Definition: expr_engine-inl.h:59
const SrcExp & src_
matrix oprand
Definition: mask.h:45
static Shape< dim > Check(const MaskExp< IndexExp, SrcExp, DType > &t)
Definition: mask.h:93
const IndexExp & index_
index oprand
Definition: mask.h:43
static Shape< dim > Check(const E &t)
#define MSHADOW_XINLINE
Definition: base.h:223
static type inference template, used to get the dimension of each expression, if ExpInfo<E>::kDim == ...
Definition: expr_engine-inl.h:263
MaskExp< IndexExp, SrcExp, DType > mask(const Exp< IndexExp, DType, e1 > &index, const Exp< SrcExp, DType, e2 > &src)
Definition: mask.h:58
Plan(const MaskExp< IndexExp, SrcExp, DType > &e)
Definition: mask.h:71
int32_t index_t
type that will be used for index
Definition: base.h:336
Broadcast a mask and do element-wise multiplication.
Definition: mask.h:40
runtime shape checking template get the shape of an expression, report error if shape mismatch ...
Definition: expr_engine-inl.h:365
defines how expression exp can be evaluated and stored into dst
Definition: expression.h:80
const SubType & self(void) const
Definition: expression.h:83
Plan< BinaryMapExp< OP, TA, TB, DType, etype >, DType > MakePlan(const BinaryMapExp< OP, TA, TB, DType, etype > &e)
Definition: expr_engine-inl.h:240
overloaded + operator between half_t and bf16_t
Definition: base.h:327
MSHADOW_XINLINE DType Eval(index_t y, index_t x) const
Definition: mask.h:75