|
- /**
- * 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/hccl/hcom_all_broadcast.h"
-
- #include <algorithm>
- #include <string>
- #include <memory>
-
- #include "utils/context/ms_context.h"
-
- namespace mindspore {
- namespace kernel {
- bool HcomAllBroadCastKernel::Launch(const std::vector<AddressPtr> &inputs, const std::vector<AddressPtr> &workspace,
- const std::vector<AddressPtr> &outputs, uintptr_t stream_ptr) {
- auto context_ptr = MsContext::GetInstance();
- MS_EXCEPTION_IF_NULL(context_ptr);
- if (context_ptr->enable_task_sink()) {
- return true;
- }
- const char *tag = "Hccl-BroadCast";
- auto stream = reinterpret_cast<rtStream_t>(stream_ptr);
- hcclResult_t ret =
- hcom_broadcast(tag, inputs[0]->addr, hccl_count_, hccl_data_type_list_[0], root_id_, nullptr, stream);
- if (ret != HCCL_SUCCESS) {
- MS_LOG(ERROR) << "HcomBroadcastOp : hcom_broadcast fail, return: " << static_cast<int>(ret);
- return false;
- }
- return true;
- }
- } // namespace kernel
- } // namespace mindspore
|