make_op.cpp 1.25 KB
Newer Older
1
2
3
4
5
6
7
#include <migraphx/make_op.hpp>
#include <migraphx/register_op.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

operation make_op(const std::string& name) { return load_op(name); }
8
9
10

template <class F>
operation make_op_generic(const std::string& name, F for_each)
11
12
13
14
{
    auto op = load_op(name);
    // Merge values
    value w = op.to_value();
15
16
17
18
19
20
    for_each([&](const auto& key, const auto& x) {
        if(not w.contains(key))
            // NOLINTNEXTLINE(performance-inefficient-string-concatenation)
            MIGRAPHX_THROW("No key '" + key + "' in " + name);
        w.at(key) = x;
    });
21
22
23
24
    op.from_value(w);
    return op;
}

25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
operation make_op(const std::string& name,
                  const std::initializer_list<std::pair<std::string, value>>& v)
{
    return make_op_generic(name, [&](auto f) {
        for(auto&& [key, x] : v)
            f(key, x);
    });
}

operation make_op_from_value(const std::string& name, const value& v)
{
    if(not(v.is_object() or (v.empty() and v.is_array())))
        MIGRAPHX_THROW("Value is not an object for make_op: " + name);
    return make_op_generic(name, [&](auto f) {
        for(auto&& x : v)
            f(x.get_key(), x.without_key());
    });
}

44
45
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx