fuse_pass_base.cc 2.4 KB
Newer Older
W
Wojciech Uss 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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"
16
#include <unordered_map>
W
Wojciech Uss 已提交
17 18 19 20 21 22 23 24 25 26 27

namespace paddle {
namespace framework {
namespace ir {

void FusePassBase::Init(const std::string& repr, Graph* graph) const {
  repr_ = repr;
  graph_ = graph;
}

Scope* FusePassBase::param_scope() const {
28 29 30
  PADDLE_ENFORCE_EQ(graph_->Has(kParamScopeAttr), true,
                    platform::errors::InvalidArgument(
                        "Graph must have kParamScopeAttr attribute."));
31 32
  auto& scope = graph_->Get<framework::Scope>(kParamScopeAttr);
  return &scope;
W
Wojciech Uss 已提交
33 34 35
}

void FusePassBase::AddStatis(int count_of_fused) const {
36 37 38 39 40
  PADDLE_ENFORCE_NOT_NULL(
      graph_, platform::errors::InvalidArgument("Graph cannot be nullptr."));
  PADDLE_ENFORCE_EQ(repr_.empty(), false,
                    platform::errors::InvalidArgument(
                        "Fuse pass must be initialized with a name."));
W
Wojciech Uss 已提交
41 42 43 44 45 46 47 48 49 50 51 52
  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;
}

FuseOptions FusePassBase::FindFuseOption(const Node& node1,
                                         const Node& node2) const {
#ifdef PADDLE_WITH_MKLDNN
  bool node1_mkldnn = node1.Op()->HasAttr("use_mkldnn") &&
53
                      BOOST_GET_CONST(bool, node1.Op()->GetAttr("use_mkldnn"));
W
Wojciech Uss 已提交
54
  bool node2_mkldnn = node2.Op()->HasAttr("use_mkldnn") &&
55
                      BOOST_GET_CONST(bool, node2.Op()->GetAttr("use_mkldnn"));
W
Wojciech Uss 已提交
56 57 58 59 60 61 62 63 64
  if (node1_mkldnn && node2_mkldnn)
    return FUSE_MKLDNN;
  else if (!node1_mkldnn && !node2_mkldnn)
    return FUSE_NATIVE;
  else
    return DO_NOT_FUSE;
#else
  return FUSE_NATIVE;
#endif
65
}
W
Wojciech Uss 已提交
66 67 68 69

}  // namespace ir
}  // namespace framework
}  // namespace paddle