#include #include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { namespace gpu { void sync_device::apply(module& p) const { auto last = std::prev(p.end()); if(last->name() == "@return") { auto inputs = last->inputs(); if(std::any_of(inputs.begin(), inputs.end(), [](auto i) { return (i->name() == "hip::copy_from_gpu"); })) { auto sync_in = p.insert_instruction(last, hip_sync_device{}, inputs); if(not inputs.empty()) { p.replace_instruction(inputs.front(), sync_in); } } } } } // namespace gpu } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx