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.
graphengine/ge/ge_runtime/task/event_wait_task.cc

68 lines
2.3 KiB

5 years ago
/**
* Copyright 2019-2020 Huawei Technologies Co., Ltd
5 years ago
*
* 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 "ge_runtime/task/event_wait_task.h"
#include "ge_runtime/task/task_factory.h"
namespace ge {
namespace model_runner {
EventWaitTask::EventWaitTask(const ModelContext &model_context, const std::shared_ptr<EventWaitTaskInfo> &task_info)
: TaskRepeater<EventWaitTaskInfo>(model_context, task_info),
task_info_(task_info),
stream_(nullptr),
event_(nullptr) {
if (task_info_ == nullptr) {
GELOGW("task_info_ is null!");
return;
5 years ago
}
auto stream_list = model_context.stream_list();
auto event_list = model_context.event_list();
uint32_t stream_id = task_info->stream_id();
uint32_t event_id = task_info->event_id();
if (stream_id >= stream_list.size() || event_id >= event_list.size()) {
GELOGW("stream_list size:%zu, stream_id:%u, event_list size:%zu, event_id:%u", stream_list.size(), stream_id,
event_list.size(), event_id);
return;
5 years ago
}
stream_ = stream_list[stream_id];
event_ = event_list[event_id];
}
EventWaitTask::~EventWaitTask() {}
bool EventWaitTask::Distribute() {
GELOGI("EventWaitTask Distribute start, stream: %p, event: %p, stream_id: %u, event_id: %u.", stream_, event_,
task_info_->stream_id(), task_info_->event_id());
5 years ago
rtError_t rt_ret = rtStreamWaitEvent(stream_, event_);
if (rt_ret != RT_ERROR_NONE) {
GELOGE(RT_FAILED, "Call rt api rtStreamWaitEvent failed, ret: 0x%X", rt_ret);
return false;
}
rt_ret = rtEventReset(event_, stream_);
if (rt_ret != RT_ERROR_NONE) {
GELOGE(RT_FAILED, "Call rt api rtEventReset failed, ret: 0x%X", rt_ret);
return false;
}
GELOGI("Distribute end.");
return true;
}
REGISTER_TASK(TaskInfoType::EVENT_WAIT, EventWaitTask, EventWaitTaskInfo);
5 years ago
} // namespace model_runner
} // namespace ge