updated readme file due to moving CMake scripts to the root folder
[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         , output_mask_pd_(engine_, &desc_.output_mask_desc) {}
44     virtual ~cpu_binarization_fwd_pd_t() {}
45
46     virtual const cpu_memory_pd_t *src_pd(int index = 0) const override
47     { return index == 0 ? &src_pd_ : nullptr; }
48     virtual const cpu_memory_pd_t *dst_pd(int index = 0) const override
49     { return index == 0 ? &dst_pd_ : nullptr; }
50     virtual const cpu_memory_pd_t *weights_pd(int index = 0) const override {
51         if (index == 0) return &weights_pd_;
52         if (index == 1) return &output_mask_pd_;
53         return nullptr;
54     }
55
56 protected:
57     cpu_memory_pd_t src_pd_, dst_pd_, weights_pd_, output_mask_pd_;
58
59     inline memory_format_t src_format()
60     {
61         using namespace memory_format;
62         return utils::pick(desc_.src_desc.ndims - 3, ncw, nchw, ncdhw);
63     }
64     inline memory_format_t wei_format()
65     {
66         using namespace memory_format;
67         return x;
68     }
69
70     virtual status_t set_default_params() {
71         using namespace memory_format;
72         if (src_pd_.desc()->format == any)
73             CHECK(src_pd_.set_format(src_format()));
74         if (dst_pd_.desc()->format == any)
75             CHECK(dst_pd_.set_format(src_pd_.desc()->format));
76         if (weights_pd_.desc()->format == any)
77             CHECK(weights_pd_.set_format(wei_format()));
78         if (output_mask_pd_.desc()->format == any)
79             CHECK(output_mask_pd_.set_format(wei_format()));
80         return status::success;
81     }
82
83     virtual status_t init() = 0;
84 };
85
86 }
87 }
88 }
89
90 #endif