multi_devices_graph_check_pass.h 1.1 KB
Newer Older
C
chengduoZH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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

X
Xin Pan 已提交
17
#include "paddle/fluid/framework/details/multi_devices_helper.h"
C
chengduoZH 已提交
18

Y
yi.wu 已提交
19 20
#include <string>

C
chengduoZH 已提交
21 22 23 24
namespace paddle {
namespace framework {
namespace details {

X
Xin Pan 已提交
25
class SSAGraghBuilderWithChecker : public ir::Pass {
X
Xin Pan 已提交
26 27
 protected:
  std::unique_ptr<ir::Graph> ApplyImpl(
X
Xin Pan 已提交
28
      std::unique_ptr<ir::Graph> graph) const override {
X
Xin Pan 已提交
29 30
    PADDLE_ENFORCE(IsValidGraph(graph.get()));
    return graph;
C
chengduoZH 已提交
31 32
  }

X
Xin Pan 已提交
33
  bool IsValidGraph(const ir::Graph* graph) const;
C
chengduoZH 已提交
34 35 36 37 38
};

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