device_context.h 5.5 KB
Newer Older
Q
QI JUN 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* 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

L
liaogang 已提交
14
#include "paddle/platform/enforce.h"
L
liaogang 已提交
15 16
#include "paddle/platform/place.h"

Q
QI JUN 已提交
17 18 19 20
#ifndef PADDLE_ONLY_CPU
#include "paddle/platform/dynload/cublas.h"
#include "paddle/platform/dynload/cudnn.h"
#include "paddle/platform/dynload/curand.h"
L
liaogang 已提交
21
#include "paddle/platform/gpu_info.h"
Q
QI JUN 已提交
22 23
#define EIGEN_USE_GPU
#endif
D
dongzhihong 已提交
24
#include <chrono>
Q
qijun 已提交
25
#include <memory>
Q
qijun 已提交
26 27
#include "paddle/platform/place.h"
#include "unsupported/Eigen/CXX11/Tensor"
Q
QI JUN 已提交
28 29 30 31 32 33 34

namespace paddle {
namespace platform {

class DeviceContext {
 public:
  virtual ~DeviceContext() {}
Q
qijun 已提交
35
  virtual Place GetPlace() const = 0;
Q
QI JUN 已提交
36

Q
qijun 已提交
37
  template <typename DeviceType>
Q
qijun 已提交
38
  DeviceType* get_eigen_device() const;
Q
QI JUN 已提交
39 40
};

Q
qijun 已提交
41 42
class CPUDeviceContext : public DeviceContext {
 public:
D
dongzhihong 已提交
43
  typedef std::mt19937 random_generator_type;
D
dongzhihong 已提交
44 45 46 47
  CPUDeviceContext() {
    random_seed_ = std::chrono::system_clock::now().time_since_epoch().count();
    eigen_device_.reset(new Eigen::DefaultDevice());
  }
Q
qijun 已提交
48 49

  Eigen::DefaultDevice* eigen_device() const { return eigen_device_.get(); }
Q
qijun 已提交
50

Y
Yu Yang 已提交
51
  Place GetPlace() const override {
Q
qijun 已提交
52
    Place retv = CPUPlace();
Y
Yu Yang 已提交
53 54 55
    return retv;
  }

D
dongzhihong 已提交
56
  random_generator_type& RandGenerator() {
D
dongzhihong 已提交
57 58 59 60 61 62
    if (!rand_generator_) {
      rand_generator_.reset(new random_generator_type(random_seed_));
    }
    return *rand_generator_.get();
  }

Q
qijun 已提交
63
 private:
D
dongzhihong 已提交
64
  unsigned random_seed_;
D
dongzhihong 已提交
65
  std::unique_ptr<random_generator_type> rand_generator_;
Q
qijun 已提交
66
  std::unique_ptr<Eigen::DefaultDevice> eigen_device_;
Q
QI JUN 已提交
67 68 69
};

#ifndef PADDLE_ONLY_CPU
D
dongzhihong 已提交
70

Q
QI JUN 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
class GPUPlaceGuard {
 public:
  explicit GPUPlaceGuard(GPUPlace new_place) : previous_(GetCurrentDeviceId()) {
    if (previous_ != new_place) {
      paddle::platform::SetDeviceId(new_place.device);
    }
  }

  ~GPUPlaceGuard() { paddle::platform::SetDeviceId(previous_.device); }

 private:
  GPUPlace previous_;
};

class CUDADeviceContext : public DeviceContext {
 public:
D
dongzhihong 已提交
87 88 89
  CUDADeviceContext() {
    random_seed_ = std::chrono::system_clock::now().time_since_epoch().count();
  }
Q
QI JUN 已提交
90 91
  explicit CUDADeviceContext(const GPUPlace gpu_place) : gpu_place_(gpu_place) {
    GPUPlaceGuard guard(gpu_place_);
L
liaogang 已提交
92
    PADDLE_ENFORCE(cudaStreamCreate(&stream_), "cudaStreamCreate failed");
Q
qijun 已提交
93 94
    eigen_stream_.reset(new Eigen::CudaStreamDevice(&stream_));
    eigen_device_.reset(new Eigen::GpuDevice(eigen_stream_.get()));
Q
qijun 已提交
95 96 97 98 99
  }

  Place GetPlace() const override {
    Place retv = GPUPlace();
    return retv;
Q
QI JUN 已提交
100 101 102
  }

