parse_scatternd.cpp 1.09 KB
Newer Older
turneram's avatar
turneram committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <migraphx/onnx/op_parser.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/make_op.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace onnx {

struct parse_scatternd : op_parser<parse_scatternd>
{
    std::vector<op_desc> operators() const { return {{"ScatterND"}}; }

    instruction_ref parse(const op_desc& /*opd*/,
                          const onnx_parser& /*parser*/,
                          const onnx_parser::node_info& info,
                          std::vector<instruction_ref>& args) const
    {
        if(contains(info.attributes, "reduction"))
        {
            if(info.attributes.at("reduction").s() == "add")
                return info.add_instruction(migraphx::make_op("scatternd_add"), args);
            if(info.attributes.at("reduction").s() == "mul")
                return info.add_instruction(migraphx::make_op("scatternd_mul"), args);
        }

        return info.add_instruction(migraphx::make_op("scatternd_none"), args);
    }
};

} // namespace onnx
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx