make npu non 4d op error instead of output 0

pull/13189/head
zhaozhenlong 4 years ago
parent b6f8959c64
commit ff0551fef7

@ -143,13 +143,13 @@ int NPUExecutor::Run(const std::vector<Tensor *> &in_tensors, const std::vector<
outputs_visited[index] = true; outputs_visited[index] = true;
break; break;
} }
}
if (index == out_tensors.size()) { if (index == out_tensors.size()) {
MS_LOG(ERROR) << "Can't find corresponding ms lite tensor of " << i << " output tensor for npu executor " MS_LOG(ERROR) << "Can't find corresponding ms lite tensor of " << i << " output tensor for npu executor "
<< model_name_; << model_name_;
return RET_ERROR; return RET_ERROR;
} }
} }
}
return RET_OK; return RET_OK;
} }

Loading…
Cancel
Save