#include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { template void raw_data_to_value(value& v, const RawData& rd) { value result; result["shape"] = migraphx::to_value(rd.get_shape()); rd.visit([&](auto x) { result["data"] = std::vector(x.begin(), x.end()); }); v = result; } void migraphx_to_value(value& v, const literal& l) { raw_data_to_value(v, l); } void migraphx_from_value(const value& v, literal& l) { auto s = migraphx::from_value(v.at("shape")); s.visit_type([&](auto as) { using type = typename decltype(as)::type; l = literal{s, v.at("data").to_vector()}; }); } void migraphx_to_value(value& v, const argument& a) { raw_data_to_value(v, a); } void migraphx_from_value(const value& v, argument& a) { literal l = migraphx::from_value(v); a = l.get_argument(); } } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx