From a2b8adad43ada9a70ab8666d133ad79821aa604d Mon Sep 17 00:00:00 2001 From: wqtshg Date: Wed, 3 Feb 2021 20:24:01 +0800 Subject: [PATCH 1/3] modify lhisi compile bug --- ge/hybrid/executor/hybrid_model_pipeline_executor.cc | 2 +- metadef | 2 +- parser | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ge/hybrid/executor/hybrid_model_pipeline_executor.cc b/ge/hybrid/executor/hybrid_model_pipeline_executor.cc index 9de846bc..37bf3097 100644 --- a/ge/hybrid/executor/hybrid_model_pipeline_executor.cc +++ b/ge/hybrid/executor/hybrid_model_pipeline_executor.cc @@ -270,7 +270,7 @@ Status HybridModelPipelineExecutor::Execute(HybridModelExecutor::ExecuteArgs &ar auto last_iter_executor_idx = loop_count % stage_executors_.size(); GE_CHK_STATUS_RET(stage_executors_[last_iter_executor_idx]->GetOutputs(args.outputs, args.output_desc), - "Failed to get output from executor[%d]", last_iter_executor_idx); + "Failed to get output from executor[%lu]", last_iter_executor_idx); return SUCCESS; } diff --git a/metadef b/metadef index 25967258..bb864122 160000 --- a/metadef +++ b/metadef @@ -1 +1 @@ -Subproject commit 2596725889c19c60a03440ab9e4e313070326ec0 +Subproject commit bb86412204fc72fa8fe4063e6044090dfd714321 diff --git a/parser b/parser index 6516132e..d85b5fc6 160000 --- a/parser +++ b/parser @@ -1 +1 @@ -Subproject commit 6516132e2eaeea2bf51cc790d52c83709588f5d8 +Subproject commit d85b5fc685b9e1f8dbee778c9c7b3ab6f379af79 From b22d5eae5efeaf79e2843c3e66ffb184493423fc Mon Sep 17 00:00:00 2001 From: wqtshg Date: Wed, 3 Feb 2021 20:30:45 +0800 Subject: [PATCH 2/3] modify lhisi compile bug --- metadef | 2 +- parser | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metadef b/metadef index bb864122..85ed8691 160000 --- a/metadef +++ b/metadef @@ -1 +1 @@ -Subproject commit bb86412204fc72fa8fe4063e6044090dfd714321 +Subproject commit 85ed8691aab1f0c7d3b45785129e9063c84993ed diff --git a/parser b/parser index d85b5fc6..b45f4e83 160000 --- a/parser +++ b/parser @@ -1 +1 @@ -Subproject commit d85b5fc685b9e1f8dbee778c9c7b3ab6f379af79 +Subproject commit b45f4e83d6a10bc22e15123a13fc8544c29f8c5d From ad3eb391532cd0ccda420dd8cb7b21580845f312 Mon Sep 17 00:00:00 2001 From: wqtshg Date: Wed, 3 Feb 2021 20:43:31 +0800 Subject: [PATCH 3/3] modify lhisi compile bug --- ge/hybrid/executor/hybrid_model_pipeline_executor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ge/hybrid/executor/hybrid_model_pipeline_executor.cc b/ge/hybrid/executor/hybrid_model_pipeline_executor.cc index 37bf3097..b043ca7f 100644 --- a/ge/hybrid/executor/hybrid_model_pipeline_executor.cc +++ b/ge/hybrid/executor/hybrid_model_pipeline_executor.cc @@ -270,7 +270,7 @@ Status HybridModelPipelineExecutor::Execute(HybridModelExecutor::ExecuteArgs &ar auto last_iter_executor_idx = loop_count % stage_executors_.size(); GE_CHK_STATUS_RET(stage_executors_[last_iter_executor_idx]->GetOutputs(args.outputs, args.output_desc), - "Failed to get output from executor[%lu]", last_iter_executor_idx); + "Failed to get output from executor[%zu]", last_iter_executor_idx); return SUCCESS; }