forked from huawei/mindspore2022
63 lines
2.3 KiB
C++
63 lines
2.3 KiB
C++
/**
|
|
* Copyright 2019 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 "kernel/mng/send.h"
|
|
#include <memory>
|
|
#include "runtime/event.h"
|
|
#include "framework/ge_runtime/task_info.h"
|
|
#include "session/anf_runtime_algorithm.h"
|
|
#include "common/utils.h"
|
|
|
|
using ge::model_runner::EventRecordTaskInfo;
|
|
using EventRecordTaskInfoPtr = std::shared_ptr<EventRecordTaskInfo>;
|
|
|
|
namespace mindspore {
|
|
namespace kernel {
|
|
SendKernel::SendKernel() { event_id_ = 0; }
|
|
|
|
SendKernel::~SendKernel() {}
|
|
|
|
bool SendKernel::Init(const AnfNodePtr &anf_node) {
|
|
MS_EXCEPTION_IF_NULL(anf_node);
|
|
auto primitive = AnfAlgo::GetCNodePrimitive(anf_node);
|
|
MS_EXCEPTION_IF_NULL(primitive);
|
|
event_id_ = GetValue<uint32_t>(primitive->GetAttr(kAttrEventId));
|
|
MS_LOG(INFO) << "send op event id:" << event_id_;
|
|
return true;
|
|
}
|
|
|
|
bool SendKernel::Launch(const std::vector<AddressPtr> &inputs, const std::vector<AddressPtr> &workspace,
|
|
const std::vector<AddressPtr> &outputs, uintptr_t stream_ptr) {
|
|
rtEvent_t event{};
|
|
auto stream = reinterpret_cast<rtStream_t>(stream_ptr);
|
|
rtError_t status = rtEventRecord(event, stream);
|
|
if (status != RT_ERROR_NONE) {
|
|
MS_LOG(ERROR) << "Send op rtEventRecord failed!";
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
std::vector<TaskInfoPtr> SendKernel::GenTask(const std::vector<AddressPtr> &, const std::vector<AddressPtr> &,
|
|
const std::vector<AddressPtr> &, uint32_t stream_id) {
|
|
MS_LOG(INFO) << "SendKernel GenTask event id:" << event_id_ << ", stream id:" << stream_id;
|
|
EventRecordTaskInfoPtr task_info_ptr = std::make_shared<EventRecordTaskInfo>(stream_id, event_id_);
|
|
MS_EXCEPTION_IF_NULL(task_info_ptr);
|
|
return {task_info_ptr};
|
|
}
|
|
} // namespace kernel
|
|
} // namespace mindspore
|