softmax.cpp 2.59 KB
Newer Older
Paul's avatar
Paul committed
1
2
3
4
#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's avatar
Paul committed
5
#include <migraphx/gpu/compile_gen.hpp>
Paul's avatar
Paul committed
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include <migraphx/cpp_generator.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/reduce_dims.hpp>
#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's avatar
Paul committed
20
21
using namespace migraphx::gpu::gen; // NOLINT

Paul's avatar
Paul committed
22
23
24
static const char* const softmax_kernel = R"__migraphx__(
#include <migraphx/kernels/index.hpp>
#include <migraphx/kernels/softmax.hpp>
Paul's avatar
Paul committed
25
#include <migraphx/kernels/vectorize.hpp>
Paul's avatar
Paul committed
26
27
28
29
30
31
32
#include <args.hpp>

namespace migraphx {

extern "C" {
__global__ void softmax_kernel(void* input_p, void* output_p) 
{
Paul's avatar
Paul committed
33
    transform_args(make_tensors(), ${transformers})(input_p, output_p)([](auto input, auto output) {
Paul's avatar
Paul committed
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
        softmax<${axis}>(input, output);
    });
}
    
}

} // namespace migraphx

)__migraphx__";

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

    operation compile_op(context& ctx, const std::vector<shape>& inputs, const value& v) const
    {
Paul's avatar
Paul committed
50
        // TODO: Use reduce_dims
Paul's avatar
Format  
Paul committed
51
52
        auto axis  = v.at("axis").to<int64_t>();
        auto faxis = find_fast_axis({inputs.front()});
Paul's avatar
Paul committed
53
54
55
56
57
58
59
        vectorize vec{};
        // Vectorize if the axis is a reduction axis
        if(inputs.back().lens()[faxis] == 1)
        {
            vec = vectorize::elements(faxis, inputs);
        }
        auto relements  = inputs[0].lens()[axis] / vec.size;
Paul's avatar
Format  
Paul committed
60
        auto nelements  = inputs.back().elements() / relements;
Paul's avatar
Paul committed
61
        auto block_size = compute_block_size(relements, 256);
Paul's avatar
Paul committed
62
        hip_compile_options options;
Paul's avatar
Format  
Paul committed
63
        options.set_launch_params(
Paul's avatar
Paul committed
64
            v, compute_global_for(ctx, nelements * block_size, 256), block_size);
Paul's avatar
Paul committed
65
66
67
68
        options.output      = inputs.back();
        options.inputs      = inputs;
        options.kernel_name = "softmax_kernel";

Paul's avatar
Format  
Paul committed
69
70
71
        auto src = interpolate_string(
            softmax_kernel,
            {{"transformers", make_transformer_args(vec)}, {"axis", to_string(axis)}});
Paul's avatar
Paul committed
72
73
74
75
76
77
78
79
80
81
82
83
84

        return compile_hip_code_object(src, options);
    }

    compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const
    {
        return replace(compile_op(ctx, to_shapes(ins->inputs()), op.to_value()));
    }
};

} // namespace gpu
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx