cuda_stream.cc 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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. */

#include "paddle/fluid/platform/stream/cuda_stream.h"
#include "paddle/fluid/platform/cuda_device_guard.h"
17
#include "paddle/fluid/platform/device_context.h"
18 19 20 21 22 23
#include "paddle/fluid/platform/enforce.h"

namespace paddle {
namespace platform {
namespace stream {

24 25 26
#ifdef PADDLE_WITH_HIP
constexpr unsigned int kDefaultFlag = hipStreamDefault;
#else
27
constexpr unsigned int kDefaultFlag = cudaStreamDefault;
28
#endif
29

30
bool CUDAStream::Init(const Place& place, const Priority& priority) {
31 32 33 34
  PADDLE_ENFORCE_EQ(is_gpu_place(place), true,
                    platform::errors::InvalidArgument(
                        "Cuda stream must be created using cuda place."));
  place_ = place;
35
  CUDADeviceGuard guard(BOOST_GET_CONST(CUDAPlace, place_).device);
36
  if (priority == Priority::kHigh) {
37 38 39 40
#ifdef PADDLE_WITH_HIP
    PADDLE_ENFORCE_CUDA_SUCCESS(
        hipStreamCreateWithPriority(&stream_, kDefaultFlag, -1));
#else
41
    PADDLE_ENFORCE_CUDA_SUCCESS(
42
        cudaStreamCreateWithPriority(&stream_, kDefaultFlag, -1));
43
#endif
44
  } else if (priority == Priority::kNormal) {
45 46 47 48
#ifdef PADDLE_WITH_HIP
    PADDLE_ENFORCE_CUDA_SUCCESS(
        hipStreamCreateWithPriority(&stream_, kDefaultFlag, 0));
#else
49
    PADDLE_ENFORCE_CUDA_SUCCESS(
50
        cudaStreamCreateWithPriority(&stream_, kDefaultFlag, 0));
51
#endif
52
  }
53 54
  callback_manager_.reset(new StreamCallbackManager<gpuStream_t>(stream_));
  VLOG(3) << "GPUStream Init stream: " << stream_
55 56 57 58 59
          << ", priority: " << static_cast<int>(priority);
  return true;
}

void CUDAStream::Destroy() {
60
  CUDADeviceGuard guard(BOOST_GET_CONST(CUDAPlace, place_).device);
61 62 63
  Wait();
  WaitCallback();
  if (stream_) {
64 65 66
#ifdef PADDLE_WITH_HIP
    PADDLE_ENFORCE_CUDA_SUCCESS(hipStreamDestroy(stream_));
#else
67
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaStreamDestroy(stream_));
68
#endif
69 70 71 72 73
  }
  stream_ = nullptr;
}

void CUDAStream::Wait() const {
74 75 76 77 78 79 80 81 82 83 84
#ifdef PADDLE_WITH_HIP
  hipError_t e_sync = hipSuccess;
#if !defined(_WIN32)
  e_sync = hipStreamSynchronize(stream_);
#else
  while (e_sync = hipStreamQuery(stream_)) {
    if (e_sync == hipErrorNotReady) continue;
    break;
  }
#endif
#else
85 86 87 88 89 90 91 92 93
  cudaError_t e_sync = cudaSuccess;
#if !defined(_WIN32)
  e_sync = cudaStreamSynchronize(stream_);
#else
  while (e_sync = cudaStreamQuery(stream_)) {
    if (e_sync == cudaErrorNotReady) continue;
    break;
  }
#endif
94
#endif  // PADDLE_WITH_HIP
95

96
  PADDLE_ENFORCE_CUDA_SUCCESS(e_sync);
97 98
}

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
CUDAStream* get_current_stream(int deviceId) {
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
  if (deviceId == -1) {
    deviceId = platform::GetCurrentDeviceId();
  }

  auto& pool = platform::DeviceContextPool::Instance();

  platform::Place device = CUDAPlace(deviceId);

  auto stream = static_cast<platform::CUDADeviceContext*>(pool.Get(device))
                    ->context()
                    ->Stream()
                    .get();
  return stream;
#else
  PADDLE_THROW(platform::errors::Unavailable(
      "Paddle is not compiled with CUDA. Cannot visit cuda current stream."));
  return nullptr;
#endif
}

121 122 123
}  // namespace stream
}  // namespace platform
}  // namespace paddle