parent
b273a46c53
commit
04d8cd5d8b
@ -1 +1 @@
|
|||||||
Subproject commit 191dc747993dec992eceb1ebfcd8afc3dcd35acc
|
Subproject commit 38a40dd232346e9a47850e237259ea6f43eeb35b
|
@ -0,0 +1,66 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 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 "backend/kernel_compiler/hccl/hccl_context.h"
|
||||||
|
#include "utils/log_adapter.h"
|
||||||
|
#include "hccl/hccl.h"
|
||||||
|
|
||||||
|
constexpr auto kHcclConfigFile = "MINDSPORE_HCCL_CONFIG_PATH";
|
||||||
|
|
||||||
|
namespace mindspore {
|
||||||
|
namespace kernel {
|
||||||
|
std::string GetRankId() {
|
||||||
|
std::string rank_id_str;
|
||||||
|
rank_id_str = std::getenv("RANK_ID");
|
||||||
|
if (rank_id_str.empty()) {
|
||||||
|
MS_LOG(ERROR) << "Get hccl rankid failed, please set env RANK_ID";
|
||||||
|
}
|
||||||
|
return rank_id_str;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool HcclContext::InitHccl() {
|
||||||
|
if (hccl_comm_ != nullptr) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
auto config_file = std::getenv(kHcclConfigFile);
|
||||||
|
if (config_file == nullptr) {
|
||||||
|
MS_LOG(ERROR) << "Get hccl config file failed";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
rank_id_ = std::stoi(GetRankId());
|
||||||
|
|
||||||
|
auto hccl_result = HcclCommInitClusterInfo(config_file, rank_id_, &hccl_comm_);
|
||||||
|
if (hccl_result != HCCL_SUCCESS) {
|
||||||
|
MS_LOG(ERROR) << "HcclCommInitClusterInfo failed, ret:" << hccl_result;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
MS_LOG(INFO) << "HcclCommInitClusterInfo success";
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool HcclContext::Finalize() {
|
||||||
|
if (hccl_comm_ == nullptr) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
auto hccl_result = HcclCommDestroy(hccl_comm_);
|
||||||
|
if (hccl_result != HCCL_SUCCESS) {
|
||||||
|
MS_LOG(ERROR) << "HcclComm destroy failed, ret:" << hccl_result;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
} // namespace kernel
|
||||||
|
} // namespace mindspore
|
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MINDSPORE_MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_HCCL_HCCL_CONTEXT_H_
|
||||||
|
#define MINDSPORE_MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_HCCL_HCCL_CONTEXT_H_
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include "hccl/hccl_types.h"
|
||||||
|
#include "utils/ms_utils.h"
|
||||||
|
|
||||||
|
namespace mindspore {
|
||||||
|
namespace kernel {
|
||||||
|
class HcclContext {
|
||||||
|
public:
|
||||||
|
static HcclContext &GetInstance() {
|
||||||
|
static HcclContext instance;
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InitHccl();
|
||||||
|
bool Finalize();
|
||||||
|
HcclComm hccl_comm() { return hccl_comm_; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
HcclContext() = default;
|
||||||
|
~HcclContext() = default;
|
||||||
|
DISABLE_COPY_AND_ASSIGN(HcclContext);
|
||||||
|
HcclComm hccl_comm_{nullptr};
|
||||||
|
int rank_id_{0};
|
||||||
|
uint32_t device_id_{0};
|
||||||
|
};
|
||||||
|
} // namespace kernel
|
||||||
|
} // namespace mindspore
|
||||||
|
#endif // MINDSPORE_MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_HCCL_HCCL_CONTEXT_H_
|
Loading…
Reference in new issue