#ifndef MIGRAPH_GUARD_RTGLIB_OPTIMIZE_HPP #define MIGRAPH_GUARD_RTGLIB_OPTIMIZE_HPP #include #include namespace migraph { struct program; struct optimize { std::string name() const { return "optimize"; } void apply(program& p) const; }; } // namespace migraph #endif