-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[luci/pass] Introduce FuseHorizontalFCLayers pass (#11787)
This commit introduces FuseHorizontalFCLayers pass. ONE-DCO-1.0-Signed-off-by: Artem Balyshev <[email protected]>
- Loading branch information
1 parent
dfa99b3
commit b5d7ed0
Showing
5 changed files
with
443 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
34 changes: 34 additions & 0 deletions
34
compiler/luci/pass/include/luci/Pass/FuseHorizontalFullyConnectedPass.h
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,34 @@ | ||
/* | ||
* Copyright (c) 2023 Samsung Electronics Co., Ltd. All Rights Reserved | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef __LUCI_FUSE_HORIZONTAL_FULLY_CONNECTED_PASS_H__ | ||
#define __LUCI_FUSE_HORIZONTAL_FULLY_CONNECTED_PASS_H__ | ||
|
||
#include <logo/Pass.h> | ||
|
||
namespace luci | ||
{ | ||
|
||
struct FuseHorizontalFullyConnectedPass final : public logo::Pass | ||
{ | ||
const char *name(void) const final { return "luci::FuseHorizontalFullyConnectedPass"; } | ||
|
||
bool run(loco::Graph *g) final; | ||
}; | ||
|
||
} // namespace luci | ||
|
||
#endif // __LUCI_FUSE_HORIZONTAL_FULLY_CONNECTED_PASS_H__ |
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
218 changes: 218 additions & 0 deletions
218
compiler/luci/pass/src/FuseHorizontalFullyConnectedPass.cpp
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,218 @@ | ||
/* | ||
* Copyright (c) 2023 Samsung Electronics Co., Ltd. All Rights Reserved | ||
* | ||
* 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 "luci/Pass/FuseHorizontalFullyConnectedPass.h" | ||
|
||
#include <luci/IR/CircleNodes.h> | ||
#include <luci/Service/Nodes/CircleConst.h> | ||
#include <luci/Profile/CircleNodeOrigin.h> | ||
|
||
namespace luci | ||
{ | ||
|
||
namespace | ||
{ | ||
|
||
bool check_type_and_shape_equality(const CircleNode *left, const CircleNode *right) | ||
{ | ||
if (left->dtype() != right->dtype()) | ||
return false; | ||
|
||
if (left->rank() != right->rank()) | ||
return false; | ||
|
||
for (uint32_t i = 0; i < left->rank(); ++i) | ||
{ | ||
if (left->dim(i).value() != right->dim(i).value()) | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
// Add right const to left const (left is updated) | ||
template <loco::DataType D> void sum_const_values(CircleConst *left, const CircleConst *right) | ||
{ | ||
assert(check_type_and_shape_equality(left, right)); // FIX CALLER UNLESS | ||
const auto size = left->template size<D>(); | ||
|
||
for (uint32_t i = 0; i < size; ++i) | ||
{ | ||
left->template at<D>(i) += right->template at<D>(i); | ||
} | ||
} | ||
|
||
bool fuse_horizontal_fc_nodes(CircleAdd *add_node) | ||
{ | ||
// Let's check left and right FC nodes | ||
auto left_fc_node = dynamic_cast<CircleFullyConnected *>(add_node->x()); | ||
auto right_fc_node = dynamic_cast<CircleFullyConnected *>(add_node->y()); | ||
|
||
if (left_fc_node == nullptr or right_fc_node == nullptr) | ||
return false; | ||
|
||
if (not check_type_and_shape_equality(left_fc_node, right_fc_node)) | ||
return false; | ||
|
||
if (left_fc_node->fusedActivationFunction() != FusedActFunc::NONE) | ||
return false; | ||
|
||
if (right_fc_node->fusedActivationFunction() != FusedActFunc::NONE) | ||
return false; | ||
|
||
// Let's check that FC nodes have the same input | ||
if (left_fc_node->input() != right_fc_node->input()) | ||
return false; | ||
|
||
// Lets check left and right FC weights: type and shape | ||
auto left_fc_weights = dynamic_cast<CircleConst *>(left_fc_node->weights()); | ||
auto right_fc_weights = dynamic_cast<CircleConst *>(right_fc_node->weights()); | ||
|
||
if (left_fc_weights == nullptr or right_fc_weights == nullptr) | ||
return false; | ||
|
||
if (not check_type_and_shape_equality(left_fc_weights, right_fc_weights)) | ||
return false; | ||
|
||
// Lets check left and right FC bias: type and shape | ||
auto left_fc_bias = dynamic_cast<CircleConst *>(left_fc_node->bias()); | ||
auto right_fc_bias = dynamic_cast<CircleConst *>(right_fc_node->bias()); | ||
|
||
// Support only if both biases are const, or both are non-const | ||
// TODO Support the case that one FC has a const bias and another FC has no bias. | ||
if ((left_fc_bias == nullptr and right_fc_bias != nullptr) or | ||
(left_fc_bias != nullptr and right_fc_bias == nullptr)) | ||
{ | ||
return false; | ||
} | ||
|
||
// Both left/right bias are const. Check dtype/shape. | ||
if (left_fc_bias != nullptr and not check_type_and_shape_equality(left_fc_bias, right_fc_bias)) | ||
return false; | ||
|
||
// Both left/right bias are non-const. Check left/right fc has no bias. | ||
if (left_fc_bias == nullptr) | ||
{ | ||
auto left_no_bias = dynamic_cast<CircleOutputExclude *>(left_fc_node->bias()); | ||
auto right_no_bias = dynamic_cast<CircleOutputExclude *>(right_fc_node->bias()); | ||
if (not left_no_bias or not right_no_bias) | ||
return false; | ||
} | ||
|
||
if (left_fc_weights->dtype() != loco::DataType::FLOAT32) | ||
return false; | ||
|
||
if (left_fc_bias != nullptr) | ||
{ | ||
if (left_fc_bias->dtype() != loco::DataType::FLOAT32) | ||
return false; | ||
} | ||
|
||
// Lets create fused FC weights and bias | ||
auto fused_fc_weights = clone(left_fc_weights); | ||
add_origin(fused_fc_weights, | ||
composite_origin({get_origin(left_fc_weights), get_origin(right_fc_weights)})); | ||
|
||
CircleConst *fused_fc_bias = nullptr; | ||
if (left_fc_bias != nullptr) | ||
{ | ||
fused_fc_bias = clone(left_fc_bias); | ||
add_origin(fused_fc_bias, | ||
composite_origin({get_origin(left_fc_bias), get_origin(right_fc_bias)})); | ||
} | ||
|
||
assert(fused_fc_weights->dtype() == loco::DataType::FLOAT32); | ||
sum_const_values<loco::DataType::FLOAT32>(fused_fc_weights, right_fc_weights); | ||
|
||
if (fused_fc_bias != nullptr) | ||
{ | ||
assert(fused_fc_bias->dtype() == loco::DataType::FLOAT32); | ||
sum_const_values<loco::DataType::FLOAT32>(fused_fc_bias, right_fc_bias); | ||
} | ||
|
||
// Create fused FC node | ||
auto graph = left_fc_node->graph(); | ||
auto fused_fc_node = graph->nodes()->create<CircleFullyConnected>(); | ||
fused_fc_node->input(left_fc_node->input()); | ||
fused_fc_node->weights(fused_fc_weights); | ||
if (fused_fc_bias) | ||
{ | ||
fused_fc_node->bias(fused_fc_bias); | ||
} | ||
else | ||
{ | ||
assert(nullptr != dynamic_cast<CircleOutputExclude *>(left_fc_node->bias())); // FIX ME UNLESS | ||
fused_fc_node->bias(left_fc_node->bias()); | ||
} | ||
|
||
fused_fc_node->fusedActivationFunction(add_node->fusedActivationFunction()); | ||
fused_fc_node->name(left_fc_node->name() + "_" + right_fc_node->name() + "_fused"); | ||
|
||
add_origin(fused_fc_node, composite_origin({get_origin(left_fc_node), get_origin(right_fc_node), | ||
get_origin(add_node)})); | ||
|
||
replace(add_node).with(fused_fc_node); | ||
|
||
return true; | ||
} | ||
|
||
} // namespace | ||
|
||
/** | ||
* @brief Class to fuse horizontal FC layers | ||
* | ||
* Before | ||
* | ||
* +---- [In] ----+ | ||
* | | | ||
* V V | ||
* fc1 (w1, b1) fc2 (w2, b2) | ||
* | | | ||
* | | | ||
* +---> add <----+ | ||
* | | ||
* V | ||
* [Out] | ||
* | ||
* After | ||
* | ||
* [In] | ||
* | | ||
* V | ||
* fc3 (w1+w2, b1+b2) | ||
* | | ||
* V | ||
* [Out] | ||
* | ||
* Shape/dtype of fc1, fc2, and fc3 should be the same. | ||
*/ | ||
bool FuseHorizontalFullyConnectedPass::run(loco::Graph *g) | ||
{ | ||
bool changed = false; | ||
for (auto node : loco::active_nodes(loco::output_nodes(g))) | ||
{ | ||
auto add_node = dynamic_cast<CircleAdd *>(node); | ||
if (not add_node) | ||
continue; | ||
|
||
if (fuse_horizontal_fc_nodes(add_node)) | ||
changed = true; | ||
} | ||
|
||
return changed; | ||
} | ||
|
||
} // namespace luci |
Oops, something went wrong.