You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.2 KiB
71 lines
2.2 KiB
/* 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"
|
|
#include "paddle/fluid/platform/enforce.h"
|
|
|
|
namespace paddle {
|
|
namespace platform {
|
|
namespace stream {
|
|
|
|
constexpr unsigned int kDefaultFlag = cudaStreamDefault;
|
|
|
|
bool CUDAStream::Init(const Place& place, const Priority& priority) {
|
|
PADDLE_ENFORCE_EQ(is_gpu_place(place), true,
|
|
platform::errors::InvalidArgument(
|
|
"Cuda stream must be created using cuda place."));
|
|
place_ = place;
|
|
CUDADeviceGuard guard(BOOST_GET_CONST(CUDAPlace, place_).device);
|
|
if (priority == Priority::kHigh) {
|
|
PADDLE_ENFORCE_CUDA_SUCCESS(
|
|
cudaStreamCreateWithPriority(&stream_, kDefaultFlag, -1));
|
|
} else if (priority == Priority::kNormal) {
|
|
PADDLE_ENFORCE_CUDA_SUCCESS(
|
|
cudaStreamCreateWithPriority(&stream_, kDefaultFlag, 0));
|
|
}
|
|
callback_manager_.reset(new StreamCallbackManager(stream_));
|
|
VLOG(3) << "CUDAStream Init stream: " << stream_
|
|
<< ", priority: " << static_cast<int>(priority);
|
|
return true;
|
|
}
|
|
|
|
void CUDAStream::Destroy() {
|
|
CUDADeviceGuard guard(BOOST_GET_CONST(CUDAPlace, place_).device);
|
|
Wait();
|
|
WaitCallback();
|
|
if (stream_) {
|
|
PADDLE_ENFORCE_CUDA_SUCCESS(cudaStreamDestroy(stream_));
|
|
}
|
|
stream_ = nullptr;
|
|
}
|
|
|
|
void CUDAStream::Wait() const {
|
|
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
|
|
|
|
PADDLE_ENFORCE_CUDA_SUCCESS(e_sync);
|
|
}
|
|
|
|
} // namespace stream
|
|
} // namespace platform
|
|
} // namespace paddle
|