  void Wait() {
L
liaogang 已提交
103 104
    PADDLE_ENFORCE(cudaStreamSynchronize(stream_),
                   "cudaStreamSynchronize failed");
Q
QI JUN 已提交
105 106
  }

D
dongzhihong 已提交
107
  curandGenerator_t RandGenerator() {
D
dongzhihong 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
    if (!rand_generator_) {
      GPUPlaceGuard guard(gpu_place_);
      PADDLE_ENFORCE(paddle::platform::dynload::curandCreateGenerator(
                         &rand_generator_, CURAND_RNG_PSEUDO_DEFAULT),
                     "curandCreateGenerator failed");
      PADDLE_ENFORCE(
          paddle::platform::dynload::curandSetPseudoRandomGeneratorSeed(
              rand_generator_, random_seed_),
          "curandSetPseudoRandomGeneratorSeed failed");
      PADDLE_ENFORCE(
          paddle::platform::dynload::curandSetStream(rand_generator_, stream_),
          "curandSetStream failed");
    }
    return rand_generator_;
  }

Q
QI JUN 已提交
124 125
  cudaStream_t stream() { return stream_; }

Q
qijun 已提交
126
  Eigen::GpuDevice* eigen_device() const { return eigen_device_.get(); }
Q
QI JUN 已提交
127 128 129 130

  cublasHandle_t cublas_handle() {
    if (!blas_handle_) {
      GPUPlaceGuard guard(gpu_place_);
L
liaogang 已提交
131
      PADDLE_ENFORCE(paddle::platform::dynload::cublasCreate(&blas_handle_),
Q
QI JUN 已提交
132
                     "cublasCreate failed");
L
liaogang 已提交
133 134 135
      PADDLE_ENFORCE(
          paddle::platform::dynload::cublasSetStream(blas_handle_, stream_),
          "cublasSetStream failed");
Q
QI JUN 已提交
136 137 138 139 140 141 142
    }
    return blas_handle_;
  }

  cudnnHandle_t cudnn_handle() {
    if (!dnn_handle_) {
      GPUPlaceGuard guard(gpu_place_);
L
liaogang 已提交
143
      PADDLE_ENFORCE(paddle::platform::dynload::cudnnCreate(&dnn_handle_),
Q
QI JUN 已提交
144
                     "cudnnCreate failed");
L
liaogang 已提交
145 146 147
      PADDLE_ENFORCE(
          paddle::platform::dynload::cudnnSetStream(dnn_handle_, stream_),
          "cudnnSetStream failed");
Q
QI JUN 已提交
148 149 150 151 152 153 154
    }
    return dnn_handle_;
  }

  ~CUDADeviceContext() {
    Wait();
    if (blas_handle_) {
L
liaogang 已提交
155
      PADDLE_ENFORCE(paddle::platform::dynload::cublasDestroy(blas_handle_),
Q
QI JUN 已提交
156 157 158 159
                     "cublasDestroy failed");
    }

    if (dnn_handle_) {
L
liaogang 已提交
160
      PADDLE_ENFORCE(paddle::platform::dynload::cudnnDestroy(dnn_handle_),
Q
QI JUN 已提交
161 162 163 164
                     "cudnnDestroy failed");
    }

    if (rand_generator_) {
L
liaogang 已提交
165 166 167
      PADDLE_ENFORCE(
          paddle::platform::dynload::curandDestroyGenerator(rand_generator_),
          "curandDestroyGenerator failed");
Q
QI JUN 已提交
168
    }
Q
qijun 已提交
169 170
    eigen_stream_.reset();
    eigen_device_.reset();
L
liaogang 已提交
171
    PADDLE_ENFORCE(cudaStreamDestroy(stream_), "cudaStreamDestroy failed");
Q
QI JUN 已提交
172 173 174 175 176 177
  }

 private:
  GPUPlace gpu_place_;
  cudaStream_t stream_;

Q
qijun 已提交
178 179
  std::unique_ptr<Eigen::CudaStreamDevice> eigen_stream_;
  std::unique_ptr<Eigen::GpuDevice> eigen_device_;
Q
QI JUN 已提交
180 181 182 183 184

  cublasHandle_t blas_handle_{nullptr};

  cudnnHandle_t dnn_handle_{nullptr};

D
dongzhihong 已提交
185
  unsigned random_seed_;
Q
QI JUN 已提交
186 187
  curandGenerator_t rand_generator_{nullptr};
};
Q
qijun 已提交
188

Q
QI JUN 已提交
189
#endif
Q
qijun 已提交
190

Q
QI JUN 已提交
191 192
}  // namespace platform
}  // namespace paddle