cuda_stream.h 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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>
#include <memory>
W
wanghuancoder 已提交
19

20 21 22 23 24 25 26 27 28
#include "paddle/fluid/platform/gpu_info.h"
#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 {

29
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
30 31 32 33 34 35

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

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

42
#endif
43
class CUDAStream final {
44
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
45

46 47
 public:
  CUDAStream() = default;
48
  explicit CUDAStream(const Place& place,
49 50 51
                      const Priority& priority = Priority::kNormal,
                      const StreamFlag& flag = StreamFlag::kDefaultFlag) {
    Init(place, priority, flag);
52 53 54
  }
  virtual ~CUDAStream() { Destroy(); }

55 56
  bool Init(const Place& place, const Priority& priority = Priority::kNormal,
            const StreamFlag& flag = StreamFlag::kDefaultFlag);
57 58 59 60 61 62 63

  template <typename Callback>
  void AddCallback(Callback&& callback) const {
    callback_manager_->AddCallback(callback);
  }

  template <typename Callback>
64 65 66 67 68 69
#ifdef PADDLE_WITH_HIP
  void RecordEvent(hipEvent_t ev, Callback callback) const {
    callback();
    PADDLE_ENFORCE_CUDA_SUCCESS(hipEventRecord(ev, stream_));
  }
#else
70 71
  void RecordEvent(cudaEvent_t ev, Callback callback) const {
    callback();
72
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaEventRecord(ev, stream_));
73
  }
74
#endif
75

76 77 78 79 80
#ifdef PADDLE_WITH_HIP
  void RecordEvent(hipEvent_t ev) const {
    PADDLE_ENFORCE_CUDA_SUCCESS(hipEventRecord(ev, stream_));
  }
#else
81
  void RecordEvent(cudaEvent_t ev) const {
82
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaEventRecord(ev, stream_));
83
  }
84
#endif
85

86 87 88 89 90
#ifdef PADDLE_WITH_HIP
  void WaitEvent(hipEvent_t ev) const {
    PADDLE_ENFORCE_CUDA_SUCCESS(hipStreamWaitEvent(stream_, ev, 0));
  }
#else
91
  void WaitEvent(cudaEvent_t ev) const {
92
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaStreamWaitEvent(stream_, ev, 0));
93
  }
94
#endif
95 96 97 98

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

99 100 101
#ifdef PADDLE_WITH_HIP
  const hipStream_t& raw_stream() const { return stream_; }
#else
102
  const cudaStream_t& raw_stream() const { return stream_; }
103
#endif
104 105
  void Destroy();

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
  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

    PADDLE_ENFORCE_CUDA_SUCCESS(err);
    return false;
  }

  void Synchronize() const {
#ifdef PADDLE_WITH_HIP
    PADDLE_ENFORCE_CUDA_SUCCESS(hipStreamSynchronize(stream_));
#else
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaStreamSynchronize(stream_));
#endif
  }

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

139 140
 private:
  Place place_;
141 142 143
#ifdef PADDLE_WITH_HIP
  hipStream_t stream_{nullptr};
#else
144
  cudaStream_t stream_{nullptr};
145
#endif
146
  Priority priority_{Priority::kNormal};
147
  std::unique_ptr<StreamCallbackManager<gpuStream_t>> callback_manager_;
148
#endif
149 150 151
  DISABLE_COPY_AND_ASSIGN(CUDAStream);
};

152
CUDAStream* get_current_stream(int deviceId);
153
CUDAStream* set_current_stream(CUDAStream* stream);
154 155 156 157

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