ssa_graph_printer.h 2.4 KB
Newer Older
Y
yuyang18 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

#pragma once

#include <iosfwd>
Y
yi.wu 已提交
18
#include <string>
Y
yuyang18 已提交
19 20 21 22 23
#include "paddle/fluid/framework/details/ssa_graph_builder.h"

namespace paddle {
namespace framework {
namespace details {
X
Xin Pan 已提交
24

Y
yuyang18 已提交
25 26 27
class SSAGraphPrinter {
 public:
  virtual ~SSAGraphPrinter() {}
X
Xin Pan 已提交
28
  virtual void Print(const ir::Graph& graph, std::ostream& sout) const = 0;
Y
yuyang18 已提交
29 30 31 32
};

class GraphvizSSAGraphPrinter : public SSAGraphPrinter {
 public:
X
Xin Pan 已提交
33
  void Print(const ir::Graph& graph, std::ostream& sout) const override;
Y
yuyang18 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
};

class SSAGraghBuilderWithPrinter : public SSAGraphBuilder {
 public:
  SSAGraghBuilderWithPrinter(std::ostream& sout,
                             std::unique_ptr<SSAGraphPrinter>&& printer,
                             std::unique_ptr<SSAGraphBuilder>&& builder)
      : printer_(std::move(printer)),
        builder_(std::move(builder)),
        stream_ref_(sout) {}

  SSAGraghBuilderWithPrinter(std::unique_ptr<std::ostream>&& sout,
                             std::unique_ptr<SSAGraphPrinter>&& printer,
                             std::unique_ptr<SSAGraphBuilder>&& builder)
      : printer_(std::move(printer)),
        builder_(std::move(builder)),
        stream_ptr_(std::move(sout)),
        stream_ref_(*stream_ptr_) {}

X
Xin Pan 已提交
53 54
  std::unique_ptr<ir::Graph> Apply(
      std::unique_ptr<ir::Graph> graph) const override {
55
    auto new_graph = builder_->Apply(std::move(graph));
X
Xin Pan 已提交
56
    printer_->Print(*new_graph, stream_ref_);
Q
qiaolongfei 已提交
57
    return new_graph;
Y
yuyang18 已提交
58 59
  }

Y
yi.wu 已提交
60 61 62 63
  int GetVarDeviceID(const std::string& var_name) const override {
    return builder_->GetVarDeviceID(var_name);
  }

Y
yuyang18 已提交
64 65 66 67 68 69 70 71 72 73
 private:
  std::unique_ptr<SSAGraphPrinter> printer_;
  std::unique_ptr<SSAGraphBuilder> builder_;
  std::unique_ptr<std::ostream> stream_ptr_;
  std::ostream& stream_ref_;
};

}  // namespace details
}  // namespace framework
}  // namespace paddle