concat.cpp 10.3 KB
Newer Older
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
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include <migraphx/gpu/compiler.hpp>
#include <migraphx/gpu/context.hpp>
#include <migraphx/gpu/compile_hip_code_object.hpp>
#include <migraphx/gpu/compile_hip.hpp>
#include <migraphx/gpu/compile_gen.hpp>
#include <migraphx/reduce_dims.hpp>
Paul's avatar
Paul committed
30
#include <migraphx/algorithm.hpp>
31
32
33
34
35
36
37
38
39
40
41

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace gpu {

using namespace migraphx::gpu::gen; // NOLINT

// NOLINTNEXTLINE
static const char* const concat_kernel = R"__migraphx__(
#include <migraphx/kernels/concat.hpp>
#include <migraphx/kernels/vectorize.hpp>
42
#include <migraphx/kernels/ops.hpp>
43
44
45
46
#include <args.hpp>

namespace migraphx {

47
48
${preamble}

49
50
extern "C" {

Paul Fultz II's avatar
Paul Fultz II committed
51
MIGRAPHX_GLOBAL void ${kernel}(${params}) 
52
{
53
54
    transform_args(make_tensors(), rotate_last(), ${transformers})(${args})([](auto y, ${concat_params}, auto... xs) {
        concat<${axis}>(${concat_args})(${post}, y, xs...);
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
    });
}

}

} // namespace migraphx

)__migraphx__";

struct concat_compiler : compiler<concat_compiler>
{
    std::vector<std::string> names() const { return {"concat"}; }

    static std::size_t get_concat_elements(const std::vector<shape>& inputs)
    {
        return inputs.back().elements() / (inputs.size() - 1);
    }

    operation compile_op(context& ctx, const std::vector<shape>& inputs, const value& v) const
    {
75
        auto num_of_concat_inputs = v.get("concat_inputs", inputs.size() - 1);
76
77
78
79
        hip_compile_options options;
        options.inputs      = inputs;
        options.output      = inputs.back();
        options.params      = "-Wno-float-equal";
80
        options.kernel_name = v.get("kernel", "concat_kernel");
81
        auto axis           = find_fast_axis(options.inputs);
82
83
84
        vectorize vec{};
        if(axis != v.at("axis").to<std::size_t>())
            vec = vectorize::elements(ctx, axis, options.inputs);
85
86
        options.set_launch_params(
            v, compute_global_for(ctx, get_concat_elements(options.inputs) / vec.size, 256));
87
88
89
90
91
92
93
94
95
96
97
        auto src = interpolate_string(
            concat_kernel,
            {{"kernel", options.kernel_name},
             {"params", enum_params(inputs.size(), "void * private_p")},
             {"args", enum_params(inputs.size(), "private_p")},
             {"concat_params", enum_params(num_of_concat_inputs, "auto concat_x")},
             {"concat_args", enum_params(num_of_concat_inputs, "concat_x")},
             {"post", v.get("post", std::string{"op::id{}"})},
             {"transformers", make_transformer_args(vec)},
             {"preamble", v.get("preamble", std::string{})},
             {"axis", v.at("axis").to<std::string>()}});
98
99
100
101
102
        return compile_hip_code_object(src, options);
    }

    compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const
    {
103
104
105
106
107
108
109
110
111
        auto v = op.to_value();
        if(not ins->module_inputs().empty())
        {
            auto* pm           = ins->module_inputs().front();
            v["concat_inputs"] = ins->inputs().size() - pm->get_parameter_names().size();
            v["preamble"]      = generate_pointwise(*pm, "post_concat");
            v["post"]          = "MIGRAPHX_LIFT(post_concat)";
            v["kernel"]        = "concat_" + generate_name_from_ops(*pm) + "_kernel";
        }
112
        return compile_op(ctx, to_shapes(ins->inputs()), v);
113
114
115
    }
};

Paul's avatar
Paul committed
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
// NOLINTNEXTLINE
static const char* const fused_concat_kernel = R"__migraphx__(
#include <migraphx/kernels/concat.hpp>
#include <migraphx/kernels/vectorize.hpp>
#include <migraphx/kernels/ops.hpp>
#include <args.hpp>

namespace migraphx {

${preamble}

extern "C" {

MIGRAPHX_GLOBAL void ${kernel}(${params}) 
{
    transform_args(make_tensors(), rotate_last(), ${transformers})(${args})([](auto y, ${concat_params}, auto... xs) {
        concat2<${axis}>(${concat_args})(${post}, y, xs...);
    });
}

}

} // namespace migraphx

)__migraphx__";

struct fused_concat_compiler : compiler<fused_concat_compiler>
{
    std::vector<std::string> names() const { return {"fused_concat"}; }

