cuda_stream.h 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.

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

#include <cstdint>
W
Wilber 已提交
18
#include <functional>
19
#include <memory>
W
wanghuancoder 已提交
20

21
#include "paddle/fluid/platform/device/gpu/gpu_info.h"
W
Wilber 已提交
22
#include "paddle/fluid/platform/device/gpu/gpu_types.h"
23 24 25 26 27 28 29 30
#include "paddle/fluid/platform/macros.h"
#include "paddle/fluid/platform/place.h"
#include "paddle/fluid/platform/stream_callback_manager.h"

namespace paddle {
namespace platform {
namespace stream {

31
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
32 33 34 35 36 37

enum class Priority : uint8_t {
  kNull = 0x0,
  kHigh = 0x1,
  kNormal = 0x2,
};
38 39 40 41 42 43

enum class StreamFlag : uint8_t {
  kDefaultFlag = 0x0,
  kStreamNonBlocking = 0x1,
};

44
#endif
45
class CUDAStream final {
46
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
47

48 49
 public:
  CUDAStream() = default;
50
  explicit CUDAStream(const Place& place,
51 52 53
                      const Priority& priority = Priority::kNormal,
                      const StreamFlag& flag = StreamFlag::kDefaultFlag) {
    Init(place, priority, flag);
54
  }
W
Wilber 已提交
55 56 57 58 59
  explicit CUDAStream(gpuStream_t stream, const Place& place)
      : place_(place), stream_(stream) {
    owned_stream_ = false;
    callback_manager_.reset(new StreamCallbackManager<gpuStream_t>(stream_));
  }
60 61
  virtual ~CUDAStream() { Destroy(); }

62 63
  bool Init(const Place& place,
            const Priority& priority = Priority::kNormal,
64
            const StreamFlag& flag = StreamFlag::kDefaultFlag);
65

W
Wilber 已提交
66
  void AddCallback(std::function<void()> callback) const {
67 68 69
    callback_manager_->AddCallback(callback);
  }

70
#ifdef PADDLE_WITH_HIP
W
Wilber 已提交
71
  void RecordEvent(hipEvent_t ev, const std::function<void()>& callback) const {
72
    callback();
73
    PADDLE_ENFORCE_GPU_SUCCESS(hipEventRecord(ev, stream_));
74 75
  }
#else
W
Wilber 已提交
76 77
  void RecordEvent(cudaEvent_t ev,
                   const std::function<void()>& callback) const {
78
    callback();
79
    PADDLE_ENFORCE_GPU_SUCCESS(cudaEventRecord(ev, stream_));
80
  }
81
#endif
82

83 84
#ifdef PADDLE_WITH_HIP
  void RecordEvent(hipEvent_t ev) const {
85
    PADDLE_ENFORCE_GPU_SUCCESS(hipEventRecord(ev, stream_));
86 87
  }
#else
88
  void RecordEvent(cudaEvent_t ev) const {
89
    PADDLE_ENFORCE_GPU_SUCCESS(cudaEventRecord(ev, stream_));
90
  }
91
#endif
92

93 94
#ifdef PADDLE_WITH_HIP
  void WaitEvent(hipEvent_t ev) const {
95
    PADDLE_ENFORCE_GPU_SUCCESS(hipStreamWaitEvent(stream_, ev, 0));
96 97
  }
#else
98
  void WaitEvent(cudaEvent_t ev) const {
99
    PADDLE_ENFORCE_GPU_SUCCESS(cudaStreamWaitEvent(stream_, ev, 0));
100
  }
101
#endif
102 103 104 105

  void Wait() const;
  void WaitCallback() const { callback_manager_->Wait(); }

106 107 108
#ifdef PADDLE_WITH_HIP
  const hipStream_t& raw_stream() const { return stream_; }
#else
109
  const cudaStream_t& raw_stream() const { return stream_; }
110
#endif
111 112
  void Destroy();

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
  bool Query() const {
#ifdef PADDLE_WITH_HIP
    hipError_t err = hipStreamQuery(stream_);
    if (err == hipSuccess) {
      return true;
    }
    if (err == hipErrorNotReady) {
      return false;
    }
#else
    cudaError_t err = cudaStreamQuery(stream_);
    if (err == cudaSuccess) {
      return true;
    }
    if (err == cudaErrorNotReady) {
      return false;
    }
#endif

132
    PADDLE_ENFORCE_GPU_SUCCESS(err);
133 134 135
    return false;
  }

136
  void Synchronize() const { platform::GpuStreamSync(stream_); }
137

138 139
  const Place& GetPlace() const { return place_; }

W
Wilber 已提交
140 141 142
  // Note: Can only be used under thread_local semantics.
  void SetStream(gpuStream_t stream);

143 144
 private:
  Place place_;
W
Wilber 已提交
145
  bool owned_stream_{true};
146 147 148
#ifdef PADDLE_WITH_HIP
  hipStream_t stream_{nullptr};
#else
149
  cudaStream_t stream_{nullptr};
150
#endif
151
  Priority priority_{Priority::kNormal};
152
  std::unique_ptr<StreamCallbackManager<gpuStream_t>> callback_manager_;
153
#endif
154 155 156
  DISABLE_COPY_AND_ASSIGN(CUDAStream);
};

157
CUDAStream* get_current_stream(int deviceId);
W
Wilber 已提交
158
// NOTE: There is a problem with the interface and needs to be fixed
159
CUDAStream* set_current_stream(CUDAStream* stream);
160 161 162 163

}  // namespace stream
}  // namespace platform
}  // namespace paddle