Browse Source

[MSLITE][DEVELOP] fix bug of npu benchmark

tags/v1.1.0
yangruoqi713 5 years ago
parent
commit
9c5c5de35b
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      mindspore/lite/src/runtime/agent/npu/npu_executor.cc

+ 8
- 0
mindspore/lite/src/runtime/agent/npu/npu_executor.cc View File

@@ -42,6 +42,14 @@ int NPUExecutor::Run(const std::vector<Tensor *> &in_tensors, const std::vector<
return RET_ERROR;
}
memcpy(npu_input_tensors_[i]->GetBuffer(), data, in_tensors[i]->Size());
in_tensors[i]->set_ref_count(in_tensors[i]->ref_count() - 1);
if (in_tensors[i]->ref_count() <= 0) {
auto ret = in_tensors[i]->FreeData();
if (ret != RET_OK) {
MS_LOG(ERROR) << "Free tensor data failed";
return RET_ERROR;
}
}
}
context.AddPara("model_name", model_name_);
if (this->client_ == nullptr) {


Loading…
Cancel
Save