/* * 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 #include #include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { namespace gpu { using namespace migraphx::gpu::gen; // NOLINT static const char* const pointwise_kernel = R"__migraphx__( #include #include #include namespace migraphx { ${preamble} extern "C" { __global__ void ${kernel}(${params}) { auto idx = make_index(); pointwise(idx, ${transformers})(${lambda}, ${args}); } } } // namespace migraphx )__migraphx__"; struct pointwise_compiler : compiler { std::vector names() const { return {"pointwise", "contiguous", "layout"}; } static std::size_t oversubscribe_if(bool b) { if(b) return 256; else return 1; } operation compile_op(context& ctx, const std::vector& 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"; auto axis = find_fast_axis(options.virtual_inputs); auto vec = vectorize::elements(ctx, 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, 256)); auto src = interpolate_string(pointwise_kernel, {{"kernel", options.kernel_name}, {"params", enum_params(inputs.size(), "void * private_p")}, {"args", enum_params(inputs.size(), "private_p")}, {"lambda", v.at("lambda").to()}, {"transformers", make_transformer_args(vec)}, {"preamble", v.get("preamble", std::string{})}}); //std::cout << src << std::endl; return compile_hip_code_object(src, options); } compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const { if(contains({"layout", "contiguous"}, op.name())) { return replace(compile_op( ctx, to_shapes(ins->inputs()), {{"lambda", "[](auto x) { return x; }"}, {"kernel", op.name() + "_kernel"}})); } else { assert(not ins->module_inputs().empty()); 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}})); } } }; } // namespace gpu } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx