executor.h 1.7 KB
Newer Older
Q
qijun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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

Y
Yang Yang 已提交
17
#include "paddle/framework/op_info.h"
18
#include "paddle/framework/program_desc.h"
Q
qijun 已提交
19 20
#include "paddle/framework/scope.h"
#include "paddle/framework/tensor.h"
D
dzhwinter 已提交
21
#include "paddle/platform/device_context.h"
Q
qijun 已提交
22 23 24 25 26 27

namespace paddle {
namespace framework {

class Executor {
 public:
D
dzhwinter 已提交
28 29
  // TODO(dzhwinter) : Do not rely on this function, it will be removed
  explicit Executor(const platform::DeviceContext& device)
D
dzhwinter 已提交
30
      : Executor(device.GetPlace()) {}
D
dzhwinter 已提交
31

D
dzhwinter 已提交
32
  explicit Executor(const platform::Place& place);
Y
Yang Yang 已提交
33 34 35 36 37 38 39 40

  /* @Brief
   * Runtime evaluation of the given ProgramDesc under certain Scope
   *
   * @param
   *  ProgramDesc
   *  Scope
   */
41
  void Run(const ProgramDesc&, Scope*, int, bool create_local_scope = true,
T
typhoonzero 已提交
42
           bool create_vars = true);
Q
qijun 已提交
43

44 45 46 47 48 49
  void Run(const ProgramDesc& program, Scope* scope,
           std::map<std::string, const LoDTensor*>& feed_targets,
           std::map<std::string, LoDTensor*>& fetch_targets,
           const std::string& feed_holder_name = "feed",
           const std::string& fetch_holder_name = "fetch");

Q
qijun 已提交
50
 private:
D
dzhwinter 已提交
51
  const platform::Place place_;
Q
qijun 已提交
52
};
Q
qijun 已提交
53 54 55

}  // namespace framework
}  // namespace paddle