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.
56 lines
1.9 KiB
56 lines
1.9 KiB
/**
|
|
* Copyright 2019-2020 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 "ge_runtime/task/profiler_task.h"
|
|
#include "ge_runtime/task/task_factory.h"
|
|
|
|
namespace ge {
|
|
namespace model_runner {
|
|
ProfilerTask::ProfilerTask(const ModelContext &model_context, const std::shared_ptr<ProfilerTraceTaskInfo> &task_info)
|
|
: TaskRepeater<ProfilerTraceTaskInfo>(model_context, task_info), task_info_(task_info), stream_(nullptr) {
|
|
if (task_info_ == nullptr) {
|
|
GELOGW("task_info_ is null!");
|
|
return;
|
|
}
|
|
auto stream_list = model_context.stream_list();
|
|
uint32_t stream_id = task_info->stream_id();
|
|
GELOGI("Stream list size:%zu, stream id:%u.", stream_list.size(), stream_id);
|
|
if (stream_id >= stream_list.size()) {
|
|
GELOGW("Stream id invalid");
|
|
return;
|
|
}
|
|
stream_ = stream_list[stream_id];
|
|
}
|
|
|
|
ProfilerTask::~ProfilerTask() {}
|
|
|
|
bool ProfilerTask::Distribute() {
|
|
GELOGI("ProfilerTask Distribute start.");
|
|
GELOGI("logid = %lu, notify = %d, flat = %u.", task_info_->log_id(), task_info_->notify(), task_info_->flat());
|
|
rtError_t rt_ret = rtProfilerTrace(task_info_->log_id(), task_info_->notify(), task_info_->flat(), stream_);
|
|
if (rt_ret != RT_ERROR_NONE) {
|
|
GELOGE(RT_FAILED, "Call rt api failed, ret: 0x%X", rt_ret);
|
|
return false;
|
|
}
|
|
GELOGI("DistributeTask end");
|
|
return true;
|
|
}
|
|
|
|
REGISTER_TASK(TaskInfoType::PROFILER_TRACE, ProfilerTask, ProfilerTraceTaskInfo);
|
|
|
|
} // namespace model_runner
|
|
} // namespace ge
|