"vscode:/vscode.git/clone" did not exist on "b8eb03d9f18f318f01a5bbfd63cc82fe3aa9f970"
pointwise.cpp 4.43 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
/*
 * 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.
 */
24
25
26
27
#include <migraphx/gpu/compiler.hpp>
#include <migraphx/gpu/context.hpp>
#include <migraphx/gpu/compile_hip_code_object.hpp>
#include <migraphx/gpu/compile_hip.hpp>
Paul Fultz II's avatar
Paul Fultz II committed
28
#include <migraphx/gpu/compile_gen.hpp>
29
30
31
32
33
34
#include <migraphx/reduce_dims.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace gpu {

Paul Fultz II's avatar
Paul Fultz II committed
35
36
using namespace migraphx::gpu::gen; // NOLINT

37
38
39
40
41
42
43
44
45
46
static const char* const pointwise_kernel = R"__migraphx__(
#include <migraphx/kernels/index.hpp>
#include <migraphx/kernels/pointwise.hpp>
#include <args.hpp>

namespace migraphx {

${preamble}

extern "C" {
kahmed10's avatar
kahmed10 committed
47
__global__ void ${kernel}(${params}) 
48
{
49
    auto idx = make_index();
Paul Fultz II's avatar
Paul Fultz II committed
50
    pointwise(idx, ${transformers})(${lambda}, ${args});
51
52
53
54
55
56
57
58
59
60
}
    
}

} // namespace migraphx

)__migraphx__";

struct pointwise_compiler : compiler<pointwise_compiler>
{
61
    std::vector<std::string> names() const { return {"pointwise", "contiguous"}; }
62

63
    static std::size_t oversubscribe_if(bool b)
64
    {
65
        if(b)
66
            return 256;
67
68
69
        else
            return 1;
    }
70
71
72
73
74
75
76
    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.virtual_inputs = reduce_dims(inputs);
        options.params         = "-Wno-float-equal";
77
        auto axis              = find_fast_axis(options.virtual_inputs);
78
        auto vec               = vectorize::elements(ctx, axis, options.virtual_inputs);
Paul Fultz II's avatar
Paul Fultz II committed
79
80
        options.kernel_name    = v.get("kernel", "kernel");
        options.set_launch_params(
81
            v, compute_global_for(ctx, options.output.elements() / vec.size, 256));
82
        auto src = interpolate_string(pointwise_kernel,
kahmed10's avatar
kahmed10 committed
83
84
                                      {{"kernel", options.kernel_name},
                                       {"params", enum_params(inputs.size(), "void * private_p")},
85
86
                                       {"args", enum_params(inputs.size(), "private_p")},
                                       {"lambda", v.at("lambda").to<std::string>()},
87
                                       {"transformers", make_transformer_args(vec)},
88
89
90
91
                                       {"preamble", v.get("preamble", std::string{})}});
        return compile_hip_code_object(src, options);
    }

92
    compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const
93
    {
94
95
96
97
98
99
100
101
102
103
        if(op.name() == "contiguous")
        {
            return replace(compile_op(
                ctx,
                to_shapes(ins->inputs()),
                {{"lambda", "[](auto x) { return x; }"}, {"kernel", "contiguous_kernel"}}));
        }
        else
        {
            assert(not ins->module_inputs().empty());
104
105
106
107
108
109
110
111
            auto* pm           = ins->module_inputs().front();
            auto pf            = generate_pointwise(*pm, "inner_pointwise");
            std::string lambda = "MIGRAPHX_LIFT(inner_pointwise)";
            auto kernel_name   = generate_name_from_ops(*pm) + "_kernel";
            return replace(
                compile_op(ctx,
                           to_shapes(ins->inputs()),
                           {{"lambda", lambda}, {"preamble", pf}, {"kernel", kernel_name}}));
112
        }
113
114
115
116
117
    }
};
} // namespace gpu
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx