This commit is contained in:
SeongUk Han (luke.s) 2023-12-28 22:11:11 +00:00 committed by GitHub
commit f3628149e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,7 +204,7 @@ absl::StatusOr<std::vector<Tensor>> InferenceInterpreterDelegateRunner::Run(
TfLiteTypeGetName(tensor->type)));
}
}
return output_tensors;
return std::move(output_tensors);
}
absl::StatusOr<std::unique_ptr<InferenceRunner>>