device_context.h 3.0 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"

17
#ifdef PADDLE_WITH_CUDA
Q
QI JUN 已提交
18 19
#include "paddle/platform/dynload/cublas.h"
#include "paddle/platform/dynload/cudnn.h"
L
liaogang 已提交
20
#include "paddle/platform/gpu_info.h"
Q
QI JUN 已提交
21 22
#define EIGEN_USE_GPU
#endif
Q
qijun 已提交
23
#include <memory>
Q
qijun 已提交
24 25
#include "paddle/platform/place.h"
#include "unsupported/Eigen/CXX11/Tensor"
Q
QI JUN 已提交
26 27 28 29

namespace paddle {
namespace platform {

30 31 32 33 34 35 36 37
template <typename T>
struct EigenDeviceConverter;

template <>
struct EigenDeviceConverter<platform::CPUPlace> {
  using EigenDeviceType = Eigen::DefaultDevice;
};

Q
QI JUN 已提交
38 39 40
class DeviceContext {
 public:
  virtual ~DeviceContext() {}
L
liaogang 已提交
41
  virtual Place GetPlace() const = 0;
Q
QI JUN 已提交
42

43 44 45 46
  template <typename PlaceType,
            typename DeviceType =
                typename EigenDeviceConverter<PlaceType>::EigenDeviceType>
  DeviceType* GetEigenDevice() const;
47 48

  virtual void Wait() const {}
49 50

  virtual void Finish() const {}
Q
QI JUN 已提交
51 52
};

Q
qijun 已提交
53 54
class CPUDeviceContext : public DeviceContext {
 public:
55
  CPUDeviceContext();
Q
qijun 已提交
56
  explicit CPUDeviceContext(CPUPlace place);
Q
qijun 已提交
57

58
  Eigen::DefaultDevice* eigen_device() const;
Q
qijun 已提交
59

L
liaogang 已提交
60
  Place GetPlace() const override;
Y
Yu Yang 已提交
61

Q
qijun 已提交
62
 private:
Q
qijun 已提交
63
  std::unique_ptr<Eigen::DefaultDevice> eigen_device_;
Q
QI JUN 已提交
64 65
};

66
#ifdef PADDLE_WITH_CUDA
67 68 69 70 71
template <>
struct EigenDeviceConverter<platform::GPUPlace> {
  using EigenDeviceType = Eigen::GpuDevice;
};

Q
qijun 已提交
72
class EigenCudaStreamDevice;
D
dongzhihong 已提交
73

74
class CUDADeviceContext : public DeviceContext {
Q
QI JUN 已提交
75
 public:
Q
qijun 已提交
76
  explicit CUDADeviceContext(GPUPlace place);
77
  virtual ~CUDADeviceContext();
Q
QI JUN 已提交
78

79
  /*! \brief  Wait for all operations completion in the stream. */
80
  void Wait() const override;
Q
QI JUN 已提交
81

82 83 84
  /*! \brief  Check potential errors for the cuda kernel calls. */
  void Finish() const override;

85
  /*! \brief  Return place in the device context. */
L
liaogang 已提交
86
  Place GetPlace() const override;
87 88 89 90 91

  /*! \brief  Return eigen device in the device context. */
  Eigen::GpuDevice* eigen_device() const;

  /*! \brief  Return cublas handle in the device context. */
92
  cublasHandle_t cublas_handle() const;
93 94

  /*! \brief  Return cudnn  handle in the device context. */
95
  cudnnHandle_t cudnn_handle() const;
96

Q
init  
qijun 已提交
97
  /*! \brief  Return cuda stream in the device context. */
98
  cudaStream_t stream() const;
Q
QI JUN 已提交
99 100

 private:
101
  GPUPlace place_;
Q
QI JUN 已提交
102

Q
qijun 已提交
103
  std::unique_ptr<Eigen::GpuDevice> eigen_device_;
Q
init  
qijun 已提交
104
  std::unique_ptr<EigenCudaStreamDevice> eigen_stream_;
Q
QI JUN 已提交
105

106 107 108
  cudaStream_t stream_;
  cudnnHandle_t cudnn_handle_;
  cublasHandle_t cublas_handle_;
Q
QI JUN 已提交
109
};
Q
qijun 已提交
110

Q
QI JUN 已提交
111
#endif
Q
qijun 已提交
112

Q
QI JUN 已提交
113 114
}  // namespace platform
}  // namespace paddle