83 lines
2.8 KiB
C++
83 lines
2.8 KiB
C++
// Copyright (c) 2018 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/fluid/framework/ir/fuse_pass_base.h"
|
|
|
|
#include "paddle/fluid/platform/enforce.h"
|
|
|
|
namespace paddle::framework {
|
|
class Scope;
|
|
} // namespace paddle::framework
|
|
|
|
namespace paddle::framework::ir {
|
|
|
|
class Graph;
|
|
|
|
void FusePassBase::Init(const std::string& repr, Graph* graph) const {
|
|
repr_ = repr;
|
|
graph_ = graph;
|
|
}
|
|
|
|
Scope* FusePassBase::param_scope() const {
|
|
PADDLE_ENFORCE_EQ(graph_->Has(kParamScopeAttr),
|
|
true,
|
|
common::errors::InvalidArgument(
|
|
"Graph must have kParamScopeAttr attribute."));
|
|
auto& scope = graph_->Get<framework::Scope>(kParamScopeAttr);
|
|
return &scope;
|
|
}
|
|
|
|
void FusePassBase::AddStatis(int count_of_fused) const {
|
|
PADDLE_ENFORCE_NOT_NULL(
|
|
graph_, common::errors::InvalidArgument("Graph cannot be nullptr."));
|
|
PADDLE_ENFORCE_EQ(repr_.empty(),
|
|
false,
|
|
common::errors::InvalidArgument(
|
|
"Fuse pass must be initialized with a name."));
|
|
if (!graph_->Has(kFuseStatisAttr)) {
|
|
graph_->Set(kFuseStatisAttr, new std::unordered_map<std::string, int>);
|
|
}
|
|
auto& info =
|
|
graph_->Get<std::unordered_map<std::string, int>>(kFuseStatisAttr);
|
|
info[repr_] = count_of_fused;
|
|
if (count_of_fused > 0)
|
|
LOG(INFO) << "--- detected " << count_of_fused << " subgraphs";
|
|
}
|
|
|
|
FuseOptions FusePassBase::FindFuseOption(const Node& node1,
|
|
const Node& node2) const {
|
|
#ifdef PADDLE_WITH_DNNL
|
|
bool node1_onednn =
|
|
(node1.Op()->HasAttr("use_mkldnn") &&
|
|
PADDLE_GET_CONST(bool, node1.Op()->GetAttr("use_mkldnn"))) ||
|
|
(node1.Op()->HasAttr("use_onednn") &&
|
|
PADDLE_GET_CONST(bool, node1.Op()->GetAttr("use_onednn")));
|
|
bool node2_onednn =
|
|
(node2.Op()->HasAttr("use_mkldnn") &&
|
|
PADDLE_GET_CONST(bool, node2.Op()->GetAttr("use_mkldnn"))) ||
|
|
(node2.Op()->HasAttr("use_onednn") &&
|
|
PADDLE_GET_CONST(bool, node2.Op()->GetAttr("use_onednn")));
|
|
if (node1_onednn && node2_onednn)
|
|
return FUSE_ONEDNN;
|
|
else if (!node1_onednn && !node2_onednn)
|
|
return FUSE_NATIVE;
|
|
else
|
|
return DO_NOT_FUSE;
|
|
#else
|
|
return FUSE_NATIVE;
|
|
#endif
|
|
}
|
|
|
|
} // namespace paddle::framework::ir
|