#ifndef MIGRAPH_GUARD_RTGLIB_SIMPLIFY_ALGEBRA_HPP #define MIGRAPH_GUARD_RTGLIB_SIMPLIFY_ALGEBRA_HPP #include #include namespace migraph { inline namespace MIGRAPH_INLINE_NS { struct program; /** * Simplify many algebraic instructions to more efficient versions. */ struct simplify_algebra { std::string name() const { return "simplify_algebra"; } void apply(program& p) const; }; } // namespace MIGRAPH_INLINE_NS } // namespace migraph #endif