/* * The MIT License (MIT) * * Copyright (c) 2015-2023 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. */ #ifndef MIGRAPHX_GUARD_JIT_SCATTER_HPP #define MIGRAPHX_GUARD_JIT_SCATTER_HPP #include #include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { namespace gpu { template struct scatter_compiler : compiler { compiler_replace compile(context& ctx, instruction_ref ins, const operation& op) const { const auto inputs = to_shapes(std::vector{ins->inputs().begin() + 1, ins->inputs().end()}); hip_compile_options options; options.set_launch_params(op.to_value(), compute_global_for(ctx, inputs.at(1).elements())); options.inputs = inputs; options.output = inputs.back(); options.kernel_name = derived().get_kernel_name(op); options.virtual_inputs = inputs; // The compiler protests the inequality comparison in assign_mul when pertaining to floating // point, despite it making sense in the context. Thus the warning removal. options.params += "-Wno-float-equal"; const auto src = derived().make_interpolated_string(op); return prepend_copy_data_to_output(compile_hip_code_object(src, options)); } compiler_replace prepend_copy_data_to_output(const operation& co) const { return {co, [](module& m, instruction_ref ins, const operation& op) { auto args = ins->inputs(); args.back() = m.insert_instruction(ins, make_op("hip::copy"), args.front(), args.back()); args.erase(args.begin()); return m.replace_instruction(ins, op, args); }}; } std::string get_kernel_name(const operation& op) const { return op.name() + "_kernel"; } const Derived& derived() const { return static_cast(*this); } }; } // namespace gpu } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx #endif