-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add pass registry * add pass registry macro
- Loading branch information
Showing
6 changed files
with
138 additions
and
11 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
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,23 @@ | ||
// Copyright (c) 2023 PaddlePaddle Authors. 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 "paddle/ir/pass/pass_registry.h" | ||
|
||
namespace ir { | ||
PassRegistry &PassRegistry::Instance() { | ||
static PassRegistry g_pass_info_map; | ||
return g_pass_info_map; | ||
} | ||
|
||
} // namespace ir |
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,104 @@ | ||
// Copyright (c) 2023 PaddlePaddle Authors. 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. | ||
|
||
#pragma once | ||
|
||
#include <functional> | ||
#include <memory> | ||
#include <unordered_map> | ||
|
||
#include "paddle/ir/core/enforce.h" | ||
#include "paddle/ir/core/macros.h" | ||
#include "paddle/ir/pass/pass.h" | ||
|
||
namespace ir { | ||
|
||
class Pass; | ||
|
||
using PassCreator = std::function<std::unique_ptr<Pass>()>; | ||
|
||
class PassRegistry { | ||
public: | ||
static PassRegistry &Instance(); | ||
|
||
bool Has(const std::string &pass_type) const { | ||
return pass_map_.find(pass_type) != pass_map_.end(); | ||
} | ||
|
||
void Insert(const std::string &pass_type, const PassCreator &pass_creator) { | ||
IR_ENFORCE( | ||
Has(pass_type) != true, "Pass %s has been registered.", pass_type); | ||
pass_map_.insert({pass_type, pass_creator}); | ||
} | ||
|
||
std::unique_ptr<Pass> Get(const std::string &pass_type) const { | ||
IR_ENFORCE( | ||
Has(pass_type) == true, "Pass %s has not been registered.", pass_type); | ||
return pass_map_.at(pass_type)(); | ||
} | ||
|
||
private: | ||
PassRegistry() = default; | ||
std::unordered_map<std::string, PassCreator> pass_map_; | ||
|
||
DISABLE_COPY_AND_ASSIGN(PassRegistry); | ||
}; | ||
|
||
template <typename PassType> | ||
class PassRegistrar { | ||
public: | ||
// In our design, various kinds of passes, | ||
// have their corresponding registry and registrar. The action of | ||
// registration is in the constructor of a global registrar variable, which | ||
// are not used in the code that calls package framework, and would | ||
// be removed from the generated binary file by the linker. To avoid such | ||
// removal, we add Touch to all registrar classes and make USE_PASS macros to | ||
// call this method. So, as long as the callee code calls USE_PASS, the global | ||
// registrar variable won't be removed by the linker. | ||
void Touch() {} | ||
explicit PassRegistrar(const char *pass_type) { | ||
PassRegistry::Instance().Insert( | ||
pass_type, []() { return std::make_unique<PassType>(); }); | ||
} | ||
}; | ||
|
||
#define STATIC_ASSERT_PASS_GLOBAL_NAMESPACE(uniq_name, msg) \ | ||
struct __test_global_namespace_##uniq_name##__ {}; \ | ||
static_assert(std::is_same<::__test_global_namespace_##uniq_name##__, \ | ||
__test_global_namespace_##uniq_name##__>::value, \ | ||
msg) | ||
|
||
// Register a new pass that can be applied on the IR. | ||
#define REGISTER_PASS(pass_type, pass_class) \ | ||
STATIC_ASSERT_PASS_GLOBAL_NAMESPACE( \ | ||
__reg_pass__##pass_type, \ | ||
"REGISTER_PASS must be called in global namespace"); \ | ||
static ::ir::PassRegistrar<pass_class> __pass_registrar_##pass_type##__( \ | ||
#pass_type); \ | ||
int TouchPassRegistrar_##pass_type() { \ | ||
__pass_registrar_##pass_type##__.Touch(); \ | ||
return 0; \ | ||
} \ | ||
static ::ir::PassRegistrar<pass_class> &__pass_tmp_registrar_##pass_type##__ \ | ||
UNUSED = __pass_registrar_##pass_type##__ | ||
|
||
#define USE_PASS(pass_type) \ | ||
STATIC_ASSERT_PASS_GLOBAL_NAMESPACE( \ | ||
__use_pass_itself_##pass_type, \ | ||
"USE_PASS must be called in global namespace"); \ | ||
extern int TouchPassRegistrar_##pass_type(); \ | ||
static int use_pass_itself_##pass_type##_ UNUSED = \ | ||
TouchPassRegistrar_##pass_type() | ||
|
||
} // namespace ir |
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