get_places_op.cc 3.8 KB
Newer Older
Q
init  
qijun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

Y
Yang Yu 已提交
15
#include <thread>
Q
init  
qijun 已提交
16
#include "paddle/framework/op_registry.h"
Y
Yang Yu 已提交
17
#include "paddle/operators/detail/safe_ref.h"
Q
init  
qijun 已提交
18
#include "paddle/platform/place.h"
Q
qijun 已提交
19 20 21
#ifdef PADDLE_WITH_CUDA
#include "paddle/platform/gpu_info.h"
#endif
Q
init  
qijun 已提交
22 23 24 25

namespace paddle {
namespace operators {

Y
Yang Yu 已提交
26 27 28 29 30 31 32 33
static size_t CUDADevCount() {
#ifdef PADDLE_WITH_CUDA
  return platform::GetCUDADeviceCount();
#else
  return 0UL;
#endif
}

Q
init  
qijun 已提交
34 35 36 37 38 39 40
class GetPlacesOp : public framework::OperatorBase {
 public:
  GetPlacesOp(const std::string &type, const framework::VariableNameMap &inputs,
              const framework::VariableNameMap &outputs,
              const framework::AttributeMap &attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}
  void Run(const framework::Scope &scope,
Y
Yang Yu 已提交
41
           const platform::Place &place) const override {
Q
qijun 已提交
42
    std::string device_type = Attr<std::string>("device_type");
Y
Yang Yu 已提交
43 44 45 46 47 48 49 50 51 52
    auto device_count = static_cast<size_t>(Attr<int>("device_count"));
    if (device_count == 0) {
      if (device_type == "CUDA") {
        device_count = CUDADevCount();
      } else if (device_type == "CPU") {
        device_count = std::thread::hardware_concurrency();
      }
    }
    PADDLE_ENFORCE_NE(device_count, 0, "Cannot indicate %s device count",
                      device_type);
Q
init  
qijun 已提交
53 54

    auto out_var_name = Output("Out");
Y
Yang Yu 已提交
55 56 57 58 59
    auto &places =
        *(detail::Ref(scope.FindVar(out_var_name),
                      "Output variable %s cannot be found", out_var_name)
              .GetMutable<platform::PlaceList>());
    places.reserve(device_count);
Q
qijun 已提交
60
    if (device_type == "CUDA") {
Y
Yang Yu 已提交
61 62 63 64 65
      PADDLE_ENFORCE_LE(device_count, CUDADevCount(),
                        "Only %d CUDA devices found, cannot set to %d",
                        CUDADevCount(), device_count);
      for (size_t i = 0; i < device_count; ++i) {
        places.emplace_back(platform::CUDAPlace(i));
Q
init  
qijun 已提交
66
      }
Q
qijun 已提交
67
    } else if (device_type == "CPU") {
Y
Yang Yu 已提交
68
      for (size_t i = 0; i < device_count; ++i) {
Q
init  
qijun 已提交
69 70 71 72 73 74 75 76
        places.emplace_back(platform::CPUPlace());
      }
    }
  }
};

class GetPlacesOpProtoMaker : public framework::OpProtoAndCheckerMaker {
 public:
Q
qijun 已提交
77
  GetPlacesOpProtoMaker(OpProto *proto, OpAttrChecker *op_checker)
Q
init  
qijun 已提交
78 79
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddOutput("Out", "vector of Place");
Y
Yang Yu 已提交
80
    AddAttr<int>("device_count", "device count").SetDefault(1);
Q
qijun 已提交
81
    AddAttr<std::string>("device_type",
Y
Yang Yu 已提交
82
                         R"(device type must be in ["CPU", "CUDA"])")
Q
qijun 已提交
83
        .InEnum({"CPU", "CUDA"});
Q
init  
qijun 已提交
84
    AddComment(R"DOC(
Y
Yang Yu 已提交
85 86
Returns a list of places based on flags. The list will be used for parallel
execution.
Q
init  
qijun 已提交
87 88 89
)DOC");
  }
};
Y
Yang Yu 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

class GetPlacesInferVarType : public framework::VarTypeInference {
 public:
  void operator()(const framework::OpDesc &op_desc,
                  framework::BlockDesc *block) const override {
    for (auto &o_name : op_desc.Output("Out")) {
      block->FindRecursiveOrCreateVar(o_name).SetType(
          framework::proto::VarDesc::PLACE_LIST);
    }
  }
};

class GetPlacesInferShape : public framework::InferShapeBase {
 public:
  void operator()(framework::InferShapeContext *context) const override {
    // Do nothing
  }
};

Q
init  
qijun 已提交
109 110 111 112
}  // namespace operators
}  // namespace paddle
namespace ops = paddle::operators;

Y
Yang Yu 已提交
113 114
REGISTER_OPERATOR(get_places, ops::GetPlacesOp, ops::GetPlacesOpProtoMaker,
                  ops::GetPlacesInferVarType, ops::GetPlacesInferShape);