mindspore2022/mindspore/ccsrc/utils/cse.cc

321 lines
11 KiB
C++

/**
* This is the C++ adaptation and derivative work of Myia (https://github.com/mila-iqia/myia/).
*
* Copyright 2019-2022 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "include/common/utils/cse.h"
#include <vector>
#include <set>
#include "ir/anf.h"
#include "ir/scalar.h"
#include "utils/hash_map.h"
#include "abstract/abstract_function.h"
#include "utils/flags.h"
#include "include/common/utils/utils.h"
#include "utils/anf_utils.h"
namespace mindspore {
/* namespace to support opt */
namespace opt {
using mindspore::abstract::AbstractBase;
using mindspore::abstract::AbstractFunction;
using mindspore::abstract::AbstractFunctionPtr;
/**
* @brief Check if the given node has recomputed scope.
*
* @param node The node to check.
* @return true if the node has recomputed scope, otherwise false.
*/
bool WithRecomputedScope(const AnfNodePtr &node) {
MS_EXCEPTION_IF_NULL(node);
if (!node->isa<CNode>()) {
return false;
}
auto full_name_with_scope = node->fullname_with_scope();
return full_name_with_scope.find(kAttrRecompute) == 0;
}
/**
* @brief Check if the given nodes are set as recomputed.
*
* @param a The first node.
* @param b The second node.
* @return true if any node is set as recomputed, otherwise false.
*/
bool IsSetRecomputed(const CNodePtr &a, const CNodePtr &b) {
return (WithRecomputedScope(a) && !a->HasAttr(kAttrNeedCseAfterRecompute)) ||
(WithRecomputedScope(b) && !b->HasAttr(kAttrNeedCseAfterRecompute));
}
/**
* @brief Update debug info and dump flag for the given nodes.
*
* @param main The main node.
* @param node The node to check.
*/
void UpdateDebugInfoAndDumpFlag(const AnfNodePtr &main, const AnfNodePtr &node) {
if (main == nullptr || !main->isa<CNode>()) {
return;
}
if (AnfUtils::GetDumpFlag(node) && !AnfUtils::GetDumpFlag(main)) {
AnfUtils::SetDumpFlag(main);
}
auto main_cnode = main->cast<CNodePtr>();
main_cnode->AddFusedDebugInfo(node);
}
/**
* @brief Get abstract representation of a node.
*
* @param node The node to process.
* @param ignore_fg_abs_tracking_id Flag to decide if fg_abs_tracking_id should be ignored.
* @return Abstract representation of the node.
*/
BasePtr AbsOf(const AnfNodePtr &node, bool ignore_fg_abs_tracking_id) {
MS_EXCEPTION_IF_NULL(node);
auto node_abs = node->abstract();
// In testcase: TestOptOpt.CSE, node->abstract() is null.
if (node_abs == nullptr) {
return kAnyValue;
}
if (node_abs->isa<abstract::PrimitiveAbstractClosure>()) {
// Ignore the tracking_id and prim pointer hash.
auto prim_abs = node_abs->cast<abstract::PrimitiveAbstractClosurePtr>();
return prim_abs->prim();
} else if (ignore_fg_abs_tracking_id && node_abs->isa<abstract::FuncGraphAbstractClosure>()) {
// Ignore the tracking_id.
auto new_fg_abs = node_abs->cast<abstract::AbstractFunctionPtr>()->Copy();
new_fg_abs->set_tracking_id(nullptr);
return new_fg_abs;
}
return node_abs;
}
/*
* @brief Build order groups and do replace for one graph.
*
* This function groups all nodes that might have common subexpressions and
* passes them to the DoReplace() function for actual processing. It also
* builds order groups based on the nodes in a single graph.
*
* @param fg The graph to be processed.
* @param manager The manager of the graph.
* @return Returns true if the replace operation was successful, otherwise false.
*/
bool CSE::BuildOrderGroupAndDoReplaceForOneGraph(const FuncGraphPtr &fg, const FuncGraphManagerPtr &manager) const {
MS_EXCEPTION_IF_NULL(fg);
std::vector<std::size_t> order_group;
mindspore::HashMap<std::size_t, std::vector<AnfNodePtr>> groups;
mindspore::HashMap<AnfNodePtr, std::size_t> hashes;
std::vector<AnfNodePtr> toposet = TopoSort(fg->get_return());
for (auto node : toposet) {
MS_EXCEPTION_IF_NULL(node);
if (hashes.find(node) != hashes.end()) {
continue;
}
std::size_t h = 0;
if (node->isa<ValueNode>()) {
ValueNodePtr value_node = node->cast<ValueNodePtr>();
auto value = value_node->value();
MS_EXCEPTION_IF_NULL(value);
h = hash_combine(value->hash(), (AbsOf(value_node, true)->hash()));
} else if (node->isa<CNode>()) {
auto cnode = node->cast<CNodePtr>();
auto &inputs = cnode->inputs();
size_t init = 0;
h = std::accumulate(inputs.begin(), inputs.end(), init, [&hashes](std::size_t hash, const AnfNodePtr &node_in) {
return hash_combine(hash, hashes[node_in]);
});
} else if (node->isa<Parameter>()) {
h = node->hash();
} else {
MS_LOG(ERROR) << "Unknown node type";
}
hashes[node] = h;
if (groups.find(h) == groups.end()) {
std::vector<AnfNodePtr> innervec({node});
groups[h] = innervec;
order_group.emplace_back(h);
} else {
groups[h].push_back(node);
}
}
return DoReplace(manager, order_group, &groups);
}
/*
* @brief Builds order groups and executes replacements for all graphs managed by the given manager.
*
* Iterates through all the graphs available in the manager and performs
* order group building and replacements on each of them. The change status
* is aggregated across all the graphs.
*
* @param manager The manager handling the graphs to be processed.
* @return Returns true if there were any changes, otherwise false.
*/
bool CSE::BuildOrderGroupAndDoReplace(const FuncGraphManagerPtr manager) const {
bool changed = false;
for (FuncGraphPtr fg : manager->func_graphs()) {
changed = BuildOrderGroupAndDoReplaceForOneGraph(fg, manager) || changed;
}
return changed;
}
/*
* @brief Checks if the node has hidden side effects.
*
* This function checks if the given node has any attributes indicating
* that it has hidden side effects.
*
* @param node The node to be checked.
* @return Returns true if the node has hidden side effects, otherwise false.
*/
bool CSE::HasHiddenSideEffect(const AnfNodePtr &node) {
auto prim = GetCNodePrimitive(node);
if (prim == nullptr) {
return false;
}
return prim->HasAttr(GRAPH_FLAG_SIDE_EFFECT_HIDDEN);
}
/*
* @brief Checks whether a node can be replaced by another.
*
* This function performs various checks to determine if the 'main' node can
* be replaced by the 'node'. It takes into account the types and attributes
* of the nodes as well as the values they contain.
*
* @param main The main node that might be replaced.
* @param node The node that is considered as a replacement.
* @return Returns true if 'main' can be replaced by 'node', otherwise false.
*/
bool CSE::CheckReplace(const AnfNodePtr &main, const AnfNodePtr &node) const {
MS_EXCEPTION_IF_NULL(main);
MS_EXCEPTION_IF_NULL(node);
if (main->isa<ValueNode>() && node->isa<ValueNode>()) {
auto main_value = GetValueNode(main);
auto node_value = GetValueNode(node);
return (AbsOf(main, true) == AbsOf(node, true)) && (*main_value == *node_value);
} else if (main->isa<CNode>() && node->isa<CNode>()) {
auto c_main = main->cast<CNodePtr>();
auto c_node = node->cast<CNodePtr>();
// Not do cse for the node set recompute before the recompute pass.
if (IsSetRecomputed(c_main, c_node)) {
return false;
}
const auto &inputs1 = c_main->inputs();
const auto &inputs2 = c_node->inputs();
if (inputs1.size() != inputs2.size()) {
return false;
}
// Check inputs, all inputs should equal.
for (size_t i = 0; i < inputs1.size(); i++) {
auto &input1 = inputs1[i];
auto &input2 = inputs2[i];
MS_EXCEPTION_IF_NULL(input1);
MS_EXCEPTION_IF_NULL(input2);
if ((input1 == input2) || (*input1 == *input2)) {
continue;
}
// Handle the case of two different Tensor, but with the same value.
if (IsValueNode<tensor::Tensor>(input1) && IsValueNode<tensor::Tensor>(input2)) {
auto tensor1 = GetValueNode<tensor::TensorPtr>(input1);
auto tensor2 = GetValueNode<tensor::TensorPtr>(input2);
if (tensor1->ValueEqual(*tensor2)) {
continue;
}
}
return false;
}
// We don't merge primitive cnodes with random effect.
return !HasHiddenSideEffect(c_main);
}
// a parameter node.
return false;
}
/*
* @brief Perform the actual replacement step of CSE.
* It inspects all node groups to seek CSE opportunities.
*
* @param manager The manager of the graph.
* @param order_group The order group of the graph.
* @param groups The groups of the graph.
*
*/
bool CSE::DoReplace(const FuncGraphManagerPtr manager, const std::vector<std::size_t> &order_group,
mindspore::HashMap<std::size_t, std::vector<AnfNodePtr>> *groups) const {
bool changes = false;
std::set<size_t> clear_set;
for (auto &h : order_group) {
std::vector<AnfNodePtr> &group = (*groups)[h];
// If there are more than 2 node in that group, they may be same common expression can be eliminated.
if (group.size() > 1) {
for (size_t k = 0; k < group.size() - 1; k++) {
AnfNodePtr main = group[k];
MS_EXCEPTION_IF_NULL(main);
// When all node in group has been replaced
// or a valuenode node, skip compare in group
if ((k + 1 + clear_set.size() == group.size()) || (k > 0 && main->isa<ValueNode>())) {
break;
}
// skip node has been replaced
if (clear_set.find(k) != clear_set.end()) {
continue;
}
// Compare with rest elements in this group.
for (size_t i = k + 1; i < group.size(); i++) {
auto node = group[i];
MS_EXCEPTION_IF_NULL(node);
if (clear_set.find(i) != clear_set.end()) {
continue;
}
if (main->func_graph() != node->func_graph()) {
continue;
}
if (CheckReplace(node, main)) {
changes = true;
UpdateDebugInfoAndDumpFlag(main, node);
(void)manager->Replace(node, main);
(void)clear_set.insert(i);
}
}
}
clear_set.clear();
}
}
return changes;
}
bool CSE::Cse(const FuncGraphPtr root, const FuncGraphManagerPtr manager) const {
MS_EXCEPTION_IF_NULL(manager);
manager->AddFuncGraph(root);
return BuildOrderGroupAndDoReplace(manager);
}
} // namespace opt
} // namespace mindspore