-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathref_concat.hpp
192 lines (167 loc) · 7.82 KB
/
ref_concat.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*******************************************************************************
* Copyright 2017-2025 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#ifndef CPU_REF_CONCAT_HPP
#define CPU_REF_CONCAT_HPP
#include "common/engine.hpp"
#include "common/primitive.hpp"
#include "common/reorder.hpp"
#include "common/reorder_pd.hpp"
#include "common/stream.hpp"
#include "cpu/cpu_concat_pd.hpp"
namespace dnnl {
namespace impl {
namespace cpu {
struct ref_concat_t : public primitive_t {
struct pd_t : public cpu_concat_pd_t {
using cpu_concat_pd_t::cpu_concat_pd_t;
DECLARE_CONCAT_PD_T("ref:any", ref_concat_t);
status_t init(engine_t *engine) {
using sm = primitive_attr_t::skip_mask_t;
VDISPATCH_CONCAT(attr()->has_default_values(sm::scales),
VERBOSE_UNSUPPORTED_ATTR);
tent_dst_md_ = types::zero_md();
status_t status = cpu_concat_pd_t::init();
if (status != status::success) {
assert(dst_md_.format_kind != format_kind::undef);
status = memory_desc_init_by_strides(tent_dst_md_,
dst_md_.ndims, dst_md_.dims, dst_md_.data_type,
nullptr);
VDISPATCH_CONCAT(status == status::success,
VERBOSE_UNSUPPORTED_MEM_STRIDE);
status = cpu_concat_pd_t::init(&tent_dst_md_);
VDISPATCH_CONCAT(status == status::success,
VERBOSE_PRIMITIVE_CREATION_FAIL, "concat");
}
const auto &sc = attr()->scales_;
reorder_pds_.resize(n_ + use_tent_dst());
for (int i = 0; i < n_; ++i) {
primitive_attr_t r_attr;
if (!sc.has_default_values(DNNL_ARG_MULTIPLE_SRC + i)) {
int mask = sc.get_mask(DNNL_ARG_MULTIPLE_SRC + i);
VDISPATCH_CONCAT(mask == 0, VERBOSE_UNSUPPORTED_SCALES_CFG);
CHECK(r_attr.scales_.set(DNNL_ARG_SRC, mask));
}
CHECK(reorder_primitive_desc_create(reorder_pds_[i], engine,
src_md(i), src_image_md(i), &r_attr));
}
if (use_tent_dst()) {
assert(tent_dst_md_.format_kind != format_kind::undef);
assert(dst_md_.format_kind != format_kind::undef);
CHECK(reorder_primitive_desc_create(
reorder_pds_[n_], engine, &tent_dst_md_, &dst_md_));
}
init_scratchpad();
return status;
}
// if dst is forced and cannot be used directly.
bool use_tent_dst() const { return !types::is_zero_md(&tent_dst_md_); }
std::vector<std::shared_ptr<primitive_desc_t>> reorder_pds_;
memory_desc_t tent_dst_md_;
private:
void init_scratchpad() {
using namespace memory_tracking::names;
auto scratchpad = scratchpad_registry().registrar();
if (use_tent_dst()) {
const memory_desc_wrapper tent_dst_d(&tent_dst_md_);
scratchpad.book(memory_tracking::names::key_concat_tent_dst,
tent_dst_d.size(), 1, tent_dst_d.data_type_size());
}
for (size_t i = 0; i < reorder_pds_.size(); i++) {
scratchpad.book(key_nested_multiple + (int)i,
reorder_pds_[i]->scratchpad_registry());
}
}
};
ref_concat_t(const pd_t *apd) : primitive_t(apd) {}
status_t init(engine_t *engine) override {
const size_t n = pd()->reorder_pds_.size();
reorders_.resize(n);
for (size_t i = 0; i < n; ++i)
pd()->reorder_pds_[i]->create_primitive(reorders_[i], engine);
return status::success;
}
~ref_concat_t() override = default;
status_t execute(const exec_ctx_t &ctx) const override {
using namespace memory_tracking::names;
engine_t *engine = ctx.stream()->engine();
const auto n = pd()->n_inputs();
auto execute_reorder = [&](const std::shared_ptr<primitive_t> &reorder,
const memory_arg_t &src,
const memory_arg_t &dst,
const memory_arg_t *src_scales,
int r_num) {
exec_args_t r_args;
r_args[DNNL_ARG_SRC] = src;
r_args[DNNL_ARG_DST] = dst;
if (src_scales)
r_args[DNNL_ARG_ATTR_SCALES | DNNL_ARG_SRC] = *src_scales;
exec_ctx_t r_ctx(ctx, std::move(r_args));
nested_scratchpad_t ns(ctx, key_nested_multiple + r_num, reorder);
r_ctx.set_scratchpad_grantor(ns.grantor());
reorder->execute(r_ctx);
};
if (pd()->use_tent_dst()) {
using namespace memory_tracking::names;
auto scratchpad = ctx.get_scratchpad_grantor();
auto tent_dst_storage
= scratchpad.get_memory_storage(key_concat_tent_dst);
for (int i = 0; i < n; ++i) {
std::unique_ptr<memory_t, memory_deleter_t> tent_dst_i;
CHECK(safe_ptr_assign(tent_dst_i,
new memory_t(engine, pd()->src_image_md(i),
tent_dst_storage->clone())));
const auto &src_scales_arg = ctx.args().find(
DNNL_ARG_ATTR_SCALES | (DNNL_ARG_MULTIPLE_SRC + i));
const memory_arg_t *src_scales = nullptr;
if (src_scales_arg != ctx.args().end())
src_scales = &src_scales_arg->second;
execute_reorder(reorders_[i],
ctx.args().at(DNNL_ARG_MULTIPLE_SRC + i),
{tent_dst_i.get(), false}, src_scales, i);
}
std::unique_ptr<memory_t, memory_deleter_t> tent_dst;
CHECK(safe_ptr_assign(tent_dst,
new memory_t(engine, &pd()->tent_dst_md_,
tent_dst_storage->clone())));
execute_reorder(reorders_[n], {tent_dst.get(), true},
ctx.args().at(DNNL_ARG_DST), nullptr, n);
} else {
auto &dst_mem_storage = CTX_OUT_STORAGE(DNNL_ARG_DST);
for (int i = 0; i < n; ++i) {
std::unique_ptr<memory_t, memory_deleter_t> tent_dst_i;
CHECK(safe_ptr_assign(tent_dst_i,
new memory_t(engine, pd()->src_image_md(i),
dst_mem_storage.clone())));
const auto &src_scales_arg = ctx.args().find(
DNNL_ARG_ATTR_SCALES | (DNNL_ARG_MULTIPLE_SRC + i));
const memory_arg_t *src_scales = nullptr;
if (src_scales_arg != ctx.args().end())
src_scales = &src_scales_arg->second;
execute_reorder(reorders_[i],
ctx.args().at(DNNL_ARG_MULTIPLE_SRC + i),
{tent_dst_i.get(), false}, src_scales, i);
}
}
return status::success;
}
private:
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::vector<std::shared_ptr<primitive_t>> reorders_;
};
} // namespace cpu
} // namespace impl
} // namespace dnnl
#endif