-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Description Created a new `LabelEncoderFusion` pass. This is useful in model that result from automatic conversion tools related to data-science: sometimes the produced model contains consecutive `LabelEncoder`-s. To merge 2 `LabelEncoder`-s the optimizer propagates the outputs of the first encoder through the second one. ### Motivation and Context This enhances the capabilities of the `onnxruntime::optimizer` by fusing consecutive `LabelEncoder` nodes. ### Fusion examples ``` Applying fusion node1: (a,C) (b,B) (c,A) -> Default: _Unused node2: (A,1) (B,2) (C,3) -> Default: -1 fused: (a,3) (b,2) (c,1) -> Default: -1 Applying fusion node1: (a,C) (b,B) (c,A) -> Default: D node2: (A,a) (B,b) (C,c) (D,d) -> Default: default fused: (a,c) (b,b) (c,a) -> Default: d Applying fusion node1: (a,0) (b,1) (c,2) -> Default: -1 node2: (2,a) (1,b) (0,c) -> Default: default fused: (a,c) (b,b) (c,a) -> Default: default Applying fusion node1: (a,3) (b,2) (c,1) -> Default: -1 node2: (1,a) (2,b) (3,c) -> Default: d fused: (a,c) (b,b) (c,a) -> Default: d ``` --------- Co-authored-by: Justin Chu <[email protected]>
- Loading branch information
1 parent
523ef04
commit 9d06e1b
Showing
6 changed files
with
425 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#include <unordered_map> | ||
#include <vector> | ||
#include <string> | ||
|
||
#include "core/optimizer/label_encoder_fusion.h" | ||
#include "core/framework/op_node_proto_helper.h" | ||
#include "core/graph/graph_utils.h" | ||
#include "core/optimizer/utils.h" | ||
|
||
namespace onnxruntime { | ||
|
||
#define KEYS_ATTR_NAME(T) ("keys_" + GetTypename<T>() + "s") | ||
#define VALUES_ATTR_NAME(T) ("values_" + GetTypename<T>() + "s") | ||
#define DEFAULT_VALUE_ATTR_NAME(T) ("default_" + GetTypename<T>()) | ||
|
||
// May be needed somewhere else | ||
// Think about moving into utils | ||
template <typename> | ||
[[maybe_unused]] constexpr bool false_for_T = false; | ||
|
||
template <typename T> | ||
std::string GetTypename() { | ||
if constexpr (std::is_same<T, int64_t>()) { | ||
return "int64"; | ||
} else if constexpr (std::is_same<T, std::string>()) { | ||
return "string"; | ||
} else if constexpr (std::is_same<T, float>()) { | ||
return "float"; | ||
} else { | ||
static_assert(false_for_T<T>, "Unsupported type"); | ||
} | ||
} | ||
|
||
template <typename T1, typename T2, typename T3> | ||
bool LabelEncoderFusion::IsValidForFusion(const Node& node, const Node& next_node) const { | ||
return (node.GetAttributes().find(KEYS_ATTR_NAME(T1)) != node.GetAttributes().end() && | ||
node.GetAttributes().find(VALUES_ATTR_NAME(T2)) != node.GetAttributes().end() && | ||
next_node.GetAttributes().find(KEYS_ATTR_NAME(T2)) != next_node.GetAttributes().end() && | ||
next_node.GetAttributes().find(VALUES_ATTR_NAME(T3)) != next_node.GetAttributes().end()); | ||
} | ||
|
||
/** | ||
Transform that fuses two consecutive LabelEncoder nodes | ||
into one LabelEncoder node. | ||
*/ | ||
bool LabelEncoderFusion::SatisfyCondition(const Graph& graph, const Node& node, const logging::Logger& /*logger*/) const { | ||
if (!graph_utils::IsSupportedOptypeVersionAndDomain( | ||
node, "LabelEncoder", {2, 4}, "ai.onnx.ml") || | ||
node.GetOutputEdgesCount() != 1) { | ||
return false; | ||
} | ||
|
||
const auto& next_node = *node.OutputNodesBegin(); | ||
if (!graph_utils::IsSupportedOptypeVersionAndDomain(next_node, "LabelEncoder", {4}, "ai.onnx.ml") || | ||
// Make sure the two nodes do not span execution providers. | ||
next_node.GetExecutionProviderType() != node.GetExecutionProviderType()) { | ||
return false; | ||
} | ||
|
||
if (graph.NodeProducesGraphOutput(node)) { | ||
return false; | ||
} | ||
|
||
// Is one of the supported operations | ||
return IsValidForFusion<std::string, std::string, std::string>(node, next_node) || | ||
IsValidForFusion<std::string, std::string, int64_t>(node, next_node) || | ||
IsValidForFusion<std::string, int64_t, std::string>(node, next_node) || | ||
IsValidForFusion<std::string, int64_t, int64_t>(node, next_node) || | ||
IsValidForFusion<int64_t, std::string, std::string>(node, next_node) || | ||
IsValidForFusion<int64_t, std::string, int64_t>(node, next_node) || | ||
IsValidForFusion<int64_t, int64_t, std::string>(node, next_node) || | ||
IsValidForFusion<int64_t, int64_t, int64_t>(node, next_node); | ||
} | ||
|
||
/** | ||
Since we need to be polymorphic on the datatype | ||
we will dispatch to this method from the main Apply | ||
*/ | ||
template <typename T1, typename T2, typename T3> | ||
Status LabelEncoderFusion::ApplyHelper( | ||
Graph& graph, | ||
Node& node, | ||
Node& next_node, | ||
RewriteRuleEffect& rule_effect) const { | ||
ProtoHelperNodeContext node_helper_ctx(node); | ||
OpNodeProtoHelper<ProtoHelperNodeContext> node_helper(&node_helper_ctx); | ||
|
||
ProtoHelperNodeContext next_node_helper_ctx(next_node); | ||
OpNodeProtoHelper<ProtoHelperNodeContext> next_node_helper(&next_node_helper_ctx); | ||
|
||
const std::vector<T1> node_keys = | ||
node_helper.GetAttrsOrDefault<T1>(KEYS_ATTR_NAME(T1)); | ||
const std::vector<T2> node_values = | ||
node_helper.GetAttrsOrDefault<T2>(VALUES_ATTR_NAME(T2)); | ||
const T2 node_default = | ||
node_helper.GetAttr<T2>(DEFAULT_VALUE_ATTR_NAME(T2)); | ||
|
||
const std::vector<T2> next_node_keys = | ||
next_node_helper.GetAttrsOrDefault<T2>(KEYS_ATTR_NAME(T2)); | ||
const std::vector<T3> next_node_values = | ||
next_node_helper.GetAttrsOrDefault<T3>(VALUES_ATTR_NAME(T3)); | ||
const T3 next_node_default = | ||
next_node_helper.GetAttr<T3>(DEFAULT_VALUE_ATTR_NAME(T3)); | ||
|
||
const auto getFromMapDefault = [](const auto& mp, const auto key, const auto def) { | ||
return (mp.find(key) == mp.end()) ? def : mp.at(key); | ||
}; | ||
|
||
// Perform value propagation through the second label encoder | ||
std::unordered_map<T2, T3> mapping = {}; | ||
for (size_t i = 0; i < next_node_keys.size(); i++) { | ||
mapping[next_node_keys[i]] = next_node_values[i]; | ||
} | ||
|
||
std::vector<T3> new_node_values = {}; | ||
const auto new_node_default = getFromMapDefault(mapping, node_default, next_node_default); | ||
|
||
for (const T2& node_value : node_values) { | ||
new_node_values.push_back(getFromMapDefault(mapping, node_value, next_node_default)); | ||
} | ||
|
||
// Remove old attributes: | ||
// The keys attribute is correct, we just reroute | ||
// the values | ||
node.ClearAttribute(VALUES_ATTR_NAME(T2)); | ||
node.ClearAttribute(DEFAULT_VALUE_ATTR_NAME(T2)); | ||
|
||
node.AddAttribute(VALUES_ATTR_NAME(T3), new_node_values); | ||
node.AddAttribute(DEFAULT_VALUE_ATTR_NAME(T3), new_node_default); | ||
|
||
graph_utils::FinalizeNodeFusion(graph, node, next_node); | ||
|
||
rule_effect = RewriteRuleEffect::kModifiedRestOfGraph; | ||
|
||
return Status::OK(); | ||
} | ||
|
||
#define FUSE_IF_VALID(T1, T2, T3) \ | ||
if (IsValidForFusion<T1, T2, T3>(node, next_node)) { \ | ||
return ApplyHelper<T1, T2, T3>( \ | ||
graph, node, next_node, rule_effect); \ | ||
} | ||
|
||
Status LabelEncoderFusion::Apply(Graph& graph, Node& node, RewriteRuleEffect& rule_effect, const logging::Logger& /*logger*/) const { | ||
auto& next_node = *graph.GetNode(node.OutputNodesBegin()->Index()); | ||
|
||
FUSE_IF_VALID(std::string, std::string, std::string); | ||
FUSE_IF_VALID(std::string, std::string, int64_t); | ||
FUSE_IF_VALID(std::string, int64_t, std::string); | ||
FUSE_IF_VALID(std::string, int64_t, int64_t); | ||
FUSE_IF_VALID(int64_t, std::string, std::string); | ||
FUSE_IF_VALID(int64_t, std::string, int64_t); | ||
FUSE_IF_VALID(int64_t, int64_t, std::string); | ||
FUSE_IF_VALID(int64_t, int64_t, int64_t); | ||
|
||
return Status::OK(); | ||
} | ||
|
||
} // namespace onnxruntime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#pragma once | ||
|
||
#include "core/optimizer/rewrite_rule.h" | ||
|
||
namespace onnxruntime { | ||
/** | ||
@Class LabelEncoderFusion | ||
Rewrite rule that fuses two LabelEncoder -> LabelEncoder nodes to a single | ||
LabelEncoder node. | ||
*/ | ||
class LabelEncoderFusion : public RewriteRule { | ||
public: | ||
LabelEncoderFusion() noexcept : RewriteRule("LabelEncoderFusion") {} | ||
|
||
std::vector<std::string> TargetOpTypes() const noexcept override { | ||
return {"LabelEncoder"}; | ||
} | ||
|
||
private: | ||
bool SatisfyCondition(const Graph& graph, const Node& node, const logging::Logger& logger) const override; | ||
Status Apply(Graph& graph, Node& node, RewriteRuleEffect& rule_effect, const logging::Logger& logger) const override; | ||
|
||
template <typename T1, typename T2, typename T3> | ||
Status ApplyHelper(Graph& graph, Node& node, Node& next_node, RewriteRuleEffect& rule_effect) const; | ||
|
||
template <typename T1, typename T2, typename T3> | ||
bool IsValidForFusion(const Node& node, const Node& next) const; | ||
}; | ||
|
||
} // namespace onnxruntime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.