#ifndef MIGRAPHX_GUARD_RTGLIB_DECOMPOSE_HPP #define MIGRAPHX_GUARD_RTGLIB_DECOMPOSE_HPP #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { struct program; /** * Decompose operators. */ struct decompose { std::string name() const { return "decompose"; } void apply(program& p) const; }; } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx #endif