From 73c7ef12d150a0774afb7d17bc5c80ec99676afd Mon Sep 17 00:00:00 2001 From: caifubi Date: Mon, 18 May 2020 09:14:39 +0800 Subject: [PATCH] Add group attribute to HcomTaskInfo --- inc/framework/ge_runtime/task_info.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/inc/framework/ge_runtime/task_info.h b/inc/framework/ge_runtime/task_info.h index a48ed68b..6bee4ae5 100644 --- a/inc/framework/ge_runtime/task_info.h +++ b/inc/framework/ge_runtime/task_info.h @@ -253,8 +253,8 @@ class HcclTaskInfo : public TaskInfo { HcclTaskInfo(uint32_t stream_id, const std::string hccl_type, void *input_data_addr, void *output_data_addr, void *workspace_addr, int64_t workspace_size, int64_t hccl_stream_num, const std::vector &private_def, void *ops_kernel_store, int32_t count, int64_t root_id, - int64_t op_type, int64_t data_type, std::function hcom_bind_model, - std::function hcom_unbind_model, + int64_t op_type, int64_t data_type, std::string group, + std::function hcom_bind_model, std::function hcom_unbind_model, std::function, void *)> hcom_distribute_task) : TaskInfo(stream_id, TaskInfoType::HCCL), hccl_type_(hccl_type), @@ -269,6 +269,7 @@ class HcclTaskInfo : public TaskInfo { root_id_(root_id), op_type_(op_type), data_type_(data_type), + group_(group), hcom_bind_model_(hcom_bind_model), hcom_unbind_model_(hcom_unbind_model), hcom_distribute_task_(hcom_distribute_task) {} @@ -286,6 +287,7 @@ class HcclTaskInfo : public TaskInfo { int64_t root_id() const { return root_id_; } int64_t op_type() const { return op_type_; } int64_t data_type() const { return data_type_; } + std::string group() const { return group_; } std::function hcom_bind_model() const { return hcom_bind_model_; } std::function hcom_unbind_model() const { return hcom_unbind_model_; } std::function, void *)> hcom_distribute_task() const { @@ -305,6 +307,7 @@ class HcclTaskInfo : public TaskInfo { int64_t root_id_; int64_t op_type_; int64_t data_type_; + std::string group_; std::function hcom_bind_model_; std::function hcom_unbind_model_; std::function, void *)> hcom_distribute_task_;