forked from mindspore-Ecosystem/mindspore
commit
c41d48d8e8
|
@ -125,7 +125,10 @@ void RuntimeModel::InitLabel(const std::shared_ptr<DavinciModel> &davinci_model)
|
|||
rtLabel_t rt_label = nullptr;
|
||||
rtError_t rt_ret = rtLabelCreateExV2(&rt_label, rt_model_handle_, stream_list_[label_set_task_info->stream_id()]);
|
||||
if (rt_ret != RT_ERROR_NONE) {
|
||||
MS_LOG(EXCEPTION) << "Call rt api rtLabelCreate failed, ret: " << rt_ret;
|
||||
MS_LOG(EXCEPTION) << "Call rt api rtLabelCreate failed, ret: " << rt_ret
|
||||
<< "\nIf you have set MS_COMM_COMPILER_OPT, notice that it will increase labels used and "
|
||||
<< "may exceed the maximum label number: 1024. For more details, please refer to"
|
||||
<< " 'MS_COMM_COMPILER_OPT' at https://www.mindspore.cn .";
|
||||
}
|
||||
label_list_[label_set_task_info->label_id()] = rt_label;
|
||||
}
|
||||
|
|
|
@ -44,6 +44,7 @@ using AscendAutoMonad = mindspore::session::AscendAutoMonad;
|
|||
|
||||
namespace {
|
||||
const std::unordered_set<std::string> kDefaultFormatAclOps = {kAddNOpName};
|
||||
const size_t DEFAULT_MAX_COMM_OP_REUSE_NUM = 1000;
|
||||
|
||||
void RemoveUnusedValueNode(const KernelGraphPtr &graph) {
|
||||
auto m = graph->manager();
|
||||
|
@ -249,9 +250,21 @@ void AscendGraphOptimization::CommOpReuse(const KernelGraphPtr &graph) const {
|
|||
if (!graph->is_graph_run_mode() || max_comm_op_reuse_num_env.empty()) {
|
||||
return;
|
||||
}
|
||||
MS_LOG(INFO) << "Status record: start comm op reuse. graph id: " << graph->graph_id();
|
||||
const size_t max_comm_op_reuse_num = LongToSize(std::stol(max_comm_op_reuse_num_env));
|
||||
int64_t max_comm_op_reuse_num_l = -1;
|
||||
TRY_AND_CATCH_WITH_EXCEPTION((max_comm_op_reuse_num_l = std::stol(max_comm_op_reuse_num_env)),
|
||||
"Invalid MS_COMM_COMPILER_OPT value! It should be -1 or a positive integer.");
|
||||
size_t max_comm_op_reuse_num;
|
||||
if (max_comm_op_reuse_num_l == -1) {
|
||||
max_comm_op_reuse_num = DEFAULT_MAX_COMM_OP_REUSE_NUM;
|
||||
} else if (max_comm_op_reuse_num_l > 0) {
|
||||
max_comm_op_reuse_num = LongToSize(max_comm_op_reuse_num_l);
|
||||
} else {
|
||||
MS_LOG(WARNING) << "MS_COMM_COMPILER_OPT should be -1 or a positive integer but set to " << max_comm_op_reuse_num_l
|
||||
<< ". Comm subgraph reuse is disabled.";
|
||||
return;
|
||||
}
|
||||
MS_LOG(INFO) << "MAX_COMM_OP_REUSE_NUM: " << max_comm_op_reuse_num;
|
||||
MS_LOG(INFO) << "Status record: start comm op reuse. graph id: " << graph->graph_id();
|
||||
opt::AscendCommOpReuse comm_io_reuse(graph, max_comm_op_reuse_num);
|
||||
comm_io_reuse.Run();
|
||||
MS_LOG(INFO) << "Status record: end comm op reuse. graph id: " << graph->graph_id();
|
||||
|
|
Loading…
Reference in New Issue