62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "implicit_broadcast_elimination.hpp"
|
|
|
|
#include "ngraph/builder/autobroadcast.hpp"
|
|
#include "ngraph/graph_util.hpp"
|
|
#include "ngraph/op/util/binary_elementwise_arithmetic.hpp"
|
|
#include "ngraph/op/util/binary_elementwise_comparison.hpp"
|
|
#include "ngraph/op/util/binary_elementwise_logical.hpp"
|
|
#include "ngraph/op/util/op_types.hpp"
|
|
|
|
NGRAPH_SUPPRESS_DEPRECATED_START
|
|
|
|
using namespace std;
|
|
using namespace ngraph;
|
|
|
|
bool ngraph::pass::ImplicitBroadcastElimination::run_on_node(std::shared_ptr<Node> node)
|
|
{
|
|
if (ngraph::op::supports_auto_broadcast(node))
|
|
{
|
|
if (node->get_autob().m_type != op::AutoBroadcastType::NONE)
|
|
{
|
|
auto new_args = pass::explicit_broadcast(node);
|
|
for (size_t i = 0; i < new_args.size(); i++)
|
|
{
|
|
node->input(i).replace_source_output(new_args[i]->output(0));
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
NodeVector ngraph::pass::explicit_broadcast(std::shared_ptr<Node>& node)
|
|
{
|
|
NodeVector rc;
|
|
if (ngraph::op::supports_auto_broadcast(node))
|
|
{
|
|
auto autob = node->get_autob();
|
|
if (autob.m_type == op::AutoBroadcastType::NONE)
|
|
{
|
|
for (auto& val : node->input_values())
|
|
rc.emplace_back(val.get_node_shared_ptr());
|
|
}
|
|
else if (autob.m_type == op::AutoBroadcastType::NUMPY)
|
|
{
|
|
rc = as_node_vector(builder::numpy_broadcast_outputs(node->input_values()));
|
|
}
|
|
else if (autob.m_type == op::AutoBroadcastType::PDPD)
|
|
{
|
|
rc = as_node_vector(builder::pdpd_broadcast(node->input_values(), autob.m_axis));
|
|
}
|
|
else
|
|
{
|
|
throw ngraph_error("Unsupported implicit broadcast type");
|
|
}
|
|
}
|
|
return rc;
|
|
}
|