Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / mkl-dnn / src / cpu / cpu_binarization_pd.hpp
1 /*******************************************************************************
2 * Copyright 2019 Intel Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *******************************************************************************/
16
17 #ifndef CPU_BINARIZATION_PD_HPP
18 #define CPU_BINARIZATION_PD_HPP
19
20 #include <assert.h>
21
22 #include "c_types_map.hpp"
23 #include "binarization_pd.hpp"
24 #include "cpu_engine.hpp"
25 #include "cpu_memory.hpp"
26 #include "cpu_primitive.hpp"
27 #include "type_helpers.hpp"
28 #include "utils.hpp"
29
30 namespace mkldnn {
31 namespace impl {
32 namespace cpu {
33
34 struct cpu_binarization_fwd_pd_t: public binarization_fwd_pd_t {
35     using cpu_memory_pd_t = cpu_memory_t::pd_t;
36
37     cpu_binarization_fwd_pd_t(engine_t *engine, const binarization_desc_t *adesc,
38             const primitive_attr_t *attr, const binarization_fwd_pd_t *hint_fwd_pd)
39         : binarization_fwd_pd_t(engine, adesc, attr, hint_fwd_pd)
40         , src_pd_(engine_, &desc_.src_desc)
41         , dst_pd_(engine_, &desc_.dst_desc)
42         , weights_pd_(engine_, &desc_.weights_desc) {}
43     virtual ~cpu_binarization_fwd_pd_t() {}
44
45     virtual const cpu_memory_pd_t *src_pd(int index = 0) const override
46     { return index == 0 ? &src_pd_ : nullptr; }
47     virtual const cpu_memory_pd_t *dst_pd(int index = 0) const override
48     { return index == 0 ? &dst_pd_ : nullptr; }
49     virtual const cpu_memory_pd_t *weights_pd(int index = 0) const override {
50         if (index == 0) return &weights_pd_;
51         return nullptr;
52     }
53
54 protected:
55     cpu_memory_pd_t src_pd_, dst_pd_, weights_pd_;
56
57     inline memory_format_t src_format()
58     {
59         using namespace memory_format;
60         return utils::pick(desc_.src_desc.ndims - 3, ncw, nchw, ncdhw);
61     }
62     inline memory_format_t wei_format()
63     {
64         using namespace memory_format;
65         return x;
66     }
67
68     virtual status_t set_default_params() {
69         using namespace memory_format;
70         if (src_pd_.desc()->format == any)
71             CHECK(src_pd_.set_format(src_format()));
72         if (dst_pd_.desc()->format == any)
73             CHECK(dst_pd_.set_format(src_pd_.desc()->format));
74         if (weights_pd_.desc()->format == any)
75             CHECK(weights_pd_.set_format(wei_format()));
76         return status::success;
77     }
78
79     virtual status_t init() = 0;
80 };
81
82 }
83 }
84 }
85
86 #endif