#ifndef MIGRAPH_GUARD_MIGRAPHLIB_CPU_TARGET_HPP #define MIGRAPH_GUARD_MIGRAPHLIB_CPU_TARGET_HPP #include #include namespace migraph { namespace cpu { struct cpu_target { std::string name() const; std::vector get_passes(migraph::context& ctx) const; migraph::context get_context() const { return context{}; } }; } // namespace cpu } // namespace migraph #endif