get_places_op.cc 4.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Q
init  
qijun 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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 <thread>  // NOLINT
Y
Yi Wang 已提交
16 17
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/platform/place.h"
Q
qijun 已提交
18
#ifdef PADDLE_WITH_CUDA
Y
Yi Wang 已提交
19
#include "paddle/fluid/platform/gpu_info.h"
Q
qijun 已提交
20
#endif
Q
init  
qijun 已提交
21 22 23 24

namespace paddle {
namespace operators {

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

Q
init  
qijun 已提交
33 34 35 36 37 38
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) {}
39 40 41 42

 private:
  void RunImpl(const framework::Scope &scope,
               const platform::Place &place) const override {
Y
Yang Yu 已提交
43 44 45 46 47 48
    bool is_gpu;
    if (Attr<std::string>("device_type") == "AUTO") {
      is_gpu = platform::is_gpu_place(place);
    } else {
      is_gpu = Attr<std::string>("device_type") == "CUDA";
    }
Y
Yang Yu 已提交
49 50
    auto device_count = static_cast<size_t>(Attr<int>("device_count"));
    if (device_count == 0) {
Y
Yang Yu 已提交
51 52
      device_count =
          is_gpu ? CUDADevCount() : std::thread::hardware_concurrency();
Y
Yang Yu 已提交
53
    }
54 55 56
    PADDLE_ENFORCE_NE(device_count, 0UL, platform::errors::InvalidArgument(
                                             "Cannot indicate %s device count",
                                             is_gpu ? "GPU" : "CPU"));
Q
init  
qijun 已提交
57 58

    auto out_var_name = Output("Out");
59 60 61
    auto &places = *(GET_DATA_SAFELY(scope.FindVar(out_var_name), "Output",
                                     "Out", "GetPlaces")
                         .GetMutable<platform::PlaceList>());
Y
Yang Yu 已提交
62
    places.reserve(device_count);
Y
Yang Yu 已提交
63
    if (is_gpu) {
Y
Yang Yu 已提交
64
      PADDLE_ENFORCE_LE(device_count, CUDADevCount(),
65 66 67
                        platform::errors::InvalidArgument(
                            "Only %d CUDA devices found, cannot set to %d",
                            CUDADevCount(), device_count));
Y
Yang Yu 已提交
68
      for (size_t i = 0; i < device_count; ++i) {
Y
Yang Yu 已提交
69
        places.emplace_back(platform::CUDAPlace(static_cast<int>(i)));
Q
init  
qijun 已提交
70
      }
Y
Yang Yu 已提交
71
    } else {
Y
Yang Yu 已提交
72
      for (size_t i = 0; i < device_count; ++i) {
Q
init  
qijun 已提交
73 74 75 76 77 78 79 80
        places.emplace_back(platform::CPUPlace());
      }
    }
  }
};

class GetPlacesOpProtoMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
81
  void Make() override {
Q
init  
qijun 已提交
82
    AddOutput("Out", "vector of Place");
Y
Yang Yu 已提交
83 84 85 86
    AddAttr<int>("device_count", "device count").SetDefault(0);
    AddAttr<std::string>("device_type", "device type")
        .InEnum({"CUDA", "CPU", "AUTO"})
        .SetDefault("AUTO");
Q
init  
qijun 已提交
87
    AddComment(R"DOC(
X
Xin Pan 已提交
88
Returns a list of places based on arguments. The list will be used for parallel
Y
Yang Yu 已提交
89
execution.
Q
init  
qijun 已提交
90 91 92
)DOC");
  }
};
Y
Yang Yu 已提交
93 94 95

class GetPlacesInferVarType : public framework::VarTypeInference {
 public:
M
minqiyang 已提交
96 97 98
  void operator()(framework::InferVarTypeContext *ctx) const override {
    for (auto &o_name : ctx->Output("Out")) {
      ctx->SetType(o_name, framework::proto::VarType::PLACE_LIST);
Y
Yang Yu 已提交
99 100 101 102 103 104 105 106 107 108 109
    }
  }
};

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

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

H
hong 已提交
114 115 116 117 118
REGISTER_OPERATOR(
    get_places, ops::GetPlacesOp, ops::GetPlacesOpProtoMaker,
    ops::GetPlacesInferVarType, ops::GetPlacesInferShape,
    paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
    paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>);