|
- /**
- * Copyright 2021 Huawei Technologies Co., Ltd
- *
- * 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 "runtime/device/gpu/gpu_event.h"
- #include "runtime/device/gpu/gpu_common.h"
-
- namespace mindspore::device::gpu {
- GpuEvent::GpuEvent() {
- auto ret = cudaEventCreate(&event_);
- if (ret != cudaSuccess) {
- MS_LOG(ERROR) << "cudaEventCreate failed, ret:" << ret;
- event_ = nullptr;
- }
- }
-
- GpuEvent::~GpuEvent() { CHECK_CUDA_RET_WITH_ERROR_NOTRACE(cudaEventDestroy(event_), "cudaEventDestory failed"); }
-
- void GpuEvent::WaitEvent() {
- MS_EXCEPTION_IF_NULL(wait_stream_);
- MS_EXCEPTION_IF_NULL(event_);
- CHECK_CUDA_RET_WITH_EXCEPT_NOTRACE(cudaStreamWaitEvent(wait_stream_, event_, 0), "cudaStreamWaitEvent failed");
- need_wait_ = false;
- }
-
- void GpuEvent::RecordEvent() {
- MS_EXCEPTION_IF_NULL(event_);
- MS_EXCEPTION_IF_NULL(record_stream_);
- CHECK_CUDA_RET_WITH_EXCEPT_NOTRACE(cudaEventRecord(event_, record_stream_), "cudaEventRecord failed");
- need_wait_ = true;
- }
-
- bool GpuEvent::NeedWait() { return need_wait_; }
- } // namespace mindspore::device::gpu
|