mkldnn_placement_pass.cc 1.6 KB
Newer Older
W
Wojciech Uss 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include "paddle/fluid/framework/ir/mkldnn/mkldnn_placement_pass.h"
16
#include <string>
W
Wojciech Uss 已提交
17 18 19 20 21 22 23

namespace paddle {
namespace framework {
namespace ir {

std::unique_ptr<ir::Graph> MKLDNNPlacementPass::ApplyImpl(
    std::unique_ptr<ir::Graph> graph) const {
M
minqiyang 已提交
24
  VLOG(3) << "Aplies MKL-DNN placement strategy.";
25 26
  const auto& op_types_list =
      Get<std::unordered_set<std::string>>("mkldnn_enabled_op_types");
W
Wojciech Uss 已提交
27
  for (const Node* n : graph->Nodes()) {
28 29 30 31 32 33 34 35 36
    if (n->IsOp()) {
      auto* op = n->Op();
      if (op->HasAttr("use_mkldnn") || op->HasProtoAttr("use_mkldnn")) {
        if (op_types_list.empty()) {
          op->SetAttr("use_mkldnn", true);
        } else if (std::find(op_types_list.begin(), op_types_list.end(),
                             n->Name()) != op_types_list.end()) {
          op->SetAttr("use_mkldnn", true);
        }
37
      }
W
Wojciech Uss 已提交
38 39 40 41 42 43 44 45 46
    }
  }
  return graph;
}

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

47 48
REGISTER_PASS(mkldnn_placement_pass, paddle::framework::ir::MKLDNNPlacementPass)
    .RequirePassAttr("mkldnn_enabled_op_types");