Browse Source

!32 fix return value of member function to const reference

Merge pull request !32 from caifubi/master
tags/v0.3.0-alpha
mindspore-ci-bot Gitee 4 years ago
parent
commit
97852a0d7f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      inc/framework/ge_runtime/task_info.h

+ 2
- 2
inc/framework/ge_runtime/task_info.h View File

@@ -253,7 +253,7 @@ 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<uint8_t> &private_def, void *ops_kernel_store, int32_t count, int64_t root_id,
int64_t op_type, int64_t data_type, std::string group,
int64_t op_type, int64_t data_type, const std::string &group,
std::function<bool(void *, void *)> hcom_bind_model, std::function<bool(void *)> hcom_unbind_model,
std::function<bool(std::shared_ptr<HcclTaskInfo>, void *)> hcom_distribute_task)
: TaskInfo(stream_id, TaskInfoType::HCCL),
@@ -287,7 +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_; }
const std::string &group() const { return group_; }
std::function<bool(void *, void *)> hcom_bind_model() const { return hcom_bind_model_; }
std::function<bool(void *)> hcom_unbind_model() const { return hcom_unbind_model_; }
std::function<bool(std::shared_ptr<HcclTaskInfo>, void *)> hcom_distribute_task() const {


Loading…
Cancel
Save