    operation compile_op(context& ctx, const std::vector<shape>& inputs, const value& v) const
    {
        hip_compile_options options;
        options.inputs      = inputs;
        options.output      = inputs.back();
        options.params      = "-Wno-float-equal";
        options.kernel_name = v.get("kernel", "concat_kernel");
        auto axis           = find_fast_axis(options.inputs);
Paul's avatar
Format  
Paul committed
154
155
        auto op_names       = v.at("ops").to_vector<std::string>();
        auto args           = v.at("args");
Paul's avatar
Paul committed
156
157
158
159
        vectorize vec{};
        if(axis != v.at("axis").to<std::size_t>())
            vec = vectorize::elements(ctx, axis, options.inputs);
        auto nelements_per_op = options.inputs.back().elements() / op_names.size();
Paul's avatar
Format  
Paul committed
160
        options.set_launch_params(v, compute_global_for(ctx, nelements_per_op / vec.size, 256));
Paul's avatar
Paul committed
161
162
        std::vector<std::string> concat_params;
        std::vector<std::string> concat_args;
Paul's avatar
Format  
Paul committed
163
        for(const auto& name : op_names)
Paul's avatar
Paul committed
164
        {
Paul's avatar
Format  
Paul committed
165
            auto n      = args.at(name).to<std::size_t>();
Paul's avatar
Paul committed
166
167
168
169
170
171
172
173
174
175
            auto prefix = name + "_concat_x";
            transform(range(n), std::back_inserter(concat_params), [&](auto i) {
                return "auto " + prefix + std::to_string(i);
            });
            std::vector<std::string> pack_args = {"MIGRAPHX_LIFT(" + name + ")"};
            transform(range(n), std::back_inserter(pack_args), [&](auto i) {
                return prefix + std::to_string(i);
            });
            concat_args.push_back("pack(" + join_strings(pack_args, ", ") + ")");
        }
Paul's avatar
Format  
Paul committed
176
177
178
179
180
181
182
183
184
185
        auto src = interpolate_string(fused_concat_kernel,
                                      {{"kernel", options.kernel_name},
                                       {"params", enum_params(inputs.size(), "void * private_p")},
                                       {"args", enum_params(inputs.size(), "private_p")},
                                       {"concat_params", join_strings(concat_params, ", ")},
                                       {"concat_args", join_strings(concat_args, ", ")},
                                       {"post", v.get("post", std::string{"op::id{}"})},
                                       {"transformers", make_transformer_args(vec)},
                                       {"preamble", v.get("preamble", std::string{})},
                                       {"axis", v.at("axis").to<std::string>()}});
Paul's avatar
Paul committed
186
187
188
189
190
191
192
        return compile_hip_code_object(src, options);
    }

    compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const
    {
        auto v = op.to_value();
        std::unordered_map<std::string, std::string> mod_names_lookup;
Paul's avatar
Format  
Paul committed
193
194
195
196
197
198
199
200
201
202
203
204
205
206
        transform(range(ins->module_inputs().size()),
                  std::inserter(mod_names_lookup, mod_names_lookup.end()),
                  [&](auto i) {
                      return std::make_pair(ins->module_inputs()[i]->name(),
                                            "pointwise" + std::to_string(i));
                  });
        v["preamble"] = transform_accumulate(
            ins->module_inputs().begin(),
            ins->module_inputs().end(),
            std::string{},
            std::plus<>{},
            [&](module_ref mod) {
                return generate_pointwise(*mod, mod_names_lookup.at(mod->name())) + "\n";
            });
Paul's avatar
Paul committed
207
        std::vector<std::string> mod_names;
Paul's avatar
Format  
Paul committed
208
        std::transform(ins->module_inputs().begin(),
Paul's avatar
Paul committed
209
                       ins->module_inputs().end() - 1,
Paul's avatar
Format  
Paul committed
210
211
                       std::back_inserter(mod_names),
                       [&](module_ref mod) { return mod_names_lookup.at(mod->name()); });
Paul's avatar
Paul committed
212
        v["ops"] = mod_names;
Paul's avatar
Paul committed
213
        module_ref last_mod = ins->module_inputs().back();
Paul's avatar
Format  
Paul committed
214
        v["post"]           = "MIGRAPHX_LIFT(" + mod_names_lookup.at(last_mod->name()) + ")";
Paul's avatar
Paul committed
215
        std::unordered_map<std::string, std::size_t> mod_args;
Paul's avatar
Format  
Paul committed
216
        std::transform(ins->module_inputs().begin(),
Paul's avatar
Format  
Paul committed
217
                       ins->module_inputs().end() - 1,
Paul's avatar
Format  
Paul committed
218
219
220
221
222
223
                       std::inserter(mod_args, mod_args.end()),
                       [&](module_ref mod) {
                           const auto& name = mod_names_lookup.at(mod->name());
                           return std::make_pair(name, mod->get_parameter_names().size());
                       });
        v["args"]   = mod_args;
Paul's avatar
Format  
Paul committed
224
225
226
227
228
229
230
231
232
233
234
235
        auto prefix_name = transform_accumulate(ins->module_inputs().begin(),
                                                ins->module_inputs().end() - 1,
                                                std::string{},
                                                std::plus<>{},
                                                [&](module_ref mod) -> std::string {
                                                    auto name = generate_name_from_ops(*mod);
                                                    if(name.empty())
                                                        return "";
                                                    return name + "_";
                                                });
        v["kernel"]      = prefix_name + "concat_" +
                      generate_name_from_ops(*(ins->module_inputs().back())) + "_kernel";
Paul's avatar
Paul committed
236
237
238
239
        return compile_op(ctx, to_shapes(ins->inputs()), v);
    }
};

240
241
242
} // namespace gpu
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx