#include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { operation make_op(const std::string& name) { return load_op(name); } operation make_op(const std::string& name, const value& v) { auto op = load_op(name); // Merge values value w = op.to_value(); for(auto&& x : v) { w.at(x.get_key()) = x.without_key(); } op.from_value(w); return op; } } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx