pointwise.cpp 4.94 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

#include <migraphx/cpp_generator.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/reduce_dims.hpp>
33
#include <migraphx/permutation.hpp>
34
35
36
37
38
39
40
41
42
43
#include <migraphx/stringutils.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/eliminate_common_subexpression.hpp>
#include <migraphx/module.hpp>
#include <migraphx/pass_manager.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace gpu {

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

46
47
48
49
50
51
52
53
54
55
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
56
__global__ void ${kernel}(${params}) 
57
{
58
    auto idx = make_index();
Paul Fultz II's avatar
Paul Fultz II committed
59
    pointwise(idx, ${transformers})(${lambda}, ${args});
60
61
62
63
64
65
66
67
68
69
}
    
}

} // namespace migraphx

)__migraphx__";

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

72
    static std::size_t oversubscribe_if(bool b)
73
    {
74
        if(b)
75
            return 256;
76
77
78
        else
            return 1;
    }
79
80
81
82
83
84
85
    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";
86
        auto axis              = find_fast_axis(options.virtual_inputs);
Paul Fultz II's avatar
Paul Fultz II committed
87
88
89
90
91
92
93
94
        auto vec               = vectorize::elements(axis, options.virtual_inputs);
        auto preloads          = preload::broadcasts(axis, options.virtual_inputs);
        options.kernel_name    = v.get("kernel", "kernel");
        options.set_launch_params(
            v,
            compute_global_for(ctx,
                               options.output.elements() / vec.size,
                               oversubscribe_if(not preloads.is_preloading())));
95
        auto src = interpolate_string(pointwise_kernel,
kahmed10's avatar
kahmed10 committed
96
97
                                      {{"kernel", options.kernel_name},
                                       {"params", enum_params(inputs.size(), "void * private_p")},
98
99
                                       {"args", enum_params(inputs.size(), "private_p")},
                                       {"lambda", v.at("lambda").to<std::string>()},
Paul Fultz II's avatar
Paul Fultz II committed
100
                                       {"transformers", make_transformer_args(preloads, vec)},
101
102
103
104
                                       {"preamble", v.get("preamble", std::string{})}});
        return compile_hip_code_object(src, options);
    }

105
    compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const
106
    {
107
108
109
110
111
112
113
114
115
116
        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());
Paul's avatar
Format  
Paul committed
117
118
            auto* pm           = ins->module_inputs().front();
            auto pf            = generate_pointwise(*pm, "inner_pointwise");
Paul's avatar
Paul committed
119
            std::string lambda = "MIGRAPHX_LIFT(inner_pointwise)";
Paul's avatar
Format  
Paul committed
120
121
122
123
124
            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}}));
125
        }
126
127
128
129
130
    }
};
} // namespace gpu
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx