/* * 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 "migraphx/instruction_ref.hpp" #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { template std::vector find_lasts(const module& m, Predicate pred) { std::vector result; fix([&](auto self, auto ins) { if(pred(ins)) { result.push_back(ins); return; } for(auto input : ins->inputs()) self(input); })(std::prev(m.end())); return result; } std::unordered_set preserve_output_layout(module& m) { std::unordered_set result; std::vector outputs = find_lasts(m, [](auto ins) { return ins->get_shape().lens().size() == 4; }); for(auto output : outputs) { auto permutation = find_permutation(output->get_shape()); auto layout_ins = m.insert_instruction( std::next(output), make_op("layout", {{"permutation", permutation}}), output); auto output1 = m.insert_instruction( layout_ins, make_op("allocate", {{"shape", to_value(layout_ins->get_shape())}})); std::vector refs = layout_ins->inputs(); refs.push_back(output1); auto layout = m.replace_instruction( layout_ins, make_op("gpu::precompile_op", {{"op", to_value(layout_ins->get_operator())}}), refs, layout_ins->module_inputs()); result.insert(layout); // m.debug_print(layout); } return result; } void remove_layout(module& m) { for(auto ins : iterator_for(m)) { if(ins->name() != "layout") continue; auto in_shape = ins->inputs().front()->get_shape(); if(in_shape == ins->get_shape()) m.replace_instruction(ins, ins->inputs().front()); } } // std::vector find_convs(const module& m) // { // std::vector convs; // for(auto ins : iterator_for(m)) // { // if(ins->name() == "gpu::miopen_op") // convs.push_back(ins); // } // return convs; // } // void remove_layout(module& m, const std::vector& convs) // { // if(convs.size() < 2) return; // m.debug_print(); // for(auto i = 0; i < convs.size() - 1; i++) // { // bool reached_start = false; // for(auto ins : iterator_for(m)) // { // if(ins == convs[i]) // reached_start = true; // if(reached_start) // { // if(ins->name() == "gpu::pooling") // break; // if(ins == convs[i + 1]) // { // m.debug_print(convs[i]->outputs().front()); // m.debug_print(convs[i]->outputs().front()->outputs().front()); // m.replace_instruction(convs[i]->outputs().front(), convs[i]->outputs().front()->outputs().front()); // std::cout << "HERE" << std::endl; // m.debug_print(convs[i]->outputs().front()); // // m.debug_print(convs[i]->outputs().front()); // // m.debug_print(convs[i]->outputs().front()->outputs().front()); // std::cout << std::endl; // m.debug_print(convs[i]->inputs()); // std::cout << std::endl; // m.debug_print(convs[i + 1]->inputs()); // for(auto j = 0; j < convs[i + 1]->inputs().size(); j++) // { // if(convs[i]->inputs()[j] == convs[i + 1]->inputs()[j]) // { // std::cout << "HERE2" << std::endl; // continue; // } // m.replace_instruction(convs[i + 1]->inputs()[j], convs[i + 1]->inputs()[j]->inputs().front()); // m.debug_print(convs[i+1]); // } // break; // } // } // } // } // } // void remove_layout(module& m, const std::unordered_set& output_layouts) // { // for(auto ins : iterator_for(m)) // { // if(ins->name() != "gpu::precompile_op") // continue; // auto precompile_op = ins->get_operator(); // auto val = precompile_op.to_value(); // if(val["op"].at("name").to() != "layout") // { // // std::cout << val["op"].at("name").to() << std::endl; // continue; // } // m.debug_print(ins); // if(ins->get_shape() != ins->inputs().front()->get_shape()) // { // std::cout << ins->get_shape() << " " << ins->inputs().front()->get_shape() << std::endl; // continue; // } // if(contains(output_layouts, ins)) // continue; // m.replace_instruction(ins, ins->inputs().front()); // } // } void eliminate_layout::apply(module_pass_manager& mpm) const { // std::unordered_set output_layouts = preserve_output_layout(mpm.get_module()); // remove_layout(mpm.get_module(), find_convs(mpm.get_module())); remove_layout(mpm.get_module()); mpm.run_pass(dead_code_elimination{}); } } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx